wasmtime 10.0.0 → 11.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 +146 -140
- data/ext/Cargo.toml +6 -6
- data/ext/cargo-vendor/addr2line-0.21.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/addr2line-0.21.0/CHANGELOG.md +336 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.lock +704 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.toml +147 -0
- data/ext/cargo-vendor/addr2line-0.21.0/examples/addr2line.rs +317 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/Cargo.toml +70 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/ahocorasick.rs +2789 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/dfa.rs +816 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/lib.rs +327 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/contiguous.rs +1141 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/noncontiguous.rs +1710 -0
- data/ext/cargo-vendor/anyhow-1.0.75/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/anyhow-1.0.75/Cargo.toml +67 -0
- data/ext/cargo-vendor/anyhow-1.0.75/build.rs +131 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/backtrace.rs +401 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/context.rs +193 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/error.rs +996 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/kind.rs +119 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/lib.rs +689 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/wrapper.rs +81 -0
- data/ext/cargo-vendor/anyhow-1.0.75/tests/test_ensure.rs +722 -0
- data/ext/cargo-vendor/async-trait-0.1.73/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/async-trait-0.1.73/Cargo.toml +63 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/expand.rs +484 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/lib.rs +343 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/test.rs +1606 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/consider-restricting.stderr +35 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/send-not-implemented.stderr +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.lock +192 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.toml +145 -0
- data/ext/cargo-vendor/backtrace-0.3.69/build.rs +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print/fuchsia.rs +441 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print.rs +320 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/gimli/parse_running_mmaps_unix.rs +295 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/mod.rs +485 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/windows.rs +693 -0
- data/ext/cargo-vendor/cc-1.0.83/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.lock +111 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.toml +43 -0
- data/ext/cargo-vendor/cc-1.0.83/src/lib.rs +4024 -0
- data/ext/cargo-vendor/cc-1.0.83/tests/test.rs +477 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +160 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/build.rs +391 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/libcall.rs +232 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +1506 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +3714 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +2980 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +837 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +2899 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/mod.rs +250 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/call_conv.rs +119 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/mod.rs +436 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +946 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +3058 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/encode.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +2070 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/vector.rs +939 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +2927 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst_vector.isle +1650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +585 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +1984 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/mod.rs +228 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/abi.rs +948 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/inst.isle +5043 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower/isle.rs +1039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower.isle +3983 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/mod.rs +225 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +1220 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/encoding/rex.rs +588 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/args.rs +2193 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit.rs +4298 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_state.rs +72 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_tests.rs +5678 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/mod.rs +2759 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst.isle +5079 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower/isle.rs +1096 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +4650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.rs +340 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/mod.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isle_prelude.rs +894 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +2605 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +2255 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/mod.rs +551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/reg.rs +556 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +1580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/extends.isle +41 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/vector.isle +8 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude.isle +594 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude_lower.isle +1024 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/settings.rs +601 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/timing.rs +271 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/unionfind.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +23 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/cdsl/settings.rs +429 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +409 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/instructions.rs +3847 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/settings.rs +341 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +38 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +85 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +3544 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +852 -0
- data/ext/cargo-vendor/gimli-0.28.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/gimli-0.28.0/CHANGELOG.md +987 -0
- data/ext/cargo-vendor/gimli-0.28.0/Cargo.toml +109 -0
- data/ext/cargo-vendor/gimli-0.28.0/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/gimli-0.28.0/README.md +81 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/arch.rs +768 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/common.rs +391 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/constants.rs +1435 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/endianity.rs +256 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/leb128.rs +612 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/lib.rs +79 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/abbrev.rs +1089 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/addr.rs +128 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/aranges.rs +660 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/cfi.rs +7712 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/dwarf.rs +1184 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_reader.rs +639 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_slice.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/index.rs +535 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lazy.rs +116 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/line.rs +3130 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lists.rs +68 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/loclists.rs +1627 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lookup.rs +202 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/mod.rs +830 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/op.rs +4119 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubnames.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubtypes.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/reader.rs +502 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/rnglists.rs +1458 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/str.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/unit.rs +6139 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/util.rs +251 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/value.rs +1621 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/test_util.rs +53 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/abbrev.rs +188 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/cfi.rs +1050 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/dwarf.rs +138 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/endian_vec.rs +117 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/line.rs +1957 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/loc.rs +550 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/mod.rs +425 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/op.rs +1618 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/range.rs +416 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/section.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/str.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/unit.rs +3152 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/writer.rs +494 -0
- data/ext/cargo-vendor/log-0.4.20/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.20/CHANGELOG.md +273 -0
- data/ext/cargo-vendor/log-0.4.20/Cargo.toml +118 -0
- data/ext/cargo-vendor/log-0.4.20/README.md +121 -0
- data/ext/cargo-vendor/log-0.4.20/src/__private_api.rs +57 -0
- data/ext/cargo-vendor/log-0.4.20/src/lib.rs +1827 -0
- data/ext/cargo-vendor/log-0.4.20/src/macros.rs +240 -0
- data/ext/cargo-vendor/object-0.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.32.0/CHANGELOG.md +679 -0
- data/ext/cargo-vendor/object-0.32.0/Cargo.toml +163 -0
- data/ext/cargo-vendor/object-0.32.0/README.md +58 -0
- data/ext/cargo-vendor/object-0.32.0/clippy.toml +1 -0
- data/ext/cargo-vendor/object-0.32.0/src/common.rs +501 -0
- data/ext/cargo-vendor/object-0.32.0/src/elf.rs +6156 -0
- data/ext/cargo-vendor/object-0.32.0/src/pe.rs +3054 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/any.rs +1314 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/import.rs +209 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/mod.rs +21 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/file.rs +911 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/note.rs +266 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/relocation.rs +576 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/symbol.rs +585 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/elf/object.rs +903 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/macho.rs +63 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
- data/ext/cargo-vendor/quote-1.0.33/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/quote-1.0.33/Cargo.toml +50 -0
- data/ext/cargo-vendor/quote-1.0.33/src/lib.rs +1444 -0
- data/ext/cargo-vendor/quote-1.0.33/src/runtime.rs +530 -0
- data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +66 -0
- data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +327 -0
- data/ext/cargo-vendor/serde-1.0.185/src/private/ser.rs +1385 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +59 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/README.md +114 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/crates-io.md +65 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/de.rs +3136 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/attr.rs +1878 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/symbol.rs +71 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +102 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +1359 -0
- data/ext/cargo-vendor/serde_json-1.0.105/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.105/Cargo.toml +109 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/de.rs +2678 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/lib.rs +418 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/ser.rs +2247 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/de.rs +1419 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/ser.rs +1053 -0
- data/ext/cargo-vendor/serde_json-1.0.105/tests/test.rs +2499 -0
- data/ext/cargo-vendor/syn-2.0.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.29/Cargo.toml +150 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_keyword.rs +259 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_punctuation.rs +302 -0
- data/ext/cargo-vendor/syn-2.0.29/src/export.rs +69 -0
- data/ext/cargo-vendor/syn-2.0.29/src/group.rs +291 -0
- data/ext/cargo-vendor/syn-2.0.29/src/lib.rs +970 -0
- data/ext/cargo-vendor/syn-2.0.29/src/parse_quote.rs +179 -0
- data/ext/cargo-vendor/syn-2.0.29/src/span.rs +63 -0
- data/ext/cargo-vendor/syn-2.0.29/src/token.rs +1071 -0
- data/ext/cargo-vendor/syn-2.0.29/tests/common/eq.rs +864 -0
- data/ext/cargo-vendor/thiserror-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-1.0.47/Cargo.toml +48 -0
- data/ext/cargo-vendor/thiserror-1.0.47/build.rs +95 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/aserror.rs +50 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/display.rs +30 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/lib.rs +258 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/provide.rs +20 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_backtrace.rs +274 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_option.rs +105 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/Cargo.toml +36 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/src/expand.rs +545 -0
- data/ext/cargo-vendor/tokio-1.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.32.0/CHANGELOG.md +2987 -0
- data/ext/cargo-vendor/tokio-1.32.0/Cargo.toml +227 -0
- data/ext/cargo-vendor/tokio-1.32.0/README.md +249 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/async_fd.rs +1243 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/interest.rs +310 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/ready.rs +322 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/split.rs +201 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/util/async_read_ext.rs +1298 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/process/mod.rs +1674 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/builder.rs +1336 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/io/scheduled_io.rs +600 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/batch.rs +163 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/mock.rs +55 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/runtime.rs +924 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/worker.rs +84 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/current_thread/mod.rs +764 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/handle.rs +75 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/idle.rs +423 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1595 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/sync/broadcast.rs +1514 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_async_fd.rs +812 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_split.rs +116 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/rt_metrics.rs +731 -0
- data/ext/cargo-vendor/unicase-2.7.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicase-2.7.0/Cargo.toml +40 -0
- data/ext/cargo-vendor/unicase-2.7.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/unicase-2.7.0/README.md +32 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/ascii.rs +186 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/lib.rs +457 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/map.rs +1965 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/mod.rs +200 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +183 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +397 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +472 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +270 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +2298 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +701 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +727 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +313 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/storage.rs +43 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +514 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +2058 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/engine.rs +756 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +348 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +1354 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/tests/codegen.rs +26 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +593 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +2218 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +160 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/obj.rs +565 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +681 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +209 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +530 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +1069 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +843 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +1827 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +118 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +3173 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/obj.rs +172 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/code_memory.rs +313 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +110 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +727 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +626 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +153 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/lib.rs +131 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +44 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +233 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +80 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +83 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +104 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +156 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +110 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/poll/poll.wit +39 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +29 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +1648 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +491 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +183 -0
- data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +50 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +1246 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/custom.rs +390 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/func.rs +136 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/module.rs +217 -0
- data/ext/cargo-vendor/wast-63.0.0/src/encode.rs +89 -0
- data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +537 -0
- data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +27 -0
- data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/abi/mod.rs +251 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/call.rs +199 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +328 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +64 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +319 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/abi.rs +250 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/asm.rs +312 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/masm.rs +293 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/mod.rs +215 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/abi.rs +375 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/asm.rs +855 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/masm.rs +516 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/regs.rs +192 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/masm.rs +352 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/stack.rs +235 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/trampoline.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +630 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/Cargo.toml +41 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/readme.md +88 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/src/lib.rs +55 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2292 -2263
- data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
- data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
- data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
- data/ext/cargo-vendor/aho-corasick-1.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/aho-corasick-1.0.3/Cargo.toml +0 -70
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/ahocorasick.rs +0 -2788
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/dfa.rs +0 -804
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/lib.rs +0 -326
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/contiguous.rs +0 -1133
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/noncontiguous.rs +0 -1328
- data/ext/cargo-vendor/anyhow-1.0.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/anyhow-1.0.72/Cargo.toml +0 -67
- data/ext/cargo-vendor/anyhow-1.0.72/build.rs +0 -131
- data/ext/cargo-vendor/anyhow-1.0.72/src/backtrace.rs +0 -401
- data/ext/cargo-vendor/anyhow-1.0.72/src/context.rs +0 -193
- data/ext/cargo-vendor/anyhow-1.0.72/src/error.rs +0 -992
- data/ext/cargo-vendor/anyhow-1.0.72/src/kind.rs +0 -116
- data/ext/cargo-vendor/anyhow-1.0.72/src/lib.rs +0 -683
- data/ext/cargo-vendor/anyhow-1.0.72/src/wrapper.rs +0 -81
- data/ext/cargo-vendor/anyhow-1.0.72/tests/test_ensure.rs +0 -721
- data/ext/cargo-vendor/async-trait-0.1.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/async-trait-0.1.72/Cargo.toml +0 -63
- data/ext/cargo-vendor/async-trait-0.1.72/src/expand.rs +0 -484
- data/ext/cargo-vendor/async-trait-0.1.72/src/lib.rs +0 -343
- data/ext/cargo-vendor/async-trait-0.1.72/tests/test.rs +0 -1606
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/consider-restricting.stderr +0 -33
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/send-not-implemented.stderr +0 -47
- data/ext/cargo-vendor/backtrace-0.3.68/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.lock +0 -192
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.toml +0 -144
- data/ext/cargo-vendor/backtrace-0.3.68/build.rs +0 -41
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-ndk.sh +0 -14
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-sdk.sh +0 -65
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink-docker.sh +0 -29
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink.sh +0 -75
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +0 -11
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i586-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +0 -16
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/s390x-unknown-linux-gnu/Dockerfile +0 -17
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-pc-windows-gnu/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-musl/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run-docker.sh +0 -33
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run.sh +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/runtest-android.rs +0 -50
- data/ext/cargo-vendor/backtrace-0.3.68/src/print/fuchsia.rs +0 -436
- data/ext/cargo-vendor/backtrace-0.3.68/src/print.rs +0 -319
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/gimli/parse_running_mmaps_unix.rs +0 -232
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/mod.rs +0 -485
- data/ext/cargo-vendor/backtrace-0.3.68/src/windows.rs +0 -693
- data/ext/cargo-vendor/cc-1.0.82/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.0.82/Cargo.lock +0 -111
- data/ext/cargo-vendor/cc-1.0.82/Cargo.toml +0 -42
- data/ext/cargo-vendor/cc-1.0.82/src/lib.rs +0 -3983
- data/ext/cargo-vendor/cc-1.0.82/tests/test.rs +0 -461
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +0 -158
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/build.rs +0 -390
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/libcall.rs +0 -221
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +0 -1294
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +0 -3684
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +0 -7895
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +0 -2966
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +0 -816
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +0 -2906
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/call_conv.rs +0 -136
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +0 -424
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +0 -825
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +0 -3008
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +0 -262
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +0 -1963
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +0 -669
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +0 -2915
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +0 -760
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +0 -553
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +0 -1409
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +0 -216
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +0 -957
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +0 -5046
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower/isle.rs +0 -1018
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +0 -3991
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +0 -213
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +0 -985
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +0 -588
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +0 -2193
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +0 -4090
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +0 -5674
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +0 -2667
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +0 -5104
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +0 -1148
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +0 -4481
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +0 -328
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +0 -862
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/lib.rs +0 -140
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +0 -2455
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +0 -549
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +0 -537
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/extends.isle +0 -34
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +0 -578
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +0 -1012
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +0 -600
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/timing.rs +0 -271
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/unionfind.rs +0 -74
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +0 -23
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/cdsl/settings.rs +0 -440
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +0 -444
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/instructions.rs +0 -3867
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +0 -348
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +0 -215
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +0 -3538
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
- data/ext/cargo-vendor/log-0.4.19/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.19/CHANGELOG.md +0 -267
- data/ext/cargo-vendor/log-0.4.19/Cargo.toml +0 -117
- data/ext/cargo-vendor/log-0.4.19/README.md +0 -120
- data/ext/cargo-vendor/log-0.4.19/src/lib.rs +0 -1882
- data/ext/cargo-vendor/log-0.4.19/src/macros.rs +0 -280
- data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
- data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
- data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
- data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
- data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
- data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
- data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
- data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
- data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
- data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
- data/ext/cargo-vendor/quote-1.0.32/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/quote-1.0.32/Cargo.toml +0 -50
- data/ext/cargo-vendor/quote-1.0.32/src/lib.rs +0 -1444
- data/ext/cargo-vendor/quote-1.0.32/src/runtime.rs +0 -496
- data/ext/cargo-vendor/serde-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde-1.0.183/Cargo.toml +0 -66
- data/ext/cargo-vendor/serde-1.0.183/src/lib.rs +0 -327
- data/ext/cargo-vendor/serde-1.0.183/src/private/ser.rs +0 -1372
- data/ext/cargo-vendor/serde_derive-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_derive-1.0.183/Cargo.toml +0 -62
- data/ext/cargo-vendor/serde_derive-1.0.183/serde_derive-x86_64-unknown-linux-gnu +0 -0
- data/ext/cargo-vendor/serde_derive-1.0.183/src/buffer.rs +0 -69
- data/ext/cargo-vendor/serde_derive-1.0.183/src/bytecode.rs +0 -17
- data/ext/cargo-vendor/serde_derive-1.0.183/src/de.rs +0 -3143
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/attr.rs +0 -1869
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/symbol.rs +0 -70
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib.rs +0 -22
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_from_source.rs +0 -35
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_precompiled.rs +0 -234
- data/ext/cargo-vendor/serde_derive-1.0.183/src/ser.rs +0 -1353
- data/ext/cargo-vendor/serde_json-1.0.104/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.104/Cargo.toml +0 -109
- data/ext/cargo-vendor/serde_json-1.0.104/src/de.rs +0 -2643
- data/ext/cargo-vendor/serde_json-1.0.104/src/lib.rs +0 -418
- data/ext/cargo-vendor/serde_json-1.0.104/src/ser.rs +0 -2234
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/de.rs +0 -1403
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/ser.rs +0 -1053
- data/ext/cargo-vendor/serde_json-1.0.104/tests/test.rs +0 -2502
- data/ext/cargo-vendor/syn-2.0.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.28/Cargo.toml +0 -150
- data/ext/cargo-vendor/syn-2.0.28/src/custom_keyword.rs +0 -259
- data/ext/cargo-vendor/syn-2.0.28/src/custom_punctuation.rs +0 -302
- data/ext/cargo-vendor/syn-2.0.28/src/export.rs +0 -47
- data/ext/cargo-vendor/syn-2.0.28/src/group.rs +0 -283
- data/ext/cargo-vendor/syn-2.0.28/src/lib.rs +0 -970
- data/ext/cargo-vendor/syn-2.0.28/src/parse_quote.rs +0 -178
- data/ext/cargo-vendor/syn-2.0.28/src/span.rs +0 -62
- data/ext/cargo-vendor/syn-2.0.28/src/token.rs +0 -1068
- data/ext/cargo-vendor/syn-2.0.28/tests/common/eq.rs +0 -866
- data/ext/cargo-vendor/thiserror-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-1.0.44/Cargo.toml +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/build.rs +0 -66
- data/ext/cargo-vendor/thiserror-1.0.44/src/aserror.rs +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/src/display.rs +0 -28
- data/ext/cargo-vendor/thiserror-1.0.44/src/lib.rs +0 -255
- data/ext/cargo-vendor/thiserror-1.0.44/src/provide.rs +0 -15
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_backtrace.rs +0 -297
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_option.rs +0 -108
- data/ext/cargo-vendor/thiserror-impl-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-impl-1.0.44/Cargo.toml +0 -36
- data/ext/cargo-vendor/thiserror-impl-1.0.44/src/expand.rs +0 -545
- data/ext/cargo-vendor/tokio-1.30.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.30.0/CHANGELOG.md +0 -2952
- data/ext/cargo-vendor/tokio-1.30.0/Cargo.toml +0 -227
- data/ext/cargo-vendor/tokio-1.30.0/README.md +0 -244
- data/ext/cargo-vendor/tokio-1.30.0/src/io/async_fd.rs +0 -1252
- data/ext/cargo-vendor/tokio-1.30.0/src/io/interest.rs +0 -158
- data/ext/cargo-vendor/tokio-1.30.0/src/io/ready.rs +0 -293
- data/ext/cargo-vendor/tokio-1.30.0/src/io/split.rs +0 -184
- data/ext/cargo-vendor/tokio-1.30.0/src/io/util/async_read_ext.rs +0 -1295
- data/ext/cargo-vendor/tokio-1.30.0/src/process/mod.rs +0 -1680
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/builder.rs +0 -1323
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/io/scheduled_io.rs +0 -513
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/batch.rs +0 -162
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/mock.rs +0 -55
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/runtime.rs +0 -883
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/worker.rs +0 -80
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/current_thread/mod.rs +0 -764
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread/stats.rs +0 -140
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -425
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1567
- data/ext/cargo-vendor/tokio-1.30.0/src/sync/broadcast.rs +0 -1440
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_async_fd.rs +0 -687
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_split.rs +0 -79
- data/ext/cargo-vendor/tokio-1.30.0/tests/rt_metrics.rs +0 -718
- data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +0 -30
- data/ext/cargo-vendor/unicase-2.6.0/README.md +0 -31
- data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +0 -187
- data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +0 -465
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +0 -1995
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +0 -201
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-common-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-10.0.0/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasmtime-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-10.0.0/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/component.rs +0 -382
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/host.rs +0 -423
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/options.rs +0 -237
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/typed.rs +0 -2059
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func.rs +0 -684
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/types.rs +0 -545
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/values.rs +0 -1219
- data/ext/cargo-vendor/wasmtime-10.0.0/src/config.rs +0 -2066
- data/ext/cargo-vendor/wasmtime-10.0.0/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-10.0.0/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/src/bindgen.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/src/component.rs +0 -1199
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen.rs +0 -24
- data/ext/cargo-vendor/wasmtime-component-util-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-10.0.0/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/compiler/component.rs +0 -578
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/compiler.rs +0 -1200
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/func_environ.rs +0 -2206
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/lib.rs +0 -178
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/examples/factc.rs +0 -212
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/info.rs +0 -514
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate/inline.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate.rs +0 -1070
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/types.rs +0 -1916
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/fact/trampoline.rs +0 -3157
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-fiber-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-10.0.0/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/code_memory.rs +0 -309
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/libcalls.rs +0 -578
- data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/lib.rs +0 -130
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks.rs +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/ctx.rs +0 -206
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/poll.rs +0 -84
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched.rs +0 -105
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-winch-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-10.0.0/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/lib.rs +0 -1631
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/rust.rs +0 -473
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/types.rs +0 -179
- data/ext/cargo-vendor/wast-62.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-62.0.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/wast-62.0.1/src/core/binary.rs +0 -1213
- data/ext/cargo-vendor/wast-62.0.1/src/core/custom.rs +0 -236
- data/ext/cargo-vendor/wast-62.0.1/src/core/func.rs +0 -121
- data/ext/cargo-vendor/wast-62.0.1/src/core/module.rs +0 -213
- data/ext/cargo-vendor/wast-62.0.1/src/encode.rs +0 -81
- data/ext/cargo-vendor/wast-62.0.1/src/lib.rs +0 -532
- data/ext/cargo-vendor/wat-1.0.69/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.69/Cargo.toml +0 -27
- data/ext/cargo-vendor/wiggle-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-10.0.0/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-10.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-macro-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-10.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.8.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/abi/mod.rs +0 -237
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/call.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/context.rs +0 -270
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/env.rs +0 -52
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/mod.rs +0 -214
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/abi.rs +0 -243
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/asm.rs +0 -300
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/masm.rs +0 -230
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/mod.rs +0 -215
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/abi.rs +0 -369
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/asm.rs +0 -576
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/masm.rs +0 -288
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/regs.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/masm.rs +0 -255
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/stack.rs +0 -235
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/trampoline.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/visitor.rs +0 -353
- data/ext/cargo-vendor/windows-targets-0.48.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows-targets-0.48.1/Cargo.toml +0 -41
- data/ext/cargo-vendor/windows-targets-0.48.1/readme.md +0 -88
- data/ext/cargo-vendor/windows-targets-0.48.1/src/lib.rs +0 -55
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/builtin_split_dwarf_loader.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/function.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/lazy.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/correctness.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/output_equivalence.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/parse.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/COPYING +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/DESIGN.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/UNLICENSE +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/automaton.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/nfa/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/api.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/pattern.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/rabinkarp.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/compile.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/runtime.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/vector.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/transducer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/alphabet.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/buffer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/byte_frequencies.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/debug.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/int.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/prefilter.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/primitives.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/remapper.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/search.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/special.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/README.md +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ptr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/drop/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_backtrace.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_boxed.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_convert.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_downcast.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_ffi.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_repr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/README.md +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/args.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/receiver.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/executor/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/consider-restricting.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/send-not-implemented.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.stderr +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/README.md +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/benches/benchmarks.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/raw.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/android-api.c +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/libunwind.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/capture.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/coff.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/elf.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_dl_iterate_phdr.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_haiku.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_illumos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_libnx.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_macos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/macho.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_fake.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_unix.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/stash.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/auxiliary.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/main.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/concurrent-panics.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/current-exe-mismatch.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/long_fn_name.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/skip_inner_frames.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/smoke.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/bin/gcc-shim.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/unix.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/windows.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_sys.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cc_env.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cxxflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/support/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/sections_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/tests/wasm_testsuite.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/unreachable_code.wat +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → gimli-0.28.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → log-0.4.20}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/key.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/mod.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → object-0.32.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/endian.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/macho.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/attributes.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/hash.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/version.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/dyld_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/load_command.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/data_directory.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/resource.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/rich.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_ref.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/traits.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/wasm.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/writer.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/string.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/elf.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/README.md +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/format.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ident_fragment.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/to_tokens.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.stderr +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/README.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/crates-io.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/format.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/ignored_any.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/seed.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/size_hint.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/utf8.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/value.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/integer128.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/de.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/doc.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/fmt.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impossible.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/std_error.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/dummy.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/fragment.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ast.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/case.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/check.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ctxt.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/receiver.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/respan.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/pretend.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/this.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen_helper.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_should_parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/README.md +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_deprecated.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_from.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_lints.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/prop.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/valid.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/external-types.toml +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/os.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options/mock_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/maybe_done.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/bsd/poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/poll_evented.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdio_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_buf_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/flush.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mem.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/repeat.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/sink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mocked.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u16.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u32.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_usize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/cfg.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/pool.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/schedule.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/config.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/coop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/core.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/harness.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/state.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task_combinations.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/entry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/source.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/level.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/registry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/unix.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/batch_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/bounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/chan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/unbounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/consume_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/spawn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/bit.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/idle_notified_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/sync_wrapper.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/async_send_sync.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/join_handle_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_unix_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_2174.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_basic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_time_start_paused.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_pause.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.0 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.0 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.0 → wasmtime-wit-bindgen-11.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.0 → wiggle-macro-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.0 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/src/lib.rs +0 -0
@@ -0,0 +1,2899 @@
|
|
1
|
+
;; aarch64 instruction selection and CLIF-to-MachInst lowering.
|
2
|
+
|
3
|
+
;; The main lowering constructor term: takes a clif `Inst` and returns the
|
4
|
+
;; register(s) within which the lowered instruction's result values live.
|
5
|
+
(decl partial lower (Inst) InstOutput)
|
6
|
+
|
7
|
+
;; Variant of the main lowering constructor term, which receives an
|
8
|
+
;; additional argument (a vector of branch targets to be used) for
|
9
|
+
;; implementing branches.
|
10
|
+
;; For two-branch instructions, the first target is `taken` and the second
|
11
|
+
;; `not_taken`, even if it is a Fallthrough instruction: because we reorder
|
12
|
+
;; blocks while we lower, the fallthrough in the new order is not (necessarily)
|
13
|
+
;; the same as the fallthrough in CLIF. So, we use the explicitly-provided
|
14
|
+
;; target.
|
15
|
+
(decl partial lower_branch (Inst VecMachLabel) Unit)
|
16
|
+
|
17
|
+
;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
18
|
+
|
19
|
+
(rule (lower (has_type ty (iconst (u64_from_imm64 n))))
|
20
|
+
(imm ty (ImmExtend.Zero) n))
|
21
|
+
|
22
|
+
;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
23
|
+
|
24
|
+
(rule (lower (has_type ty (null)))
|
25
|
+
(imm ty (ImmExtend.Zero) 0))
|
26
|
+
|
27
|
+
;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
28
|
+
|
29
|
+
(rule (lower (f32const (u32_from_ieee32 n)))
|
30
|
+
(constant_f32 n))
|
31
|
+
|
32
|
+
;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
33
|
+
|
34
|
+
(rule (lower (f64const (u64_from_ieee64 n)))
|
35
|
+
(constant_f64 n))
|
36
|
+
|
37
|
+
;;;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
38
|
+
|
39
|
+
(rule (lower (nop))
|
40
|
+
(invalid_reg))
|
41
|
+
|
42
|
+
;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
43
|
+
|
44
|
+
;; `i64` and smaller
|
45
|
+
|
46
|
+
;; Base case, simply adding things in registers.
|
47
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
48
|
+
(add ty x y))
|
49
|
+
|
50
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
51
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (iadd x (imm12_from_value y))))
|
52
|
+
(add_imm ty x y))
|
53
|
+
|
54
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (iadd (imm12_from_value x) y)))
|
55
|
+
(add_imm ty y x))
|
56
|
+
|
57
|
+
;; Same as the previous special cases, except we can switch the addition to a
|
58
|
+
;; subtraction if the negated immediate fits in 12 bits.
|
59
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
60
|
+
(if-let imm12_neg (imm12_from_negated_value y))
|
61
|
+
(sub_imm ty x imm12_neg))
|
62
|
+
|
63
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
64
|
+
(if-let imm12_neg (imm12_from_negated_value x))
|
65
|
+
(sub_imm ty y imm12_neg))
|
66
|
+
|
67
|
+
;; Special cases for when we're adding an extended register where the extending
|
68
|
+
;; operation can get folded into the add itself.
|
69
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (iadd x (extended_value_from_value y))))
|
70
|
+
(add_extend ty x y))
|
71
|
+
|
72
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (iadd (extended_value_from_value x) y)))
|
73
|
+
(add_extend ty y x))
|
74
|
+
|
75
|
+
;; Special cases for when we're adding the shift of a different
|
76
|
+
;; register by a constant amount and the shift can get folded into the add.
|
77
|
+
(rule 7 (lower (has_type (fits_in_64 ty)
|
78
|
+
(iadd x (ishl y (iconst k)))))
|
79
|
+
(if-let amt (lshl_from_imm64 ty k))
|
80
|
+
(add_shift ty x y amt))
|
81
|
+
|
82
|
+
(rule 6 (lower (has_type (fits_in_64 ty)
|
83
|
+
(iadd (ishl x (iconst k)) y)))
|
84
|
+
(if-let amt (lshl_from_imm64 ty k))
|
85
|
+
(add_shift ty y x amt))
|
86
|
+
|
87
|
+
;; Fold an `iadd` and `imul` combination into a `madd` instruction.
|
88
|
+
(rule 7 (lower (has_type (fits_in_64 ty) (iadd x (imul y z))))
|
89
|
+
(madd ty y z x))
|
90
|
+
|
91
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (iadd (imul x y) z)))
|
92
|
+
(madd ty x y z))
|
93
|
+
|
94
|
+
;; Fold an `isub` and `imul` combination into a `msub` instruction.
|
95
|
+
(rule (lower (has_type (fits_in_64 ty) (isub x (imul y z))))
|
96
|
+
(msub ty y z x))
|
97
|
+
|
98
|
+
;; vectors
|
99
|
+
|
100
|
+
(rule -2 (lower (has_type ty @ (multi_lane _ _) (iadd x y)))
|
101
|
+
(add_vec x y (vector_size ty)))
|
102
|
+
|
103
|
+
;; `i128`
|
104
|
+
(rule -3 (lower (has_type $I128 (iadd x y)))
|
105
|
+
(let
|
106
|
+
;; Get the high/low registers for `x`.
|
107
|
+
((x_regs ValueRegs x)
|
108
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
109
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
110
|
+
|
111
|
+
;; Get the high/low registers for `y`.
|
112
|
+
(y_regs ValueRegs y)
|
113
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
114
|
+
(y_hi Reg (value_regs_get y_regs 1)))
|
115
|
+
;; the actual addition is `adds` followed by `adc` which comprises the
|
116
|
+
;; low/high bits of the result
|
117
|
+
(with_flags
|
118
|
+
(add_with_flags_paired $I64 x_lo y_lo)
|
119
|
+
(adc_paired $I64 x_hi y_hi))))
|
120
|
+
|
121
|
+
;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
122
|
+
|
123
|
+
;; When a single element of one vector is broadcast to all the destination
|
124
|
+
;; lanes then the `dup` instruction can be used for this operation. Note that
|
125
|
+
;; for now this only matches lane selection from the first vector `a`, but
|
126
|
+
;; if necessary in the future rules can be added to select from `b` as well.
|
127
|
+
(rule 6 (lower (shuffle a b (shuffle_dup8_from_imm n)))
|
128
|
+
(vec_dup_from_fpu a (VectorSize.Size8x16) n))
|
129
|
+
(rule 5 (lower (shuffle a b (shuffle_dup16_from_imm n)))
|
130
|
+
(vec_dup_from_fpu a (VectorSize.Size16x8) n))
|
131
|
+
(rule 4 (lower (shuffle a b (shuffle_dup32_from_imm n)))
|
132
|
+
(vec_dup_from_fpu a (VectorSize.Size32x4) n))
|
133
|
+
(rule 3 (lower (shuffle a b (shuffle_dup64_from_imm n)))
|
134
|
+
(vec_dup_from_fpu a (VectorSize.Size64x2) n))
|
135
|
+
|
136
|
+
;; If the `Immediate` specified to the extractor looks like a duplication of the
|
137
|
+
;; `n`th lane of the first vector of size K-byte lanes, then each extractor
|
138
|
+
;; returns the `n` value as a `u8` to be used as part of a `vec_dup_from_fpu`
|
139
|
+
;; instruction. Note that there's a different extractor for each bit-width of
|
140
|
+
;; lane.
|
141
|
+
(decl shuffle_dup8_from_imm (u8) Immediate)
|
142
|
+
(extern extractor shuffle_dup8_from_imm shuffle_dup8_from_imm)
|
143
|
+
(decl shuffle_dup16_from_imm (u8) Immediate)
|
144
|
+
(extern extractor shuffle_dup16_from_imm shuffle_dup16_from_imm)
|
145
|
+
(decl shuffle_dup32_from_imm (u8) Immediate)
|
146
|
+
(extern extractor shuffle_dup32_from_imm shuffle_dup32_from_imm)
|
147
|
+
(decl shuffle_dup64_from_imm (u8) Immediate)
|
148
|
+
(extern extractor shuffle_dup64_from_imm shuffle_dup64_from_imm)
|
149
|
+
|
150
|
+
;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
|
151
|
+
;; bytes", that's an `ext` instruction.
|
152
|
+
(rule 2 (lower (shuffle a b (vec_extract_imm4_from_immediate n)))
|
153
|
+
(vec_extract a b n))
|
154
|
+
|
155
|
+
;; Attempts to extract `n` from the specified shuffle `Immediate` where each
|
156
|
+
;; byte of the `Immediate` is a consecutive sequence starting from `n`. This
|
157
|
+
;; value of `n` is used as part of the `vec_extract` instruction which extracts
|
158
|
+
;; consecutive bytes from two vectors into one final vector, offset by `n`
|
159
|
+
;; bytes.
|
160
|
+
(decl vec_extract_imm4_from_immediate (u8) Immediate)
|
161
|
+
(extern extractor vec_extract_imm4_from_immediate vec_extract_imm4_from_immediate)
|
162
|
+
|
163
|
+
;; Rules for the `uzp1` and `uzp2` instructions which gather even-numbered lanes
|
164
|
+
;; or odd-numbered lanes
|
165
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1e1c_1a18_1614_1210_0e0c_0a08_0604_0200)))
|
166
|
+
(vec_uzp1 a b (VectorSize.Size8x16)))
|
167
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1d_1b19_1715_1311_0f0d_0b09_0705_0301)))
|
168
|
+
(vec_uzp2 a b (VectorSize.Size8x16)))
|
169
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_1918_1514_1110_0d0c_0908_0504_0100)))
|
170
|
+
(vec_uzp1 a b (VectorSize.Size16x8)))
|
171
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_1b1a_1716_1312_0f0e_0b0a_0706_0302)))
|
172
|
+
(vec_uzp2 a b (VectorSize.Size16x8)))
|
173
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_13121110_0b0a0908_03020100)))
|
174
|
+
(vec_uzp1 a b (VectorSize.Size32x4)))
|
175
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_17161514_0f0e0d0c_07060504)))
|
176
|
+
(vec_uzp2 a b (VectorSize.Size32x4)))
|
177
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
|
178
|
+
(vec_uzp1 a b (VectorSize.Size64x2)))
|
179
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
|
180
|
+
(vec_uzp2 a b (VectorSize.Size64x2)))
|
181
|
+
|
182
|
+
;; Rules for the `zip1` and `zip2` instructions which interleave lanes in the
|
183
|
+
;; low or high halves of the two input vectors.
|
184
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
|
185
|
+
(vec_zip1 a b (VectorSize.Size8x16)))
|
186
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
|
187
|
+
(vec_zip2 a b (VectorSize.Size8x16)))
|
188
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
|
189
|
+
(vec_zip1 a b (VectorSize.Size16x8)))
|
190
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
|
191
|
+
(vec_zip2 a b (VectorSize.Size16x8)))
|
192
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
|
193
|
+
(vec_zip1 a b (VectorSize.Size32x4)))
|
194
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
|
195
|
+
(vec_zip2 a b (VectorSize.Size32x4)))
|
196
|
+
;; Note that zip1/zip2 for i64x2 vectors is omitted since it's already covered
|
197
|
+
;; by the i64x2 cases of uzp1/uzp2 above where both zip and uzp have the same
|
198
|
+
;; semantics for 64-bit lanes.
|
199
|
+
|
200
|
+
;; Rules for the `trn1` and `trn2` instructions which interleave odd or even
|
201
|
+
;; lanes in the two input vectors.
|
202
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1e0e_1c0c_1a0a_1808_1606_1404_1202_1000)))
|
203
|
+
(vec_trn1 a b (VectorSize.Size8x16)))
|
204
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1d0d_1b0b_1909_1707_1505_1303_1101)))
|
205
|
+
(vec_trn2 a b (VectorSize.Size8x16)))
|
206
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_0d0c_1918_0908_1514_0504_1110_0100)))
|
207
|
+
(vec_trn1 a b (VectorSize.Size16x8)))
|
208
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1b1a_0b0a_1716_0706_1312_0302)))
|
209
|
+
(vec_trn2 a b (VectorSize.Size16x8)))
|
210
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_0b0a0908_13121110_03020100)))
|
211
|
+
(vec_trn1 a b (VectorSize.Size32x4)))
|
212
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_17161514_07060504)))
|
213
|
+
(vec_trn2 a b (VectorSize.Size32x4)))
|
214
|
+
;; Note that trn1/trn2 for i64x2 vectors is omitted since it's already covered
|
215
|
+
;; by the i64x2 cases of uzp1/uzp2 above where both trn and uzp have the same
|
216
|
+
;; semantics for 64-bit lanes.
|
217
|
+
|
218
|
+
;; Rules for the `rev{16,32,64}` instructions where reversals happen at either
|
219
|
+
;; the byte level, the 16-bit level, or 32-bit level. Note that all of these
|
220
|
+
;; patterns only match reversals in the first operand, but they can
|
221
|
+
;; theoretically be extended if necessary to reversals in the second operand.
|
222
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0e0f_0c0d_0a0b_0809_0607_0405_0203_0001)))
|
223
|
+
(rev16 a (VectorSize.Size8x16)))
|
224
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0c0d0e0f_08090a0b_04050607_00010203)))
|
225
|
+
(rev32 a (VectorSize.Size8x16)))
|
226
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0d0c0f0e_09080b0a_05040706_01000302)))
|
227
|
+
(rev32 a (VectorSize.Size16x8)))
|
228
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x08090a0b0c0d0e0f_0001020304050607)))
|
229
|
+
(rev64 a (VectorSize.Size8x16)))
|
230
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x09080b0a0d0c0f0e_0100030205040706)))
|
231
|
+
(rev64 a (VectorSize.Size16x8)))
|
232
|
+
(rule 1 (lower (shuffle a b (u128_from_immediate 0x0b0a09080f0e0d0c_0302010007060504)))
|
233
|
+
(rev64 a (VectorSize.Size32x4)))
|
234
|
+
|
235
|
+
(rule (lower (has_type ty (shuffle rn rn2 (u128_from_immediate mask))))
|
236
|
+
(let ((mask_reg Reg (constant_f128 mask)))
|
237
|
+
(vec_tbl2 rn rn2 mask_reg ty)))
|
238
|
+
|
239
|
+
;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
240
|
+
|
241
|
+
(rule (lower (has_type vec_i128_ty (swizzle rn rm)))
|
242
|
+
(vec_tbl rn rm))
|
243
|
+
|
244
|
+
;;;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
245
|
+
|
246
|
+
(rule (lower (isplit x @ (value_type $I128)))
|
247
|
+
(let
|
248
|
+
((x_regs ValueRegs x)
|
249
|
+
(x_lo ValueRegs (value_regs_get x_regs 0))
|
250
|
+
(x_hi ValueRegs (value_regs_get x_regs 1)))
|
251
|
+
(output_pair x_lo x_hi)))
|
252
|
+
|
253
|
+
;;;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
254
|
+
|
255
|
+
(rule (lower (has_type $I128 (iconcat lo hi)))
|
256
|
+
(output (value_regs lo hi)))
|
257
|
+
|
258
|
+
;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
259
|
+
|
260
|
+
(rule (lower (has_type $F32X4 (scalar_to_vector x)))
|
261
|
+
(fpu_extend x (ScalarSize.Size32)))
|
262
|
+
|
263
|
+
(rule (lower (has_type $F64X2 (scalar_to_vector x)))
|
264
|
+
(fpu_extend x (ScalarSize.Size64)))
|
265
|
+
|
266
|
+
(rule -1 (lower (scalar_to_vector x @ (value_type $I64)))
|
267
|
+
(mov_to_fpu x (ScalarSize.Size64)))
|
268
|
+
|
269
|
+
(rule -2 (lower (scalar_to_vector x @ (value_type (int_fits_in_32 _))))
|
270
|
+
(mov_to_fpu (put_in_reg_zext32 x) (ScalarSize.Size32)))
|
271
|
+
|
272
|
+
;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
273
|
+
|
274
|
+
;; cmeq vtmp.2d, vm.2d, #0
|
275
|
+
;; addp dtmp, vtmp.2d
|
276
|
+
;; fcmp dtmp, dtmp
|
277
|
+
;; cset xd, eq
|
278
|
+
;;
|
279
|
+
;; Note that after the ADDP the value of the temporary register will be either
|
280
|
+
;; 0 when all input elements are true, i.e. non-zero, or a NaN otherwise
|
281
|
+
;; (either -1 or -2 when represented as an integer); NaNs are the only
|
282
|
+
;; floating-point numbers that compare unequal to themselves.
|
283
|
+
(rule (lower (vall_true x @ (value_type (multi_lane 64 2))))
|
284
|
+
(let ((x1 Reg (cmeq0 x (VectorSize.Size64x2)))
|
285
|
+
(x2 Reg (addp x1 x1 (VectorSize.Size64x2))))
|
286
|
+
(with_flags (fpu_cmp (ScalarSize.Size64) x2 x2)
|
287
|
+
(materialize_bool_result (Cond.Eq)))))
|
288
|
+
|
289
|
+
(rule (lower (vall_true x @ (value_type (multi_lane 32 2))))
|
290
|
+
(let ((x1 Reg (mov_from_vec x 0 (ScalarSize.Size64))))
|
291
|
+
(with_flags (cmp_rr_shift (OperandSize.Size64) (zero_reg) x1 32)
|
292
|
+
(ccmp_imm
|
293
|
+
(OperandSize.Size32)
|
294
|
+
x1
|
295
|
+
(u8_into_uimm5 0)
|
296
|
+
(nzcv $false $true $false $false)
|
297
|
+
(Cond.Ne)))))
|
298
|
+
|
299
|
+
;; This operation is implemented by using uminv to create a scalar value, which
|
300
|
+
;; is then compared against zero.
|
301
|
+
;;
|
302
|
+
;; uminv bn, vm.16b
|
303
|
+
;; mov xm, vn.d[0]
|
304
|
+
;; cmp xm, #0
|
305
|
+
;; cset xm, ne
|
306
|
+
(rule -1 (lower (vall_true x @ (value_type (lane_fits_in_32 ty))))
|
307
|
+
(if (not_vec32x2 ty))
|
308
|
+
(let ((x1 Reg (vec_lanes (VecLanesOp.Uminv) x (vector_size ty)))
|
309
|
+
(x2 Reg (mov_from_vec x1 0 (ScalarSize.Size64))))
|
310
|
+
(with_flags (cmp_imm (OperandSize.Size64) x2 (u8_into_imm12 0))
|
311
|
+
(materialize_bool_result (Cond.Ne)))))
|
312
|
+
|
313
|
+
;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
314
|
+
|
315
|
+
(rule (lower (vany_true x @ (value_type in_ty)))
|
316
|
+
(with_flags (vanytrue x in_ty)
|
317
|
+
(materialize_bool_result (Cond.Ne))))
|
318
|
+
|
319
|
+
;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
320
|
+
|
321
|
+
;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
|
322
|
+
(rule (lower (has_type $I16X8 (iadd_pairwise (swiden_low x) (swiden_high x))))
|
323
|
+
(saddlp8 x))
|
324
|
+
|
325
|
+
;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
|
326
|
+
(rule (lower (has_type $I32X4 (iadd_pairwise (swiden_low x) (swiden_high x))))
|
327
|
+
(saddlp16 x))
|
328
|
+
|
329
|
+
;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
|
330
|
+
(rule (lower (has_type $I16X8 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
|
331
|
+
(uaddlp8 x))
|
332
|
+
|
333
|
+
;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
|
334
|
+
(rule (lower (has_type $I32X4 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
|
335
|
+
(uaddlp16 x))
|
336
|
+
|
337
|
+
(rule -1 (lower (has_type ty (iadd_pairwise x y)))
|
338
|
+
(addp x y (vector_size ty)))
|
339
|
+
|
340
|
+
;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
341
|
+
|
342
|
+
(rule (lower (has_type ty @ (multi_lane _ _) (iabs x)))
|
343
|
+
(vec_abs x (vector_size ty)))
|
344
|
+
|
345
|
+
(rule 2 (lower (has_type $I64 (iabs x)))
|
346
|
+
(abs (OperandSize.Size64) x))
|
347
|
+
|
348
|
+
(rule 1 (lower (has_type (fits_in_32 ty) (iabs x)))
|
349
|
+
(abs (OperandSize.Size32) (put_in_reg_sext32 x)))
|
350
|
+
|
351
|
+
;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
352
|
+
|
353
|
+
(rule (lower (has_type $I64X2 (avg_round x y)))
|
354
|
+
(let ((one Reg (splat_const 1 (VectorSize.Size64x2)))
|
355
|
+
(c Reg (orr_vec x y (VectorSize.Size64x2)))
|
356
|
+
(c Reg (and_vec c one (VectorSize.Size64x2)))
|
357
|
+
(x Reg (ushr_vec_imm x 1 (VectorSize.Size64x2)))
|
358
|
+
(y Reg (ushr_vec_imm y 1 (VectorSize.Size64x2)))
|
359
|
+
(sum Reg (add_vec x y (VectorSize.Size64x2))))
|
360
|
+
(add_vec c sum (VectorSize.Size64x2))))
|
361
|
+
|
362
|
+
(rule -1 (lower (has_type (lane_fits_in_32 ty) (avg_round x y)))
|
363
|
+
(vec_rrr (VecALUOp.Urhadd) x y (vector_size ty)))
|
364
|
+
|
365
|
+
;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
366
|
+
|
367
|
+
(rule (lower (has_type ty @ (multi_lane _ _) (sqmul_round_sat x y)))
|
368
|
+
(vec_rrr (VecALUOp.Sqrdmulh) x y (vector_size ty)))
|
369
|
+
|
370
|
+
;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
371
|
+
|
372
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fadd rn rm)))
|
373
|
+
(vec_rrr (VecALUOp.Fadd) rn rm (vector_size ty)))
|
374
|
+
|
375
|
+
(rule (lower (has_type (ty_scalar_float ty) (fadd rn rm)))
|
376
|
+
(fpu_rrr (FPUOp2.Add) rn rm (scalar_size ty)))
|
377
|
+
|
378
|
+
;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
379
|
+
|
380
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fsub rn rm)))
|
381
|
+
(vec_rrr (VecALUOp.Fsub) rn rm (vector_size ty)))
|
382
|
+
|
383
|
+
(rule (lower (has_type (ty_scalar_float ty) (fsub rn rm)))
|
384
|
+
(fpu_rrr (FPUOp2.Sub) rn rm (scalar_size ty)))
|
385
|
+
|
386
|
+
;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
387
|
+
|
388
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmul rn rm)))
|
389
|
+
(vec_rrr (VecALUOp.Fmul) rn rm (vector_size ty)))
|
390
|
+
|
391
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmul rn rm)))
|
392
|
+
(fpu_rrr (FPUOp2.Mul) rn rm (scalar_size ty)))
|
393
|
+
|
394
|
+
;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
395
|
+
|
396
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fdiv rn rm)))
|
397
|
+
(vec_rrr (VecALUOp.Fdiv) rn rm (vector_size ty)))
|
398
|
+
|
399
|
+
(rule (lower (has_type (ty_scalar_float ty) (fdiv rn rm)))
|
400
|
+
(fpu_rrr (FPUOp2.Div) rn rm (scalar_size ty)))
|
401
|
+
|
402
|
+
;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
403
|
+
|
404
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmin rn rm)))
|
405
|
+
(vec_rrr (VecALUOp.Fmin) rn rm (vector_size ty)))
|
406
|
+
|
407
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmin rn rm)))
|
408
|
+
(fpu_rrr (FPUOp2.Min) rn rm (scalar_size ty)))
|
409
|
+
|
410
|
+
;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
411
|
+
|
412
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmax rn rm)))
|
413
|
+
(vec_rrr (VecALUOp.Fmax) rn rm (vector_size ty)))
|
414
|
+
|
415
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmax rn rm)))
|
416
|
+
(fpu_rrr (FPUOp2.Max) rn rm (scalar_size ty)))
|
417
|
+
|
418
|
+
;;;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
419
|
+
|
420
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmin_pseudo rm rn)))
|
421
|
+
(bsl ty (vec_rrr (VecALUOp.Fcmgt) rm rn (vector_size ty)) rn rm))
|
422
|
+
|
423
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmin_pseudo rm rn)))
|
424
|
+
(with_flags (fpu_cmp (scalar_size ty) rm rn)
|
425
|
+
(fpu_csel ty (Cond.Gt) rn rm)))
|
426
|
+
|
427
|
+
;;;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
428
|
+
|
429
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fmax_pseudo rm rn)))
|
430
|
+
(bsl ty (vec_rrr (VecALUOp.Fcmgt) rn rm (vector_size ty)) rn rm))
|
431
|
+
|
432
|
+
(rule (lower (has_type (ty_scalar_float ty) (fmax_pseudo rm rn)))
|
433
|
+
(with_flags (fpu_cmp (scalar_size ty) rn rm)
|
434
|
+
(fpu_csel ty (Cond.Gt) rn rm)))
|
435
|
+
|
436
|
+
;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
437
|
+
|
438
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (sqrt x)))
|
439
|
+
(vec_misc (VecMisc2.Fsqrt) x (vector_size ty)))
|
440
|
+
|
441
|
+
(rule (lower (has_type (ty_scalar_float ty) (sqrt x)))
|
442
|
+
(fpu_rr (FPUOp1.Sqrt) x (scalar_size ty)))
|
443
|
+
|
444
|
+
;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
445
|
+
|
446
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fneg x)))
|
447
|
+
(vec_misc (VecMisc2.Fneg) x (vector_size ty)))
|
448
|
+
|
449
|
+
(rule (lower (has_type (ty_scalar_float ty) (fneg x)))
|
450
|
+
(fpu_rr (FPUOp1.Neg) x (scalar_size ty)))
|
451
|
+
|
452
|
+
;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
453
|
+
|
454
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (fabs x)))
|
455
|
+
(vec_misc (VecMisc2.Fabs) x (vector_size ty)))
|
456
|
+
|
457
|
+
(rule (lower (has_type (ty_scalar_float ty) (fabs x)))
|
458
|
+
(fpu_rr (FPUOp1.Abs) x (scalar_size ty)))
|
459
|
+
|
460
|
+
;;;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
461
|
+
|
462
|
+
(rule (lower (has_type $F64 (fpromote x)))
|
463
|
+
(fpu_rr (FPUOp1.Cvt32To64) x (ScalarSize.Size32)))
|
464
|
+
|
465
|
+
;;;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
466
|
+
|
467
|
+
(rule (lower (has_type $F32 (fdemote x)))
|
468
|
+
(fpu_rr (FPUOp1.Cvt64To32) x (ScalarSize.Size64)))
|
469
|
+
|
470
|
+
;;;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
471
|
+
|
472
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (ceil x)))
|
473
|
+
(vec_misc (VecMisc2.Frintp) x (vector_size ty)))
|
474
|
+
|
475
|
+
(rule (lower (has_type $F32 (ceil x)))
|
476
|
+
(fpu_round (FpuRoundMode.Plus32) x))
|
477
|
+
|
478
|
+
(rule (lower (has_type $F64 (ceil x)))
|
479
|
+
(fpu_round (FpuRoundMode.Plus64) x))
|
480
|
+
|
481
|
+
;;;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
482
|
+
|
483
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (floor x)))
|
484
|
+
(vec_misc (VecMisc2.Frintm) x (vector_size ty)))
|
485
|
+
|
486
|
+
(rule (lower (has_type $F32 (floor x)))
|
487
|
+
(fpu_round (FpuRoundMode.Minus32) x))
|
488
|
+
|
489
|
+
(rule (lower (has_type $F64 (floor x)))
|
490
|
+
(fpu_round (FpuRoundMode.Minus64) x))
|
491
|
+
|
492
|
+
;;;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
493
|
+
|
494
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (trunc x)))
|
495
|
+
(vec_misc (VecMisc2.Frintz) x (vector_size ty)))
|
496
|
+
|
497
|
+
(rule (lower (has_type $F32 (trunc x)))
|
498
|
+
(fpu_round (FpuRoundMode.Zero32) x))
|
499
|
+
|
500
|
+
(rule (lower (has_type $F64 (trunc x)))
|
501
|
+
(fpu_round (FpuRoundMode.Zero64) x))
|
502
|
+
|
503
|
+
;;;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
504
|
+
|
505
|
+
(rule -1 (lower (has_type ty @ (multi_lane _ _) (nearest x)))
|
506
|
+
(vec_misc (VecMisc2.Frintn) x (vector_size ty)))
|
507
|
+
|
508
|
+
(rule (lower (has_type $F32 (nearest x)))
|
509
|
+
(fpu_round (FpuRoundMode.Nearest32) x))
|
510
|
+
|
511
|
+
(rule (lower (has_type $F64 (nearest x)))
|
512
|
+
(fpu_round (FpuRoundMode.Nearest64) x))
|
513
|
+
|
514
|
+
;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
515
|
+
|
516
|
+
(rule (lower (has_type (ty_scalar_float ty) (fma x y z)))
|
517
|
+
(fpu_rrrr (FPUOp3.MAdd) (scalar_size ty) x y z))
|
518
|
+
|
519
|
+
;; Delegate vector-based lowerings to helpers below
|
520
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (fma x y z)))
|
521
|
+
(lower_fmla (VecALUModOp.Fmla) x y z (vector_size ty)))
|
522
|
+
|
523
|
+
;; Lowers a fused-multiply-add operation handling various forms of the
|
524
|
+
;; instruction to get maximal coverage of what's available on AArch64.
|
525
|
+
(decl lower_fmla (VecALUModOp Value Value Value VectorSize) Reg)
|
526
|
+
|
527
|
+
;; Base case, emit the op requested.
|
528
|
+
(rule (lower_fmla op x y z size)
|
529
|
+
(vec_rrr_mod op z x y size))
|
530
|
+
|
531
|
+
;; Special case: if one of the multiplicands are a splat then the element-based
|
532
|
+
;; fma can be used instead with 0 as the element index.
|
533
|
+
(rule 1 (lower_fmla op (splat x) y z size)
|
534
|
+
(vec_fmla_elem op z y x size 0))
|
535
|
+
(rule 2 (lower_fmla op x (splat y) z size)
|
536
|
+
(vec_fmla_elem op z x y size 0))
|
537
|
+
|
538
|
+
;; Special case: if one of the multiplicands is a shuffle to broadcast a
|
539
|
+
;; single element of a vector then the element-based fma can be used like splat
|
540
|
+
;; above.
|
541
|
+
;;
|
542
|
+
;; Note that in Cranelift shuffle always has i8x16 inputs and outputs so
|
543
|
+
;; a `bitcast` is matched here explicitly since that's the main way a shuffle
|
544
|
+
;; output will be fed into this instruction.
|
545
|
+
(rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle32_from_imm n n n n))) y z size @ (VectorSize.Size32x4))
|
546
|
+
(if-let $true (u64_lt n 4))
|
547
|
+
(vec_fmla_elem op z y x size n))
|
548
|
+
(rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle32_from_imm n n n n))) z size @ (VectorSize.Size32x4))
|
549
|
+
(if-let $true (u64_lt n 4))
|
550
|
+
(vec_fmla_elem op z x y size n))
|
551
|
+
(rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle64_from_imm n n))) y z size @ (VectorSize.Size64x2))
|
552
|
+
(if-let $true (u64_lt n 2))
|
553
|
+
(vec_fmla_elem op z y x size n))
|
554
|
+
(rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle64_from_imm n n))) z size @ (VectorSize.Size64x2))
|
555
|
+
(if-let $true (u64_lt n 2))
|
556
|
+
(vec_fmla_elem op z x y size n))
|
557
|
+
|
558
|
+
;; Special case: if one of the multiplicands is `fneg` then peel that away,
|
559
|
+
;; reverse the operation being performed, and then recurse on `lower_fmla`
|
560
|
+
;; again to generate the actual instruction.
|
561
|
+
;;
|
562
|
+
;; Note that these are the highest priority cases for `lower_fmla` to peel
|
563
|
+
;; away as many `fneg` operations as possible.
|
564
|
+
(rule 5 (lower_fmla op (fneg x) y z size)
|
565
|
+
(lower_fmla (neg_fmla op) x y z size))
|
566
|
+
(rule 6 (lower_fmla op x (fneg y) z size)
|
567
|
+
(lower_fmla (neg_fmla op) x y z size))
|
568
|
+
|
569
|
+
(decl neg_fmla (VecALUModOp) VecALUModOp)
|
570
|
+
(rule (neg_fmla (VecALUModOp.Fmla)) (VecALUModOp.Fmls))
|
571
|
+
(rule (neg_fmla (VecALUModOp.Fmls)) (VecALUModOp.Fmla))
|
572
|
+
|
573
|
+
;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
574
|
+
|
575
|
+
(rule (lower (has_type ty (fcopysign x y)))
|
576
|
+
(fcopy_sign x y ty))
|
577
|
+
|
578
|
+
;;;; Rules for `fcvt_to_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
579
|
+
|
580
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F32))))
|
581
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToU32) x $false $F32 out_ty))
|
582
|
+
|
583
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F32))))
|
584
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToU64) x $false $F32 $I64))
|
585
|
+
|
586
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F64))))
|
587
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToU32) x $false $F64 out_ty))
|
588
|
+
|
589
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F64))))
|
590
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToU64) x $false $F64 $I64))
|
591
|
+
|
592
|
+
;;;; Rules for `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
593
|
+
|
594
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F32))))
|
595
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToI32) x $true $F32 out_ty))
|
596
|
+
|
597
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F32))))
|
598
|
+
(fpu_to_int_cvt (FpuToIntOp.F32ToI64) x $true $F32 $I64))
|
599
|
+
|
600
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F64))))
|
601
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToI32) x $true $F64 out_ty))
|
602
|
+
|
603
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F64))))
|
604
|
+
(fpu_to_int_cvt (FpuToIntOp.F64ToI64) x $true $F64 $I64))
|
605
|
+
|
606
|
+
;;;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
607
|
+
|
608
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_uint x @ (value_type (multi_lane 32 _)))))
|
609
|
+
(vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
|
610
|
+
|
611
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_uint x @ (value_type (multi_lane 64 _)))))
|
612
|
+
(vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
|
613
|
+
|
614
|
+
(rule (lower (has_type $F32 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
|
615
|
+
(int_to_fpu (IntToFpuOp.U32ToF32) (put_in_reg_zext32 x)))
|
616
|
+
|
617
|
+
(rule (lower (has_type $F64 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
|
618
|
+
(int_to_fpu (IntToFpuOp.U32ToF64) (put_in_reg_zext32 x)))
|
619
|
+
|
620
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_uint x @ (value_type $I64))))
|
621
|
+
(int_to_fpu (IntToFpuOp.U64ToF32) x))
|
622
|
+
|
623
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_uint x @ (value_type $I64))))
|
624
|
+
(int_to_fpu (IntToFpuOp.U64ToF64) x))
|
625
|
+
|
626
|
+
;;;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
627
|
+
|
628
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_sint x @ (value_type (multi_lane 32 _)))))
|
629
|
+
(vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
|
630
|
+
|
631
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_sint x @ (value_type (multi_lane 64 _)))))
|
632
|
+
(vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
|
633
|
+
|
634
|
+
(rule (lower (has_type $F32 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
|
635
|
+
(int_to_fpu (IntToFpuOp.I32ToF32) (put_in_reg_sext32 x)))
|
636
|
+
|
637
|
+
(rule (lower (has_type $F64 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
|
638
|
+
(int_to_fpu (IntToFpuOp.I32ToF64) (put_in_reg_sext32 x)))
|
639
|
+
|
640
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_sint x @ (value_type $I64))))
|
641
|
+
(int_to_fpu (IntToFpuOp.I64ToF32) x))
|
642
|
+
|
643
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_sint x @ (value_type $I64))))
|
644
|
+
(int_to_fpu (IntToFpuOp.I64ToF64) x))
|
645
|
+
|
646
|
+
;;;; Rules for `fcvt_to_uint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
647
|
+
|
648
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 32 _)))))
|
649
|
+
(vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
|
650
|
+
|
651
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 64 _)))))
|
652
|
+
(vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
|
653
|
+
|
654
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F32))))
|
655
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToU32) x $false out_ty))
|
656
|
+
|
657
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F32))))
|
658
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToU64) x $false $I64))
|
659
|
+
|
660
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F64))))
|
661
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToU32) x $false out_ty))
|
662
|
+
|
663
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F64))))
|
664
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToU64) x $false $I64))
|
665
|
+
|
666
|
+
;;;; Rules for `fcvt_to_sint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
667
|
+
|
668
|
+
(rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 32 _)))))
|
669
|
+
(vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
|
670
|
+
|
671
|
+
(rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 64 _)))))
|
672
|
+
(vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
|
673
|
+
|
674
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F32))))
|
675
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToI32) x $true out_ty))
|
676
|
+
|
677
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F32))))
|
678
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F32ToI64) x $true $I64))
|
679
|
+
|
680
|
+
(rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F64))))
|
681
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToI32) x $true out_ty))
|
682
|
+
|
683
|
+
(rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F64))))
|
684
|
+
(fpu_to_int_cvt_sat (FpuToIntOp.F64ToI64) x $true $I64))
|
685
|
+
|
686
|
+
;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
687
|
+
|
688
|
+
;; `i64` and smaller
|
689
|
+
|
690
|
+
;; Base case, simply subtracting things in registers.
|
691
|
+
(rule -4 (lower (has_type (fits_in_64 ty) (isub x y)))
|
692
|
+
(sub ty x y))
|
693
|
+
|
694
|
+
;; Special case for when one operand is an immediate that fits in 12 bits.
|
695
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (isub x (imm12_from_value y))))
|
696
|
+
(sub_imm ty x y))
|
697
|
+
|
698
|
+
;; Same as the previous special case, except we can switch the subtraction to an
|
699
|
+
;; addition if the negated immediate fits in 12 bits.
|
700
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (isub x y)))
|
701
|
+
(if-let imm12_neg (imm12_from_negated_value y))
|
702
|
+
(add_imm ty x imm12_neg))
|
703
|
+
|
704
|
+
;; Special cases for when we're subtracting an extended register where the
|
705
|
+
;; extending operation can get folded into the sub itself.
|
706
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (isub x (extended_value_from_value y))))
|
707
|
+
(sub_extend ty x y))
|
708
|
+
|
709
|
+
;; Finally a special case for when we're subtracting the shift of a different
|
710
|
+
;; register by a constant amount and the shift can get folded into the sub.
|
711
|
+
(rule -3 (lower (has_type (fits_in_64 ty)
|
712
|
+
(isub x (ishl y (iconst k)))))
|
713
|
+
(if-let amt (lshl_from_imm64 ty k))
|
714
|
+
(sub_shift ty x y amt))
|
715
|
+
|
716
|
+
;; vectors
|
717
|
+
(rule -2 (lower (has_type ty @ (multi_lane _ _) (isub x y)))
|
718
|
+
(sub_vec x y (vector_size ty)))
|
719
|
+
|
720
|
+
;; `i128`
|
721
|
+
(rule -1 (lower (has_type $I128 (isub x y)))
|
722
|
+
(sub_i128 x y))
|
723
|
+
|
724
|
+
;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
725
|
+
|
726
|
+
(rule (lower (has_type (ty_vec128 ty) (uadd_sat x y)))
|
727
|
+
(uqadd x y (vector_size ty)))
|
728
|
+
|
729
|
+
;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
730
|
+
|
731
|
+
(rule (lower (has_type (ty_vec128 ty) (sadd_sat x y)))
|
732
|
+
(sqadd x y (vector_size ty)))
|
733
|
+
|
734
|
+
;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
735
|
+
|
736
|
+
(rule (lower (has_type (ty_vec128 ty) (usub_sat x y)))
|
737
|
+
(uqsub x y (vector_size ty)))
|
738
|
+
|
739
|
+
;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
740
|
+
|
741
|
+
(rule (lower (has_type (ty_vec128 ty) (ssub_sat x y)))
|
742
|
+
(sqsub x y (vector_size ty)))
|
743
|
+
|
744
|
+
;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
745
|
+
|
746
|
+
;; `i64` and smaller.
|
747
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (ineg x)))
|
748
|
+
(sub ty (zero_reg) x))
|
749
|
+
|
750
|
+
;; `i128`
|
751
|
+
(rule 2 (lower (has_type $I128 (ineg x)))
|
752
|
+
(sub_i128 (value_regs_zero) x))
|
753
|
+
|
754
|
+
;; vectors.
|
755
|
+
(rule (lower (has_type (ty_vec128 ty) (ineg x)))
|
756
|
+
(neg x (vector_size ty)))
|
757
|
+
|
758
|
+
;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
759
|
+
|
760
|
+
;; `i64` and smaller.
|
761
|
+
(rule -3 (lower (has_type (fits_in_64 ty) (imul x y)))
|
762
|
+
(madd ty x y (zero_reg)))
|
763
|
+
|
764
|
+
;; `i128`.
|
765
|
+
(rule -1 (lower (has_type $I128 (imul x y)))
|
766
|
+
(let
|
767
|
+
;; Get the high/low registers for `x`.
|
768
|
+
((x_regs ValueRegs x)
|
769
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
770
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
771
|
+
|
772
|
+
;; Get the high/low registers for `y`.
|
773
|
+
(y_regs ValueRegs y)
|
774
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
775
|
+
(y_hi Reg (value_regs_get y_regs 1))
|
776
|
+
|
777
|
+
;; 128bit mul formula:
|
778
|
+
;; dst_lo = x_lo * y_lo
|
779
|
+
;; dst_hi = umulhi(x_lo, y_lo) + (x_lo * y_hi) + (x_hi * y_lo)
|
780
|
+
;;
|
781
|
+
;; We can convert the above formula into the following
|
782
|
+
;; umulh dst_hi, x_lo, y_lo
|
783
|
+
;; madd dst_hi, x_lo, y_hi, dst_hi
|
784
|
+
;; madd dst_hi, x_hi, y_lo, dst_hi
|
785
|
+
;; madd dst_lo, x_lo, y_lo, zero
|
786
|
+
(dst_hi1 Reg (umulh $I64 x_lo y_lo))
|
787
|
+
(dst_hi2 Reg (madd $I64 x_lo y_hi dst_hi1))
|
788
|
+
(dst_hi Reg (madd $I64 x_hi y_lo dst_hi2))
|
789
|
+
(dst_lo Reg (madd $I64 x_lo y_lo (zero_reg))))
|
790
|
+
(value_regs dst_lo dst_hi)))
|
791
|
+
|
792
|
+
;; Case for i8x16, i16x8, and i32x4.
|
793
|
+
(rule -2 (lower (has_type (ty_vec128 ty @ (not_i64x2)) (imul x y)))
|
794
|
+
(mul x y (vector_size ty)))
|
795
|
+
|
796
|
+
;; Special lowering for i64x2.
|
797
|
+
;;
|
798
|
+
;; This I64X2 multiplication is performed with several 32-bit
|
799
|
+
;; operations.
|
800
|
+
;;
|
801
|
+
;; 64-bit numbers x and y, can be represented as:
|
802
|
+
;; x = a + 2^32(b)
|
803
|
+
;; y = c + 2^32(d)
|
804
|
+
;;
|
805
|
+
;; A 64-bit multiplication is:
|
806
|
+
;; x * y = ac + 2^32(ad + bc) + 2^64(bd)
|
807
|
+
;; note: `2^64(bd)` can be ignored, the value is too large to fit in
|
808
|
+
;; 64 bits.
|
809
|
+
;;
|
810
|
+
;; This sequence implements a I64X2 multiply, where the registers
|
811
|
+
;; `rn` and `rm` are split up into 32-bit components:
|
812
|
+
;; rn = |d|c|b|a|
|
813
|
+
;; rm = |h|g|f|e|
|
814
|
+
;;
|
815
|
+
;; rn * rm = |cg + 2^32(ch + dg)|ae + 2^32(af + be)|
|
816
|
+
;;
|
817
|
+
;; The sequence is:
|
818
|
+
;; rev64 rd.4s, rm.4s
|
819
|
+
;; mul rd.4s, rd.4s, rn.4s
|
820
|
+
;; xtn tmp1.2s, rn.2d
|
821
|
+
;; addp rd.4s, rd.4s, rd.4s
|
822
|
+
;; xtn tmp2.2s, rm.2d
|
823
|
+
;; shll rd.2d, rd.2s, #32
|
824
|
+
;; umlal rd.2d, tmp2.2s, tmp1.2s
|
825
|
+
(rule -1 (lower (has_type $I64X2 (imul x y)))
|
826
|
+
(let ((rn Reg x)
|
827
|
+
(rm Reg y)
|
828
|
+
;; Reverse the 32-bit elements in the 64-bit words.
|
829
|
+
;; rd = |g|h|e|f|
|
830
|
+
(rev Reg (rev64 rm (VectorSize.Size32x4)))
|
831
|
+
|
832
|
+
;; Calculate the high half components.
|
833
|
+
;; rd = |dg|ch|be|af|
|
834
|
+
;;
|
835
|
+
;; Note that this 32-bit multiply of the high half
|
836
|
+
;; discards the bits that would overflow, same as
|
837
|
+
;; if 64-bit operations were used. Also the Shll
|
838
|
+
;; below would shift out the overflow bits anyway.
|
839
|
+
(mul Reg (mul rev rn (VectorSize.Size32x4)))
|
840
|
+
|
841
|
+
;; Extract the low half components of rn.
|
842
|
+
;; tmp1 = |c|a|
|
843
|
+
(tmp1 Reg (xtn rn (ScalarSize.Size32)))
|
844
|
+
|
845
|
+
;; Sum the respective high half components.
|
846
|
+
;; rd = |dg+ch|be+af||dg+ch|be+af|
|
847
|
+
(sum Reg (addp mul mul (VectorSize.Size32x4)))
|
848
|
+
|
849
|
+
;; Extract the low half components of rm.
|
850
|
+
;; tmp2 = |g|e|
|
851
|
+
(tmp2 Reg (xtn rm (ScalarSize.Size32)))
|
852
|
+
|
853
|
+
;; Shift the high half components, into the high half.
|
854
|
+
;; rd = |dg+ch << 32|be+af << 32|
|
855
|
+
(shift Reg (shll32 sum $false))
|
856
|
+
|
857
|
+
;; Multiply the low components together, and accumulate with the high
|
858
|
+
;; half.
|
859
|
+
;; rd = |rd[1] + cg|rd[0] + ae|
|
860
|
+
(result Reg (umlal32 shift tmp2 tmp1 $false)))
|
861
|
+
result))
|
862
|
+
|
863
|
+
;; Special case for `i16x8.extmul_low_i8x16_s`.
|
864
|
+
(rule (lower (has_type $I16X8
|
865
|
+
(imul (swiden_low x @ (value_type $I8X16))
|
866
|
+
(swiden_low y @ (value_type $I8X16)))))
|
867
|
+
(smull8 x y $false))
|
868
|
+
|
869
|
+
;; Special case for `i16x8.extmul_high_i8x16_s`.
|
870
|
+
(rule (lower (has_type $I16X8
|
871
|
+
(imul (swiden_high x @ (value_type $I8X16))
|
872
|
+
(swiden_high y @ (value_type $I8X16)))))
|
873
|
+
(smull8 x y $true))
|
874
|
+
|
875
|
+
;; Special case for `i16x8.extmul_low_i8x16_u`.
|
876
|
+
(rule (lower (has_type $I16X8
|
877
|
+
(imul (uwiden_low x @ (value_type $I8X16))
|
878
|
+
(uwiden_low y @ (value_type $I8X16)))))
|
879
|
+
(umull8 x y $false))
|
880
|
+
|
881
|
+
;; Special case for `i16x8.extmul_high_i8x16_u`.
|
882
|
+
(rule (lower (has_type $I16X8
|
883
|
+
(imul (uwiden_high x @ (value_type $I8X16))
|
884
|
+
(uwiden_high y @ (value_type $I8X16)))))
|
885
|
+
(umull8 x y $true))
|
886
|
+
|
887
|
+
;; Special case for `i32x4.extmul_low_i16x8_s`.
|
888
|
+
(rule (lower (has_type $I32X4
|
889
|
+
(imul (swiden_low x @ (value_type $I16X8))
|
890
|
+
(swiden_low y @ (value_type $I16X8)))))
|
891
|
+
(smull16 x y $false))
|
892
|
+
|
893
|
+
;; Special case for `i32x4.extmul_high_i16x8_s`.
|
894
|
+
(rule (lower (has_type $I32X4
|
895
|
+
(imul (swiden_high x @ (value_type $I16X8))
|
896
|
+
(swiden_high y @ (value_type $I16X8)))))
|
897
|
+
(smull16 x y $true))
|
898
|
+
|
899
|
+
;; Special case for `i32x4.extmul_low_i16x8_u`.
|
900
|
+
(rule (lower (has_type $I32X4
|
901
|
+
(imul (uwiden_low x @ (value_type $I16X8))
|
902
|
+
(uwiden_low y @ (value_type $I16X8)))))
|
903
|
+
(umull16 x y $false))
|
904
|
+
|
905
|
+
;; Special case for `i32x4.extmul_high_i16x8_u`.
|
906
|
+
(rule (lower (has_type $I32X4
|
907
|
+
(imul (uwiden_high x @ (value_type $I16X8))
|
908
|
+
(uwiden_high y @ (value_type $I16X8)))))
|
909
|
+
(umull16 x y $true))
|
910
|
+
|
911
|
+
;; Special case for `i64x2.extmul_low_i32x4_s`.
|
912
|
+
(rule (lower (has_type $I64X2
|
913
|
+
(imul (swiden_low x @ (value_type $I32X4))
|
914
|
+
(swiden_low y @ (value_type $I32X4)))))
|
915
|
+
(smull32 x y $false))
|
916
|
+
|
917
|
+
;; Special case for `i64x2.extmul_high_i32x4_s`.
|
918
|
+
(rule (lower (has_type $I64X2
|
919
|
+
(imul (swiden_high x @ (value_type $I32X4))
|
920
|
+
(swiden_high y @ (value_type $I32X4)))))
|
921
|
+
(smull32 x y $true))
|
922
|
+
|
923
|
+
;; Special case for `i64x2.extmul_low_i32x4_u`.
|
924
|
+
(rule (lower (has_type $I64X2
|
925
|
+
(imul (uwiden_low x @ (value_type $I32X4))
|
926
|
+
(uwiden_low y @ (value_type $I32X4)))))
|
927
|
+
(umull32 x y $false))
|
928
|
+
|
929
|
+
;; Special case for `i64x2.extmul_high_i32x4_u`.
|
930
|
+
(rule (lower (has_type $I64X2
|
931
|
+
(imul (uwiden_high x @ (value_type $I32X4))
|
932
|
+
(uwiden_high y @ (value_type $I32X4)))))
|
933
|
+
(umull32 x y $true))
|
934
|
+
|
935
|
+
;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
936
|
+
|
937
|
+
(rule 1 (lower (has_type $I64 (smulhi x y)))
|
938
|
+
(smulh $I64 x y))
|
939
|
+
|
940
|
+
(rule (lower (has_type (fits_in_32 ty) (smulhi x y)))
|
941
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
942
|
+
(y64 Reg (put_in_reg_sext64 y))
|
943
|
+
(mul Reg (madd $I64 x64 y64 (zero_reg)))
|
944
|
+
(result Reg (asr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty)))))
|
945
|
+
result))
|
946
|
+
|
947
|
+
;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
948
|
+
|
949
|
+
(rule 1 (lower (has_type $I64 (umulhi x y)))
|
950
|
+
(umulh $I64 x y))
|
951
|
+
|
952
|
+
(rule (lower (has_type (fits_in_32 ty) (umulhi x y)))
|
953
|
+
(let (
|
954
|
+
(x64 Reg (put_in_reg_zext64 x))
|
955
|
+
(y64 Reg (put_in_reg_zext64 y))
|
956
|
+
(mul Reg (madd $I64 x64 y64 (zero_reg)))
|
957
|
+
(result Reg (lsr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty))))
|
958
|
+
)
|
959
|
+
(value_reg result)))
|
960
|
+
|
961
|
+
;;;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
962
|
+
|
963
|
+
;; TODO: Add UDiv32 to implement 32-bit directly, rather
|
964
|
+
;; than extending the input.
|
965
|
+
;;
|
966
|
+
;; Note that aarch64's `udiv` doesn't trap so to respect the semantics of
|
967
|
+
;; CLIF's `udiv` the check for zero needs to be manually performed.
|
968
|
+
(rule (lower (has_type (fits_in_64 ty) (udiv x y)))
|
969
|
+
(a64_udiv $I64 (put_in_reg_zext64 x) (put_nonzero_in_reg_zext64 y)))
|
970
|
+
|
971
|
+
;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
|
972
|
+
(decl put_nonzero_in_reg_zext64 (Value) Reg)
|
973
|
+
(rule -1 (put_nonzero_in_reg_zext64 val)
|
974
|
+
(trap_if_zero_divisor (put_in_reg_zext64 val)))
|
975
|
+
|
976
|
+
;; Special case where if a `Value` is known to be nonzero we can trivially
|
977
|
+
;; move it into a register.
|
978
|
+
(rule (put_nonzero_in_reg_zext64 (and (value_type ty)
|
979
|
+
(iconst (nonzero_u64_from_imm64 n))))
|
980
|
+
(imm ty (ImmExtend.Zero) n))
|
981
|
+
|
982
|
+
;;;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
983
|
+
|
984
|
+
;; TODO: Add SDiv32 to implement 32-bit directly, rather
|
985
|
+
;; than extending the input.
|
986
|
+
;;
|
987
|
+
;; The sequence of checks here should look like:
|
988
|
+
;;
|
989
|
+
;; cbnz rm, #8
|
990
|
+
;; udf ; divide by zero
|
991
|
+
;; cmn rm, 1
|
992
|
+
;; ccmp rn, 1, #nzcv, eq
|
993
|
+
;; b.vc #8
|
994
|
+
;; udf ; signed overflow
|
995
|
+
;;
|
996
|
+
;; Note The div instruction does not trap on divide by zero or overflow, so
|
997
|
+
;; checks need to be manually inserted.
|
998
|
+
;;
|
999
|
+
;; TODO: if `y` is -1 then a check that `x` is not INT_MIN is all that's
|
1000
|
+
;; necessary, but right now `y` is checked to not be -1 as well.
|
1001
|
+
(rule (lower (has_type (fits_in_64 ty) (sdiv x y)))
|
1002
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
1003
|
+
(y64 Reg (put_nonzero_in_reg_sext64 y))
|
1004
|
+
(valid_x64 Reg (trap_if_div_overflow ty x64 y64))
|
1005
|
+
(result Reg (a64_sdiv $I64 valid_x64 y64)))
|
1006
|
+
result))
|
1007
|
+
|
1008
|
+
;; Special case for `sdiv` where no checks are needed due to division by a
|
1009
|
+
;; constant meaning the checks are always passed.
|
1010
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (sdiv x (iconst imm))))
|
1011
|
+
(if-let y (safe_divisor_from_imm64 ty imm))
|
1012
|
+
(a64_sdiv $I64 (put_in_reg_sext64 x) (imm ty (ImmExtend.Sign) y)))
|
1013
|
+
|
1014
|
+
;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
|
1015
|
+
(decl put_nonzero_in_reg_sext64 (Value) Reg)
|
1016
|
+
(rule -1 (put_nonzero_in_reg_sext64 val)
|
1017
|
+
(trap_if_zero_divisor (put_in_reg_sext64 val)))
|
1018
|
+
|
1019
|
+
;; Note that this has a special case where if the `Value` is a constant that's
|
1020
|
+
;; not zero we can skip the zero check.
|
1021
|
+
(rule (put_nonzero_in_reg_sext64 (and (value_type ty)
|
1022
|
+
(iconst (nonzero_u64_from_imm64 n))))
|
1023
|
+
(imm ty (ImmExtend.Sign) n))
|
1024
|
+
|
1025
|
+
;;;; Rules for `urem` and `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1026
|
+
|
1027
|
+
;; Remainder (x % y) is implemented as:
|
1028
|
+
;;
|
1029
|
+
;; tmp = x / y
|
1030
|
+
;; result = x - (tmp*y)
|
1031
|
+
;;
|
1032
|
+
;; use 'result' for tmp and you have:
|
1033
|
+
;;
|
1034
|
+
;; cbnz y, #8 ; branch over trap
|
1035
|
+
;; udf ; divide by zero
|
1036
|
+
;; div rd, x, y ; rd = x / y
|
1037
|
+
;; msub rd, rd, y, x ; rd = x - rd * y
|
1038
|
+
|
1039
|
+
(rule (lower (has_type (fits_in_64 ty) (urem x y)))
|
1040
|
+
(let ((x64 Reg (put_in_reg_zext64 x))
|
1041
|
+
(y64 Reg (put_nonzero_in_reg_zext64 y))
|
1042
|
+
(div Reg (a64_udiv $I64 x64 y64))
|
1043
|
+
(result Reg (msub $I64 div y64 x64)))
|
1044
|
+
result))
|
1045
|
+
|
1046
|
+
(rule (lower (has_type (fits_in_64 ty) (srem x y)))
|
1047
|
+
(let ((x64 Reg (put_in_reg_sext64 x))
|
1048
|
+
(y64 Reg (put_nonzero_in_reg_sext64 y))
|
1049
|
+
(div Reg (a64_sdiv $I64 x64 y64))
|
1050
|
+
(result Reg (msub $I64 div y64 x64)))
|
1051
|
+
result))
|
1052
|
+
|
1053
|
+
;;; Rules for integer min/max: umin, smin, umax, smax ;;;;;;;;;;;;;;;;;;;;;;;;;
|
1054
|
+
|
1055
|
+
;; `i64` and smaller.
|
1056
|
+
|
1057
|
+
;; cmp $x, $y
|
1058
|
+
;; csel .., $x, $y, $cc
|
1059
|
+
(decl cmp_and_choose (Type Cond bool Value Value) ValueRegs)
|
1060
|
+
(rule (cmp_and_choose (fits_in_64 ty) cc _ x y)
|
1061
|
+
(let ((x Reg (put_in_reg x))
|
1062
|
+
(y Reg (put_in_reg y)))
|
1063
|
+
(with_flags_reg (cmp (operand_size ty) x y)
|
1064
|
+
(csel cc x y))))
|
1065
|
+
|
1066
|
+
;; `i16` and `i8` min/max require sign extension as
|
1067
|
+
;; the comparison operates on (at least) 32 bits.
|
1068
|
+
(rule 1 (cmp_and_choose (fits_in_16 ty) cc signed x y)
|
1069
|
+
(let ((x Reg (extend (put_in_reg x) signed (ty_bits ty) 32))
|
1070
|
+
(y Reg (extend (put_in_reg y) signed (ty_bits ty) 32)))
|
1071
|
+
(with_flags_reg (cmp (operand_size ty) x y)
|
1072
|
+
(csel cc x y))))
|
1073
|
+
|
1074
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umin x y)))
|
1075
|
+
(cmp_and_choose ty (Cond.Lo) $false x y))
|
1076
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smin x y)))
|
1077
|
+
(cmp_and_choose ty (Cond.Lt) $true x y))
|
1078
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umax x y)))
|
1079
|
+
(cmp_and_choose ty (Cond.Hi) $false x y))
|
1080
|
+
(rule 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smax x y)))
|
1081
|
+
(cmp_and_choose ty (Cond.Gt) $true x y))
|
1082
|
+
|
1083
|
+
;; Vector types.
|
1084
|
+
|
1085
|
+
(rule (lower (has_type ty @ (not_i64x2) (smin x y)))
|
1086
|
+
(vec_rrr (VecALUOp.Smin) x y (vector_size ty)))
|
1087
|
+
|
1088
|
+
(rule 1 (lower (has_type $I64X2 (smin x y)))
|
1089
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) y x (VectorSize.Size64x2)) x y))
|
1090
|
+
|
1091
|
+
(rule (lower (has_type ty @ (not_i64x2) (umin x y)))
|
1092
|
+
(vec_rrr (VecALUOp.Umin) x y (vector_size ty)))
|
1093
|
+
|
1094
|
+
(rule 1 (lower (has_type $I64X2 (umin x y)))
|
1095
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) y x (VectorSize.Size64x2)) x y))
|
1096
|
+
|
1097
|
+
(rule (lower (has_type ty @ (not_i64x2) (smax x y)))
|
1098
|
+
(vec_rrr (VecALUOp.Smax) x y (vector_size ty)))
|
1099
|
+
|
1100
|
+
(rule 1 (lower (has_type $I64X2 (smax x y)))
|
1101
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) x y (VectorSize.Size64x2)) x y))
|
1102
|
+
|
1103
|
+
(rule (lower (has_type ty @ (not_i64x2) (umax x y)))
|
1104
|
+
(vec_rrr (VecALUOp.Umax) x y (vector_size ty)))
|
1105
|
+
|
1106
|
+
(rule 1 (lower (has_type $I64X2 (umax x y)))
|
1107
|
+
(bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) x y (VectorSize.Size64x2)) x y))
|
1108
|
+
|
1109
|
+
;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1110
|
+
|
1111
|
+
;; General rule for extending input to an output which fits in a single
|
1112
|
+
;; register.
|
1113
|
+
(rule -2 (lower (has_type (fits_in_64 out) (uextend x @ (value_type in))))
|
1114
|
+
(extend x $false (ty_bits in) (ty_bits out)))
|
1115
|
+
|
1116
|
+
;; Extraction of a vector lane automatically extends as necessary, so we can
|
1117
|
+
;; skip an explicit extending instruction.
|
1118
|
+
(rule 1 (lower (has_type (fits_in_64 out)
|
1119
|
+
(uextend (extractlane vec @ (value_type in)
|
1120
|
+
(u8_from_uimm8 lane)))))
|
1121
|
+
(mov_from_vec (put_in_reg vec) lane (lane_size in)))
|
1122
|
+
|
1123
|
+
;; Atomic loads will also automatically zero their upper bits so the `uextend`
|
1124
|
+
;; instruction can effectively get skipped here.
|
1125
|
+
(rule 1 (lower (has_type (fits_in_64 out)
|
1126
|
+
(uextend x @ (and (value_type in) (atomic_load flags _)))))
|
1127
|
+
(if-let mem_op (is_sinkable_inst x))
|
1128
|
+
(load_acquire in flags (sink_atomic_load mem_op)))
|
1129
|
+
|
1130
|
+
;; Conversion to 128-bit needs a zero-extension of the lower bits and the upper
|
1131
|
+
;; bits are all zero.
|
1132
|
+
(rule -1 (lower (has_type $I128 (uextend x)))
|
1133
|
+
(value_regs (put_in_reg_zext64 x) (imm $I64 (ImmExtend.Zero) 0)))
|
1134
|
+
|
1135
|
+
;; Like above where vector extraction automatically zero-extends extending to
|
1136
|
+
;; i128 only requires generating a 0 constant for the upper bits.
|
1137
|
+
(rule (lower (has_type $I128
|
1138
|
+
(uextend (extractlane vec @ (value_type in)
|
1139
|
+
(u8_from_uimm8 lane)))))
|
1140
|
+
(value_regs (mov_from_vec (put_in_reg vec) lane (lane_size in)) (imm $I64 (ImmExtend.Zero) 0)))
|
1141
|
+
|
1142
|
+
;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1143
|
+
|
1144
|
+
;; General rule for extending input to an output which fits in a single
|
1145
|
+
;; register.
|
1146
|
+
(rule -4 (lower (has_type (fits_in_64 out) (sextend x @ (value_type in))))
|
1147
|
+
(extend x $true (ty_bits in) (ty_bits out)))
|
1148
|
+
|
1149
|
+
;; Extraction of a vector lane automatically extends as necessary, so we can
|
1150
|
+
;; skip an explicit extending instruction.
|
1151
|
+
(rule -3 (lower (has_type (fits_in_64 out)
|
1152
|
+
(sextend (extractlane vec @ (value_type in)
|
1153
|
+
(u8_from_uimm8 lane)))))
|
1154
|
+
(mov_from_vec_signed (put_in_reg vec)
|
1155
|
+
lane
|
1156
|
+
(vector_size in)
|
1157
|
+
(size_from_ty out)))
|
1158
|
+
|
1159
|
+
;; 64-bit to 128-bit only needs to sign-extend the input to the upper bits.
|
1160
|
+
(rule -2 (lower (has_type $I128 (sextend x)))
|
1161
|
+
(let ((lo Reg (put_in_reg_sext64 x))
|
1162
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1163
|
+
(value_regs lo hi)))
|
1164
|
+
|
1165
|
+
;; Like above where vector extraction automatically zero-extends extending to
|
1166
|
+
;; i128 only requires generating a 0 constant for the upper bits.
|
1167
|
+
;;
|
1168
|
+
;; Note that `mov_from_vec_signed` doesn't exist for i64x2, so that's
|
1169
|
+
;; specifically excluded here.
|
1170
|
+
(rule (lower (has_type $I128
|
1171
|
+
(sextend (extractlane vec @ (value_type in @ (not_i64x2))
|
1172
|
+
(u8_from_uimm8 lane)))))
|
1173
|
+
(let ((lo Reg (mov_from_vec_signed (put_in_reg vec)
|
1174
|
+
lane
|
1175
|
+
(vector_size in)
|
1176
|
+
(size_from_ty $I64)))
|
1177
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1178
|
+
(value_regs lo hi)))
|
1179
|
+
|
1180
|
+
;; Extension from an extraction of i64x2 into i128.
|
1181
|
+
(rule -1 (lower (has_type $I128
|
1182
|
+
(sextend (extractlane vec @ (value_type $I64X2)
|
1183
|
+
(u8_from_uimm8 lane)))))
|
1184
|
+
(let ((lo Reg (mov_from_vec (put_in_reg vec)
|
1185
|
+
lane
|
1186
|
+
(ScalarSize.Size64)))
|
1187
|
+
(hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
|
1188
|
+
(value_regs lo hi)))
|
1189
|
+
|
1190
|
+
;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1191
|
+
|
1192
|
+
;; Base case using `orn` between two registers.
|
1193
|
+
;;
|
1194
|
+
;; Note that bitwise negation is implemented here as
|
1195
|
+
;;
|
1196
|
+
;; NOT rd, rm ==> ORR_NOT rd, zero, rm
|
1197
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bnot x)))
|
1198
|
+
(orr_not ty (zero_reg) x))
|
1199
|
+
|
1200
|
+
;; Special case to use `orr_not_shift` if it's a `bnot` of a const-left-shifted
|
1201
|
+
;; value.
|
1202
|
+
(rule 1 (lower (has_type (fits_in_64 ty)
|
1203
|
+
(bnot (ishl x (iconst k)))))
|
1204
|
+
(if-let amt (lshl_from_imm64 ty k))
|
1205
|
+
(orr_not_shift ty (zero_reg) x amt))
|
1206
|
+
|
1207
|
+
;; Implementation of `bnot` for `i128`.
|
1208
|
+
(rule (lower (has_type $I128 (bnot x)))
|
1209
|
+
(let ((x_regs ValueRegs x)
|
1210
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
1211
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
1212
|
+
(new_lo Reg (orr_not $I64 (zero_reg) x_lo))
|
1213
|
+
(new_hi Reg (orr_not $I64 (zero_reg) x_hi)))
|
1214
|
+
(value_regs new_lo new_hi)))
|
1215
|
+
|
1216
|
+
;; Implementation of `bnot` for vector types.
|
1217
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bnot x)))
|
1218
|
+
(not x (vector_size ty)))
|
1219
|
+
|
1220
|
+
;; Special-cases for fusing a bnot with bxor
|
1221
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bnot (bxor x y))))
|
1222
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1223
|
+
(rule 3 (lower (has_type $I128 (bnot (bxor x y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1224
|
+
|
1225
|
+
;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1226
|
+
|
1227
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (band x y)))
|
1228
|
+
(alu_rs_imm_logic_commutative (ALUOp.And) ty x y))
|
1229
|
+
|
1230
|
+
(rule (lower (has_type $I128 (band x y))) (i128_alu_bitop (ALUOp.And) $I64 x y))
|
1231
|
+
|
1232
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (band x y)))
|
1233
|
+
(and_vec x y (vector_size ty)))
|
1234
|
+
|
1235
|
+
;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
|
1236
|
+
;; by Cranelift's `band_not` instruction that is legalized into the simpler
|
1237
|
+
;; forms early on.
|
1238
|
+
|
1239
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (band x (bnot y))))
|
1240
|
+
(alu_rs_imm_logic (ALUOp.AndNot) ty x y))
|
1241
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (band (bnot y) x)))
|
1242
|
+
(alu_rs_imm_logic (ALUOp.AndNot) ty x y))
|
1243
|
+
|
1244
|
+
(rule 3 (lower (has_type $I128 (band x (bnot y)))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
|
1245
|
+
(rule 4 (lower (has_type $I128 (band (bnot y) x))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
|
1246
|
+
|
1247
|
+
(rule 5 (lower (has_type (ty_vec128 ty) (band x (bnot y))))
|
1248
|
+
(bic_vec x y (vector_size ty)))
|
1249
|
+
(rule 6 (lower (has_type (ty_vec128 ty) (band (bnot y) x)))
|
1250
|
+
(bic_vec x y (vector_size ty)))
|
1251
|
+
|
1252
|
+
;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1253
|
+
|
1254
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bor x y)))
|
1255
|
+
(alu_rs_imm_logic_commutative (ALUOp.Orr) ty x y))
|
1256
|
+
|
1257
|
+
(rule (lower (has_type $I128 (bor x y))) (i128_alu_bitop (ALUOp.Orr) $I64 x y))
|
1258
|
+
|
1259
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bor x y)))
|
1260
|
+
(orr_vec x y (vector_size ty)))
|
1261
|
+
|
1262
|
+
;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
|
1263
|
+
;; by Cranelift's `bor_not` instruction that is legalized into the simpler
|
1264
|
+
;; forms early on.
|
1265
|
+
|
1266
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bor x (bnot y))))
|
1267
|
+
(alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
|
1268
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bor (bnot y) x)))
|
1269
|
+
(alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
|
1270
|
+
|
1271
|
+
(rule 3 (lower (has_type $I128 (bor x (bnot y)))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
|
1272
|
+
(rule 4 (lower (has_type $I128 (bor (bnot y) x))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
|
1273
|
+
|
1274
|
+
;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1275
|
+
|
1276
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bxor x y)))
|
1277
|
+
(alu_rs_imm_logic_commutative (ALUOp.Eor) ty x y))
|
1278
|
+
|
1279
|
+
(rule (lower (has_type $I128 (bxor x y))) (i128_alu_bitop (ALUOp.Eor) $I64 x y))
|
1280
|
+
|
1281
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (bxor x y)))
|
1282
|
+
(eor_vec x y (vector_size ty)))
|
1283
|
+
|
1284
|
+
;; Specialized lowerings for `(bxor x (bnot y))` which is additionally produced
|
1285
|
+
;; by Cranelift's `bxor_not` instruction that is legalized into the simpler
|
1286
|
+
;; forms early on.
|
1287
|
+
|
1288
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bxor x (bnot y))))
|
1289
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1290
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bxor (bnot y) x)))
|
1291
|
+
(alu_rs_imm_logic (ALUOp.EorNot) ty x y))
|
1292
|
+
|
1293
|
+
(rule 3 (lower (has_type $I128 (bxor x (bnot y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1294
|
+
(rule 4 (lower (has_type $I128 (bxor (bnot y) x))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
|
1295
|
+
|
1296
|
+
;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1297
|
+
|
1298
|
+
;; Shift for i8/i16/i32.
|
1299
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (ishl x y)))
|
1300
|
+
(do_shift (ALUOp.Lsl) ty x y))
|
1301
|
+
|
1302
|
+
;; Shift for i64.
|
1303
|
+
(rule (lower (has_type $I64 (ishl x y)))
|
1304
|
+
(do_shift (ALUOp.Lsl) $I64 x y))
|
1305
|
+
|
1306
|
+
;; Shift for i128.
|
1307
|
+
(rule (lower (has_type $I128 (ishl x y)))
|
1308
|
+
(lower_shl128 x (value_regs_get y 0)))
|
1309
|
+
|
1310
|
+
;; lsl lo_lshift, src_lo, amt
|
1311
|
+
;; lsl hi_lshift, src_hi, amt
|
1312
|
+
;; mvn inv_amt, amt
|
1313
|
+
;; lsr lo_rshift, src_lo, #1
|
1314
|
+
;; lsr lo_rshift, lo_rshift, inv_amt
|
1315
|
+
;; orr maybe_hi, hi_lshift, lo_rshift
|
1316
|
+
;; tst amt, #0x40
|
1317
|
+
;; csel dst_hi, lo_lshift, maybe_hi, ne
|
1318
|
+
;; csel dst_lo, xzr, lo_lshift, ne
|
1319
|
+
(decl lower_shl128 (ValueRegs Reg) ValueRegs)
|
1320
|
+
(rule (lower_shl128 src amt)
|
1321
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1322
|
+
(src_hi Reg (value_regs_get src 1))
|
1323
|
+
(lo_lshift Reg (lsl $I64 src_lo amt))
|
1324
|
+
(hi_lshift Reg (lsl $I64 src_hi amt))
|
1325
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1326
|
+
(lo_rshift Reg (lsr $I64 (lsr_imm $I64 src_lo (imm_shift_from_u8 1))
|
1327
|
+
inv_amt))
|
1328
|
+
(maybe_hi Reg (orr $I64 hi_lshift lo_rshift))
|
1329
|
+
)
|
1330
|
+
(with_flags
|
1331
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1332
|
+
(consumes_flags_concat
|
1333
|
+
(csel (Cond.Ne) (zero_reg) lo_lshift)
|
1334
|
+
(csel (Cond.Ne) lo_lshift maybe_hi)))))
|
1335
|
+
|
1336
|
+
;; Shift for vector types.
|
1337
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (ishl x y)))
|
1338
|
+
(let ((size VectorSize (vector_size ty))
|
1339
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1340
|
+
(shift Reg (vec_dup masked_shift_amt size)))
|
1341
|
+
(sshl x shift size)))
|
1342
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (ishl x (iconst (u64_from_imm64 n)))))
|
1343
|
+
(ushl_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1344
|
+
|
1345
|
+
(decl pure shift_masked_imm (Type u64) u8)
|
1346
|
+
(extern constructor shift_masked_imm shift_masked_imm)
|
1347
|
+
|
1348
|
+
;; Helper function to emit a shift operation with the opcode specified and
|
1349
|
+
;; the output type specified. The `Reg` provided is shifted by the `Value`
|
1350
|
+
;; given.
|
1351
|
+
;;
|
1352
|
+
;; Note that this automatically handles the clif semantics of masking the
|
1353
|
+
;; shift amount where necessary.
|
1354
|
+
(decl do_shift (ALUOp Type Reg Value) Reg)
|
1355
|
+
|
1356
|
+
;; 8/16-bit shift base case.
|
1357
|
+
;;
|
1358
|
+
;; When shifting for amounts larger than the size of the type, the CLIF shift
|
1359
|
+
;; instructions implement a "wrapping" behaviour, such that an i8 << 8 is
|
1360
|
+
;; equivalent to i8 << 0
|
1361
|
+
;;
|
1362
|
+
;; On i32 and i64 types this matches what the aarch64 spec does, but on smaller
|
1363
|
+
;; types (i16, i8) we need to do this manually, so we wrap the shift amount
|
1364
|
+
;; with an AND instruction
|
1365
|
+
(rule -1 (do_shift op (fits_in_16 ty) x y)
|
1366
|
+
(let ((shift_amt Reg (value_regs_get y 0))
|
1367
|
+
(masked_shift_amt Reg (and_imm $I32 shift_amt (shift_mask ty))))
|
1368
|
+
(alu_rrr op $I32 x masked_shift_amt)))
|
1369
|
+
|
1370
|
+
(decl shift_mask (Type) ImmLogic)
|
1371
|
+
(extern constructor shift_mask shift_mask)
|
1372
|
+
|
1373
|
+
;; 32/64-bit shift base cases.
|
1374
|
+
(rule (do_shift op $I32 x y) (alu_rrr op $I32 x (value_regs_get y 0)))
|
1375
|
+
(rule (do_shift op $I64 x y) (alu_rrr op $I64 x (value_regs_get y 0)))
|
1376
|
+
|
1377
|
+
;; Special case for shifting by a constant value where the value can fit into an
|
1378
|
+
;; `ImmShift`.
|
1379
|
+
;;
|
1380
|
+
;; Note that this rule explicitly has a higher priority than the others
|
1381
|
+
;; to ensure it's attempted first, otherwise the type-based filters on the
|
1382
|
+
;; previous rules seem to take priority over this rule.
|
1383
|
+
(rule 1 (do_shift op ty x (iconst k))
|
1384
|
+
(if-let shift (imm_shift_from_imm64 ty k))
|
1385
|
+
(alu_rr_imm_shift op ty x shift))
|
1386
|
+
|
1387
|
+
;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1388
|
+
|
1389
|
+
;; Shift for i8/i16/i32.
|
1390
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (ushr x y)))
|
1391
|
+
(do_shift (ALUOp.Lsr) ty (put_in_reg_zext32 x) y))
|
1392
|
+
|
1393
|
+
;; Shift for i64.
|
1394
|
+
(rule (lower (has_type $I64 (ushr x y)))
|
1395
|
+
(do_shift (ALUOp.Lsr) $I64 (put_in_reg_zext64 x) y))
|
1396
|
+
|
1397
|
+
;; Shift for i128.
|
1398
|
+
(rule (lower (has_type $I128 (ushr x y)))
|
1399
|
+
(lower_ushr128 x (value_regs_get y 0)))
|
1400
|
+
|
1401
|
+
;; Vector shifts.
|
1402
|
+
;;
|
1403
|
+
;; Note that for constant shifts a 0-width shift can't be emitted so it's
|
1404
|
+
;; special cased to pass through the input as-is since a 0-shift doesn't modify
|
1405
|
+
;; the input anyway.
|
1406
|
+
(rule -4 (lower (has_type (ty_vec128 ty) (ushr x y)))
|
1407
|
+
(let ((size VectorSize (vector_size ty))
|
1408
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1409
|
+
(shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
|
1410
|
+
(ushl x shift size)))
|
1411
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
|
1412
|
+
(ushr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1413
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
|
1414
|
+
(if-let 0 (shift_masked_imm ty n))
|
1415
|
+
x)
|
1416
|
+
|
1417
|
+
;; lsr lo_rshift, src_lo, amt
|
1418
|
+
;; lsr hi_rshift, src_hi, amt
|
1419
|
+
;; mvn inv_amt, amt
|
1420
|
+
;; lsl hi_lshift, src_hi, #1
|
1421
|
+
;; lsl hi_lshift, hi_lshift, inv_amt
|
1422
|
+
;; tst amt, #0x40
|
1423
|
+
;; orr maybe_lo, lo_rshift, hi_lshift
|
1424
|
+
;; csel dst_hi, xzr, hi_rshift, ne
|
1425
|
+
;; csel dst_lo, hi_rshift, maybe_lo, ne
|
1426
|
+
(decl lower_ushr128 (ValueRegs Reg) ValueRegs)
|
1427
|
+
(rule (lower_ushr128 src amt)
|
1428
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1429
|
+
(src_hi Reg (value_regs_get src 1))
|
1430
|
+
(lo_rshift Reg (lsr $I64 src_lo amt))
|
1431
|
+
(hi_rshift Reg (lsr $I64 src_hi amt))
|
1432
|
+
|
1433
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1434
|
+
(hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
|
1435
|
+
inv_amt))
|
1436
|
+
(maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
|
1437
|
+
)
|
1438
|
+
(with_flags
|
1439
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1440
|
+
(consumes_flags_concat
|
1441
|
+
(csel (Cond.Ne) hi_rshift maybe_lo)
|
1442
|
+
(csel (Cond.Ne) (zero_reg) hi_rshift)))))
|
1443
|
+
|
1444
|
+
;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1445
|
+
|
1446
|
+
;; Shift for i8/i16/i32.
|
1447
|
+
(rule -4 (lower (has_type (fits_in_32 ty) (sshr x y)))
|
1448
|
+
(do_shift (ALUOp.Asr) ty (put_in_reg_sext32 x) y))
|
1449
|
+
|
1450
|
+
;; Shift for i64.
|
1451
|
+
(rule (lower (has_type $I64 (sshr x y)))
|
1452
|
+
(do_shift (ALUOp.Asr) $I64 (put_in_reg_sext64 x) y))
|
1453
|
+
|
1454
|
+
;; Shift for i128.
|
1455
|
+
(rule (lower (has_type $I128 (sshr x y)))
|
1456
|
+
(lower_sshr128 x (value_regs_get y 0)))
|
1457
|
+
|
1458
|
+
;; Vector shifts.
|
1459
|
+
;;
|
1460
|
+
;; Note that right shifts are implemented with a negative left shift. Also note
|
1461
|
+
;; that for constant shifts a 0-width shift can't be emitted so it's special
|
1462
|
+
;; cased to pass through the input as-is since a 0-shift doesn't modify the
|
1463
|
+
;; input anyway.
|
1464
|
+
(rule -3 (lower (has_type (ty_vec128 ty) (sshr x y)))
|
1465
|
+
(let ((size VectorSize (vector_size ty))
|
1466
|
+
(masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
|
1467
|
+
(shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
|
1468
|
+
(sshl x shift size)))
|
1469
|
+
(rule -2 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
|
1470
|
+
(sshr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
|
1471
|
+
(rule -1 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
|
1472
|
+
(if-let 0 (shift_masked_imm ty n))
|
1473
|
+
x)
|
1474
|
+
|
1475
|
+
;; lsr lo_rshift, src_lo, amt
|
1476
|
+
;; asr hi_rshift, src_hi, amt
|
1477
|
+
;; mvn inv_amt, amt
|
1478
|
+
;; lsl hi_lshift, src_hi, #1
|
1479
|
+
;; lsl hi_lshift, hi_lshift, inv_amt
|
1480
|
+
;; asr hi_sign, src_hi, #63
|
1481
|
+
;; orr maybe_lo, lo_rshift, hi_lshift
|
1482
|
+
;; tst amt, #0x40
|
1483
|
+
;; csel dst_hi, hi_sign, hi_rshift, ne
|
1484
|
+
;; csel dst_lo, hi_rshift, maybe_lo, ne
|
1485
|
+
(decl lower_sshr128 (ValueRegs Reg) ValueRegs)
|
1486
|
+
(rule (lower_sshr128 src amt)
|
1487
|
+
(let ((src_lo Reg (value_regs_get src 0))
|
1488
|
+
(src_hi Reg (value_regs_get src 1))
|
1489
|
+
(lo_rshift Reg (lsr $I64 src_lo amt))
|
1490
|
+
(hi_rshift Reg (asr $I64 src_hi amt))
|
1491
|
+
|
1492
|
+
(inv_amt Reg (orr_not $I32 (zero_reg) amt))
|
1493
|
+
(hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
|
1494
|
+
inv_amt))
|
1495
|
+
(hi_sign Reg (asr_imm $I64 src_hi (imm_shift_from_u8 63)))
|
1496
|
+
(maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
|
1497
|
+
)
|
1498
|
+
(with_flags
|
1499
|
+
(tst_imm $I64 amt (u64_into_imm_logic $I64 64))
|
1500
|
+
(consumes_flags_concat
|
1501
|
+
(csel (Cond.Ne) hi_rshift maybe_lo)
|
1502
|
+
(csel (Cond.Ne) hi_sign hi_rshift)))))
|
1503
|
+
|
1504
|
+
;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1505
|
+
|
1506
|
+
;; General 8/16-bit case.
|
1507
|
+
(rule -2 (lower (has_type (fits_in_16 ty) (rotl x y)))
|
1508
|
+
(let ((amt Reg (value_regs_get y 0))
|
1509
|
+
(neg_shift Reg (sub $I32 (zero_reg) amt)))
|
1510
|
+
(small_rotr ty (put_in_reg_zext32 x) neg_shift)))
|
1511
|
+
|
1512
|
+
;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
|
1513
|
+
(rule -1 (lower (has_type (fits_in_16 ty) (rotl x (iconst k))))
|
1514
|
+
(if-let n (imm_shift_from_imm64 ty k))
|
1515
|
+
(small_rotr_imm ty (put_in_reg_zext32 x) (negate_imm_shift ty n)))
|
1516
|
+
|
1517
|
+
;; aarch64 doesn't have a left-rotate instruction, but a left rotation of K
|
1518
|
+
;; places is effectively a right rotation of N - K places, if N is the integer's
|
1519
|
+
;; bit size. We implement left rotations with this trick.
|
1520
|
+
;;
|
1521
|
+
;; Note that when negating the shift amount here the upper bits are ignored
|
1522
|
+
;; by the rotr instruction, meaning that we'll still left-shift by the desired
|
1523
|
+
;; amount.
|
1524
|
+
|
1525
|
+
;; General 32-bit case.
|
1526
|
+
(rule (lower (has_type $I32 (rotl x y)))
|
1527
|
+
(let ((amt Reg (value_regs_get y 0))
|
1528
|
+
(neg_shift Reg (sub $I32 (zero_reg) amt)))
|
1529
|
+
(a64_rotr $I32 x neg_shift)))
|
1530
|
+
|
1531
|
+
;; General 64-bit case.
|
1532
|
+
(rule (lower (has_type $I64 (rotl x y)))
|
1533
|
+
(let ((amt Reg (value_regs_get y 0))
|
1534
|
+
(neg_shift Reg (sub $I64 (zero_reg) amt)))
|
1535
|
+
(a64_rotr $I64 x neg_shift)))
|
1536
|
+
|
1537
|
+
;; Specialization for the 32-bit case when the rotation amount is an immediate.
|
1538
|
+
(rule 1 (lower (has_type $I32 (rotl x (iconst k))))
|
1539
|
+
(if-let n (imm_shift_from_imm64 $I32 k))
|
1540
|
+
(a64_rotr_imm $I32 x (negate_imm_shift $I32 n)))
|
1541
|
+
|
1542
|
+
;; Specialization for the 64-bit case when the rotation amount is an immediate.
|
1543
|
+
(rule 1 (lower (has_type $I64 (rotl x (iconst k))))
|
1544
|
+
(if-let n (imm_shift_from_imm64 $I64 k))
|
1545
|
+
(a64_rotr_imm $I64 x (negate_imm_shift $I64 n)))
|
1546
|
+
|
1547
|
+
(decl negate_imm_shift (Type ImmShift) ImmShift)
|
1548
|
+
(extern constructor negate_imm_shift negate_imm_shift)
|
1549
|
+
|
1550
|
+
;; General 128-bit case.
|
1551
|
+
;;
|
1552
|
+
;; TODO: much better codegen is possible with a constant amount.
|
1553
|
+
(rule (lower (has_type $I128 (rotl x y)))
|
1554
|
+
(let ((val ValueRegs x)
|
1555
|
+
(amt Reg (value_regs_get y 0))
|
1556
|
+
(neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
|
1557
|
+
(lshift ValueRegs (lower_shl128 val amt))
|
1558
|
+
(rshift ValueRegs (lower_ushr128 val neg_amt)))
|
1559
|
+
(value_regs
|
1560
|
+
(orr $I64 (value_regs_get lshift 0) (value_regs_get rshift 0))
|
1561
|
+
(orr $I64 (value_regs_get lshift 1) (value_regs_get rshift 1)))))
|
1562
|
+
|
1563
|
+
;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1564
|
+
|
1565
|
+
;; General 8/16-bit case.
|
1566
|
+
(rule -3 (lower (has_type (fits_in_16 ty) (rotr x y)))
|
1567
|
+
(small_rotr ty (put_in_reg_zext32 x) (value_regs_get y 0)))
|
1568
|
+
|
1569
|
+
;; General 32-bit case.
|
1570
|
+
(rule -1 (lower (has_type $I32 (rotr x y)))
|
1571
|
+
(a64_rotr $I32 x (value_regs_get y 0)))
|
1572
|
+
|
1573
|
+
;; General 64-bit case.
|
1574
|
+
(rule -1 (lower (has_type $I64 (rotr x y)))
|
1575
|
+
(a64_rotr $I64 x (value_regs_get y 0)))
|
1576
|
+
|
1577
|
+
;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
|
1578
|
+
(rule -2 (lower (has_type (fits_in_16 ty) (rotr x (iconst k))))
|
1579
|
+
(if-let n (imm_shift_from_imm64 ty k))
|
1580
|
+
(small_rotr_imm ty (put_in_reg_zext32 x) n))
|
1581
|
+
|
1582
|
+
;; Specialization for the 32-bit case when the rotation amount is an immediate.
|
1583
|
+
(rule (lower (has_type $I32 (rotr x (iconst k))))
|
1584
|
+
(if-let n (imm_shift_from_imm64 $I32 k))
|
1585
|
+
(a64_rotr_imm $I32 x n))
|
1586
|
+
|
1587
|
+
;; Specialization for the 64-bit case when the rotation amount is an immediate.
|
1588
|
+
(rule (lower (has_type $I64 (rotr x (iconst k))))
|
1589
|
+
(if-let n (imm_shift_from_imm64 $I64 k))
|
1590
|
+
(a64_rotr_imm $I64 x n))
|
1591
|
+
|
1592
|
+
;; For a < 32-bit rotate-right, we synthesize this as:
|
1593
|
+
;;
|
1594
|
+
;; rotr rd, val, amt
|
1595
|
+
;;
|
1596
|
+
;; =>
|
1597
|
+
;;
|
1598
|
+
;; and masked_amt, amt, <bitwidth - 1>
|
1599
|
+
;; sub tmp_sub, masked_amt, <bitwidth>
|
1600
|
+
;; sub neg_amt, zero, tmp_sub ; neg
|
1601
|
+
;; lsr val_rshift, val, masked_amt
|
1602
|
+
;; lsl val_lshift, val, neg_amt
|
1603
|
+
;; orr rd, val_lshift val_rshift
|
1604
|
+
(decl small_rotr (Type Reg Reg) Reg)
|
1605
|
+
(rule (small_rotr ty val amt)
|
1606
|
+
(let ((masked_amt Reg (and_imm $I32 amt (rotr_mask ty)))
|
1607
|
+
(tmp_sub Reg (sub_imm $I32 masked_amt (u8_into_imm12 (ty_bits ty))))
|
1608
|
+
(neg_amt Reg (sub $I32 (zero_reg) tmp_sub))
|
1609
|
+
(val_rshift Reg (lsr $I32 val masked_amt))
|
1610
|
+
(val_lshift Reg (lsl $I32 val neg_amt)))
|
1611
|
+
(orr $I32 val_lshift val_rshift)))
|
1612
|
+
|
1613
|
+
(decl rotr_mask (Type) ImmLogic)
|
1614
|
+
(extern constructor rotr_mask rotr_mask)
|
1615
|
+
|
1616
|
+
;; For a constant amount, we can instead do:
|
1617
|
+
;;
|
1618
|
+
;; rotr rd, val, #amt
|
1619
|
+
;;
|
1620
|
+
;; =>
|
1621
|
+
;;
|
1622
|
+
;; lsr val_rshift, val, #<amt>
|
1623
|
+
;; lsl val_lshift, val, <bitwidth - amt>
|
1624
|
+
;; orr rd, val_lshift, val_rshift
|
1625
|
+
(decl small_rotr_imm (Type Reg ImmShift) Reg)
|
1626
|
+
(rule (small_rotr_imm ty val amt)
|
1627
|
+
(let ((val_rshift Reg (lsr_imm $I32 val amt))
|
1628
|
+
(val_lshift Reg (lsl_imm $I32 val (rotr_opposite_amount ty amt))))
|
1629
|
+
(orr $I32 val_lshift val_rshift)))
|
1630
|
+
|
1631
|
+
(decl rotr_opposite_amount (Type ImmShift) ImmShift)
|
1632
|
+
(extern constructor rotr_opposite_amount rotr_opposite_amount)
|
1633
|
+
|
1634
|
+
;; General 128-bit case.
|
1635
|
+
;;
|
1636
|
+
;; TODO: much better codegen is possible with a constant amount.
|
1637
|
+
(rule (lower (has_type $I128 (rotr x y)))
|
1638
|
+
(let ((val ValueRegs x)
|
1639
|
+
(amt Reg (value_regs_get y 0))
|
1640
|
+
(neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
|
1641
|
+
(rshift ValueRegs (lower_ushr128 val amt))
|
1642
|
+
(lshift ValueRegs (lower_shl128 val neg_amt))
|
1643
|
+
(hi Reg (orr $I64 (value_regs_get rshift 1) (value_regs_get lshift 1)))
|
1644
|
+
(lo Reg (orr $I64 (value_regs_get rshift 0) (value_regs_get lshift 0))))
|
1645
|
+
(value_regs lo hi)))
|
1646
|
+
|
1647
|
+
;;;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1648
|
+
|
1649
|
+
;; Reversing an 8-bit value with a 32-bit bitrev instruction will place
|
1650
|
+
;; the reversed result in the highest 8 bits, so we need to shift them down into
|
1651
|
+
;; place.
|
1652
|
+
(rule (lower (has_type $I8 (bitrev x)))
|
1653
|
+
(lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 24)))
|
1654
|
+
|
1655
|
+
;; Reversing an 16-bit value with a 32-bit bitrev instruction will place
|
1656
|
+
;; the reversed result in the highest 16 bits, so we need to shift them down into
|
1657
|
+
;; place.
|
1658
|
+
(rule (lower (has_type $I16 (bitrev x)))
|
1659
|
+
(lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 16)))
|
1660
|
+
|
1661
|
+
(rule (lower (has_type $I128 (bitrev x)))
|
1662
|
+
(let ((val ValueRegs x)
|
1663
|
+
(lo_rev Reg (rbit $I64 (value_regs_get val 0)))
|
1664
|
+
(hi_rev Reg (rbit $I64 (value_regs_get val 1))))
|
1665
|
+
(value_regs hi_rev lo_rev)))
|
1666
|
+
|
1667
|
+
(rule -1 (lower (has_type ty (bitrev x)))
|
1668
|
+
(rbit ty x))
|
1669
|
+
|
1670
|
+
|
1671
|
+
;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1672
|
+
|
1673
|
+
(rule (lower (has_type $I8 (clz x)))
|
1674
|
+
(sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 24)))
|
1675
|
+
|
1676
|
+
(rule (lower (has_type $I16 (clz x)))
|
1677
|
+
(sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 16)))
|
1678
|
+
|
1679
|
+
(rule (lower (has_type $I128 (clz x)))
|
1680
|
+
(lower_clz128 x))
|
1681
|
+
|
1682
|
+
(rule -1 (lower (has_type ty (clz x)))
|
1683
|
+
(a64_clz ty x))
|
1684
|
+
|
1685
|
+
;; clz hi_clz, hi
|
1686
|
+
;; clz lo_clz, lo
|
1687
|
+
;; lsr tmp, hi_clz, #6
|
1688
|
+
;; madd dst_lo, lo_clz, tmp, hi_clz
|
1689
|
+
;; mov dst_hi, 0
|
1690
|
+
(decl lower_clz128 (ValueRegs) ValueRegs)
|
1691
|
+
(rule (lower_clz128 val)
|
1692
|
+
(let ((hi_clz Reg (a64_clz $I64 (value_regs_get val 1)))
|
1693
|
+
(lo_clz Reg (a64_clz $I64 (value_regs_get val 0)))
|
1694
|
+
(tmp Reg (lsr_imm $I64 hi_clz (imm_shift_from_u8 6))))
|
1695
|
+
(value_regs (madd $I64 lo_clz tmp hi_clz) (imm $I64 (ImmExtend.Zero) 0))))
|
1696
|
+
|
1697
|
+
;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1698
|
+
|
1699
|
+
;; Note that all `ctz` instructions are implemented by reversing the bits and
|
1700
|
+
;; then using a `clz` instruction since the tail zeros are the same as the
|
1701
|
+
;; leading zeros of the reversed value.
|
1702
|
+
|
1703
|
+
(rule (lower (has_type $I8 (ctz x)))
|
1704
|
+
(a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x800000))))
|
1705
|
+
|
1706
|
+
(rule (lower (has_type $I16 (ctz x)))
|
1707
|
+
(a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x8000))))
|
1708
|
+
|
1709
|
+
(rule (lower (has_type $I128 (ctz x)))
|
1710
|
+
(let ((val ValueRegs x)
|
1711
|
+
(lo Reg (rbit $I64 (value_regs_get val 0)))
|
1712
|
+
(hi Reg (rbit $I64 (value_regs_get val 1))))
|
1713
|
+
(lower_clz128 (value_regs hi lo))))
|
1714
|
+
|
1715
|
+
(rule -1 (lower (has_type ty (ctz x)))
|
1716
|
+
(a64_clz ty (rbit ty x)))
|
1717
|
+
|
1718
|
+
;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1719
|
+
|
1720
|
+
(rule (lower (has_type $I8 (cls x)))
|
1721
|
+
(sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 24)))
|
1722
|
+
|
1723
|
+
(rule (lower (has_type $I16 (cls x)))
|
1724
|
+
(sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 16)))
|
1725
|
+
|
1726
|
+
;; cls lo_cls, lo
|
1727
|
+
;; cls hi_cls, hi
|
1728
|
+
;; eon sign_eq_eor, hi, lo
|
1729
|
+
;; lsr sign_eq, sign_eq_eor, #63
|
1730
|
+
;; madd lo_sign_bits, out_lo, sign_eq, sign_eq
|
1731
|
+
;; cmp hi_cls, #63
|
1732
|
+
;; csel maybe_lo, lo_sign_bits, xzr, eq
|
1733
|
+
;; add out_lo, maybe_lo, hi_cls
|
1734
|
+
;; mov out_hi, 0
|
1735
|
+
(rule (lower (has_type $I128 (cls x)))
|
1736
|
+
(let ((val ValueRegs x)
|
1737
|
+
(lo Reg (value_regs_get val 0))
|
1738
|
+
(hi Reg (value_regs_get val 1))
|
1739
|
+
(lo_cls Reg (a64_cls $I64 lo))
|
1740
|
+
(hi_cls Reg (a64_cls $I64 hi))
|
1741
|
+
(sign_eq_eon Reg (eon $I64 hi lo))
|
1742
|
+
(sign_eq Reg (lsr_imm $I64 sign_eq_eon (imm_shift_from_u8 63)))
|
1743
|
+
(lo_sign_bits Reg (madd $I64 lo_cls sign_eq sign_eq))
|
1744
|
+
(maybe_lo Reg (with_flags_reg
|
1745
|
+
(cmp64_imm hi_cls (u8_into_imm12 63))
|
1746
|
+
(csel (Cond.Eq) lo_sign_bits (zero_reg)))))
|
1747
|
+
(value_regs (add $I64 maybe_lo hi_cls) (imm $I64 (ImmExtend.Zero) 0))))
|
1748
|
+
|
1749
|
+
(rule -1 (lower (has_type ty (cls x)))
|
1750
|
+
(a64_cls ty x))
|
1751
|
+
|
1752
|
+
;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1753
|
+
|
1754
|
+
(rule (lower (has_type $I16 (bswap x)))
|
1755
|
+
(a64_rev16 $I16 x))
|
1756
|
+
|
1757
|
+
(rule (lower (has_type $I32 (bswap x)))
|
1758
|
+
(a64_rev32 $I32 x))
|
1759
|
+
|
1760
|
+
(rule (lower (has_type $I64 (bswap x)))
|
1761
|
+
(a64_rev64 $I64 x))
|
1762
|
+
|
1763
|
+
(rule (lower (has_type $I128 (bswap x)))
|
1764
|
+
(value_regs
|
1765
|
+
(a64_rev64 $I64 (value_regs_get x 1))
|
1766
|
+
(a64_rev64 $I64 (value_regs_get x 0))))
|
1767
|
+
|
1768
|
+
;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1769
|
+
|
1770
|
+
;; Bmask tests the value against zero, and uses `csetm` to assert the result.
|
1771
|
+
(rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
|
1772
|
+
(lower_bmask out_ty in_ty x))
|
1773
|
+
|
1774
|
+
;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1775
|
+
|
1776
|
+
;; The implementation of `popcnt` for scalar types is done by moving the value
|
1777
|
+
;; into a vector register, using the `cnt` instruction, and then collating the
|
1778
|
+
;; result back into a normal register.
|
1779
|
+
;;
|
1780
|
+
;; The general sequence emitted here is
|
1781
|
+
;;
|
1782
|
+
;; fmov tmp, in_lo
|
1783
|
+
;; if ty == i128:
|
1784
|
+
;; mov tmp.d[1], in_hi
|
1785
|
+
;;
|
1786
|
+
;; cnt tmp.16b, tmp.16b / cnt tmp.8b, tmp.8b
|
1787
|
+
;; addv tmp, tmp.16b / addv tmp, tmp.8b / addp tmp.8b, tmp.8b, tmp.8b / (no instruction for 8-bit inputs)
|
1788
|
+
;;
|
1789
|
+
;; umov out_lo, tmp.b[0]
|
1790
|
+
;; if ty == i128:
|
1791
|
+
;; mov out_hi, 0
|
1792
|
+
|
1793
|
+
(rule (lower (has_type $I8 (popcnt x)))
|
1794
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1795
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8))))
|
1796
|
+
(mov_from_vec nbits 0 (ScalarSize.Size8))))
|
1797
|
+
|
1798
|
+
;; Note that this uses `addp` instead of `addv` as it's usually cheaper.
|
1799
|
+
(rule (lower (has_type $I16 (popcnt x)))
|
1800
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1801
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1802
|
+
(added Reg (addp nbits nbits (VectorSize.Size8x8))))
|
1803
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1804
|
+
|
1805
|
+
(rule (lower (has_type $I32 (popcnt x)))
|
1806
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
|
1807
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1808
|
+
(added Reg (addv nbits (VectorSize.Size8x8))))
|
1809
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1810
|
+
|
1811
|
+
(rule (lower (has_type $I64 (popcnt x)))
|
1812
|
+
(let ((tmp Reg (mov_to_fpu x (ScalarSize.Size64)))
|
1813
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
|
1814
|
+
(added Reg (addv nbits (VectorSize.Size8x8))))
|
1815
|
+
(mov_from_vec added 0 (ScalarSize.Size8))))
|
1816
|
+
|
1817
|
+
(rule (lower (has_type $I128 (popcnt x)))
|
1818
|
+
(let ((val ValueRegs x)
|
1819
|
+
(tmp_half Reg (mov_to_fpu (value_regs_get val 0) (ScalarSize.Size64)))
|
1820
|
+
(tmp Reg (mov_to_vec tmp_half (value_regs_get val 1) 1 (VectorSize.Size64x2)))
|
1821
|
+
(nbits Reg (vec_cnt tmp (VectorSize.Size8x16)))
|
1822
|
+
(added Reg (addv nbits (VectorSize.Size8x16))))
|
1823
|
+
(value_regs (mov_from_vec added 0 (ScalarSize.Size8)) (imm $I64 (ImmExtend.Zero) 0))))
|
1824
|
+
|
1825
|
+
(rule (lower (has_type $I8X16 (popcnt x)))
|
1826
|
+
(vec_cnt x (VectorSize.Size8x16)))
|
1827
|
+
|
1828
|
+
;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1829
|
+
|
1830
|
+
(rule (lower (has_type ty (bitselect c x y)))
|
1831
|
+
(if (ty_int_ref_scalar_64 ty))
|
1832
|
+
(let ((tmp1 Reg (and_reg ty x c))
|
1833
|
+
(tmp2 Reg (bic ty y c)))
|
1834
|
+
(orr ty tmp1 tmp2)))
|
1835
|
+
|
1836
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (bitselect c x y)))
|
1837
|
+
(bsl ty c x y))
|
1838
|
+
|
1839
|
+
;;;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1840
|
+
|
1841
|
+
;; T -> I{64,32,16,8}: We can simply pass through the value: values
|
1842
|
+
;; are always stored with high bits undefined, so we can just leave
|
1843
|
+
;; them be.
|
1844
|
+
(rule (lower (has_type ty (ireduce src)))
|
1845
|
+
(if (ty_int_ref_scalar_64 ty))
|
1846
|
+
(value_regs_get src 0))
|
1847
|
+
|
1848
|
+
;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1849
|
+
|
1850
|
+
(rule 4 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
|
1851
|
+
(if (zero_value y))
|
1852
|
+
(let ((rn Reg x)
|
1853
|
+
(vec_size VectorSize (vector_size ty)))
|
1854
|
+
(value_reg (not (fcmeq0 rn vec_size) vec_size))))
|
1855
|
+
|
1856
|
+
(rule 3 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
|
1857
|
+
(if (zero_value y))
|
1858
|
+
(let ((rn Reg x)
|
1859
|
+
(vec_size VectorSize (vector_size ty)))
|
1860
|
+
(value_reg (float_cmp_zero cond rn vec_size))))
|
1861
|
+
|
1862
|
+
(rule 2 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
|
1863
|
+
(if (zero_value x))
|
1864
|
+
(let ((rn Reg y)
|
1865
|
+
(vec_size VectorSize (vector_size ty)))
|
1866
|
+
(value_reg (not (fcmeq0 rn vec_size) vec_size))))
|
1867
|
+
|
1868
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
|
1869
|
+
(if (zero_value x))
|
1870
|
+
(let ((rn Reg y)
|
1871
|
+
(vec_size VectorSize (vector_size ty)))
|
1872
|
+
(value_reg (float_cmp_zero_swap cond rn vec_size))))
|
1873
|
+
|
1874
|
+
(rule 0 (lower (has_type out_ty
|
1875
|
+
(fcmp cond x @ (value_type (ty_scalar_float in_ty)) y)))
|
1876
|
+
(with_flags (fpu_cmp (scalar_size in_ty) x y)
|
1877
|
+
(materialize_bool_result (fp_cond_code cond))))
|
1878
|
+
|
1879
|
+
(rule -1 (lower (has_type out_ty (fcmp cond x @ (value_type in_ty) y)))
|
1880
|
+
(if (ty_vector_float in_ty))
|
1881
|
+
(vec_cmp x y in_ty (fp_cond_code cond)))
|
1882
|
+
|
1883
|
+
;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1884
|
+
|
1885
|
+
(rule 3 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
|
1886
|
+
(if (zero_value y))
|
1887
|
+
(let ((rn Reg x)
|
1888
|
+
(vec_size VectorSize (vector_size ty)))
|
1889
|
+
(value_reg (not (cmeq0 rn vec_size) vec_size))))
|
1890
|
+
|
1891
|
+
(rule 2 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
|
1892
|
+
(if (zero_value y))
|
1893
|
+
(let ((rn Reg x)
|
1894
|
+
(vec_size VectorSize (vector_size ty)))
|
1895
|
+
(value_reg (int_cmp_zero cond rn vec_size))))
|
1896
|
+
|
1897
|
+
(rule 1 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
|
1898
|
+
(if (zero_value x))
|
1899
|
+
(let ((rn Reg y)
|
1900
|
+
(vec_size VectorSize (vector_size ty)))
|
1901
|
+
(value_reg (not (cmeq0 rn vec_size) vec_size))))
|
1902
|
+
|
1903
|
+
(rule 0 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
|
1904
|
+
(if (zero_value x))
|
1905
|
+
(let ((rn Reg y)
|
1906
|
+
(vec_size VectorSize (vector_size ty)))
|
1907
|
+
(value_reg (int_cmp_zero_swap cond rn vec_size))))
|
1908
|
+
|
1909
|
+
(rule -1 (lower (icmp cond x @ (value_type in_ty) y))
|
1910
|
+
(lower_icmp_into_reg cond x y in_ty $I8))
|
1911
|
+
|
1912
|
+
;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1913
|
+
|
1914
|
+
(rule (lower (trap trap_code))
|
1915
|
+
(side_effect (udf trap_code)))
|
1916
|
+
|
1917
|
+
;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1918
|
+
|
1919
|
+
(rule (lower (resumable_trap trap_code))
|
1920
|
+
(side_effect (udf trap_code)))
|
1921
|
+
|
1922
|
+
;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1923
|
+
|
1924
|
+
(rule (lower (has_type ty
|
1925
|
+
(select (maybe_uextend (icmp cc
|
1926
|
+
x @ (value_type in_ty)
|
1927
|
+
y))
|
1928
|
+
rn
|
1929
|
+
rm)))
|
1930
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty)))
|
1931
|
+
(lower_select (flags_and_cc_flags comparison)
|
1932
|
+
(cond_code (flags_and_cc_cc comparison))
|
1933
|
+
ty
|
1934
|
+
rn
|
1935
|
+
rm)))
|
1936
|
+
|
1937
|
+
(rule (lower (has_type ty
|
1938
|
+
(select (maybe_uextend (fcmp cc x @ (value_type in_ty) y))
|
1939
|
+
rn
|
1940
|
+
rm)))
|
1941
|
+
(let ((cond Cond (fp_cond_code cc)))
|
1942
|
+
(lower_select
|
1943
|
+
(fpu_cmp (scalar_size in_ty) x y)
|
1944
|
+
cond ty rn rm)))
|
1945
|
+
|
1946
|
+
(rule -1 (lower (has_type ty (select rcond @ (value_type $I8) rn rm)))
|
1947
|
+
(let ((rcond Reg rcond))
|
1948
|
+
(lower_select
|
1949
|
+
(tst_imm $I32 rcond (u64_into_imm_logic $I32 255))
|
1950
|
+
(Cond.Ne) ty rn rm)))
|
1951
|
+
|
1952
|
+
(rule -2 (lower (has_type ty (select rcond @ (value_type (fits_in_32 _)) rn rm)))
|
1953
|
+
(let ((rcond Reg (put_in_reg_zext32 rcond)))
|
1954
|
+
(lower_select
|
1955
|
+
(cmp (OperandSize.Size32) rcond (zero_reg))
|
1956
|
+
(Cond.Ne) ty rn rm)))
|
1957
|
+
|
1958
|
+
(rule -3 (lower (has_type ty (select rcond @ (value_type (fits_in_64 _)) rn rm)))
|
1959
|
+
(let ((rcond Reg (put_in_reg_zext64 rcond)))
|
1960
|
+
(lower_select
|
1961
|
+
(cmp (OperandSize.Size64) rcond (zero_reg))
|
1962
|
+
(Cond.Ne) ty rn rm)))
|
1963
|
+
|
1964
|
+
(rule -4 (lower (has_type ty (select rcond @ (value_type $I128) rn rm)))
|
1965
|
+
(let ((c ValueRegs (put_in_regs rcond))
|
1966
|
+
(c_lo Reg (value_regs_get c 0))
|
1967
|
+
(c_hi Reg (value_regs_get c 1))
|
1968
|
+
(rt Reg (orr $I64 c_lo c_hi)))
|
1969
|
+
(lower_select
|
1970
|
+
(cmp (OperandSize.Size64) rt (zero_reg))
|
1971
|
+
(Cond.Ne) ty rn rm)))
|
1972
|
+
|
1973
|
+
;;;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1974
|
+
|
1975
|
+
(rule (lower (has_type ty
|
1976
|
+
(select_spectre_guard (maybe_uextend (icmp cc x @ (value_type in_ty) y))
|
1977
|
+
if_true
|
1978
|
+
if_false)))
|
1979
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty))
|
1980
|
+
(dst ValueRegs (lower_select
|
1981
|
+
(flags_and_cc_flags comparison)
|
1982
|
+
(cond_code (flags_and_cc_cc comparison))
|
1983
|
+
ty
|
1984
|
+
if_true
|
1985
|
+
if_false))
|
1986
|
+
(_ InstOutput (side_effect (csdb))))
|
1987
|
+
dst))
|
1988
|
+
|
1989
|
+
(rule -1 (lower (has_type ty (select_spectre_guard rcond @ (value_type (fits_in_64 _)) rn rm)))
|
1990
|
+
(let ((rcond Reg (put_in_reg_zext64 rcond)))
|
1991
|
+
(lower_select
|
1992
|
+
(cmp (OperandSize.Size64) rcond (zero_reg))
|
1993
|
+
(Cond.Ne) ty rn rm)))
|
1994
|
+
|
1995
|
+
(rule -2 (lower (has_type ty (select_spectre_guard rcond @ (value_type $I128) rn rm)))
|
1996
|
+
(let ((c ValueRegs (put_in_regs rcond))
|
1997
|
+
(c_lo Reg (value_regs_get c 0))
|
1998
|
+
(c_hi Reg (value_regs_get c 1))
|
1999
|
+
(rt Reg (orr $I64 c_lo c_hi)))
|
2000
|
+
(lower_select
|
2001
|
+
(cmp (OperandSize.Size64) rt (zero_reg))
|
2002
|
+
(Cond.Ne) ty rn rm)))
|
2003
|
+
|
2004
|
+
;;;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2005
|
+
|
2006
|
+
(rule (lower (has_type (ty_vec128 _) (vconst (u128_from_constant x))))
|
2007
|
+
(constant_f128 x))
|
2008
|
+
|
2009
|
+
(rule 1 (lower (has_type ty (vconst (u64_from_constant x))))
|
2010
|
+
(if (ty_vec64 ty))
|
2011
|
+
(constant_f64 x))
|
2012
|
+
|
2013
|
+
;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2014
|
+
|
2015
|
+
(rule -1 (lower (has_type ty (splat x @ (value_type in_ty))))
|
2016
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2017
|
+
(vec_dup x (vector_size ty)))
|
2018
|
+
|
2019
|
+
(rule -2 (lower (has_type ty (splat x @ (value_type (ty_scalar_float _)))))
|
2020
|
+
(vec_dup_from_fpu x (vector_size ty) 0))
|
2021
|
+
|
2022
|
+
(rule (lower (has_type ty (splat (f32const (u32_from_ieee32 n)))))
|
2023
|
+
(splat_const n (vector_size ty)))
|
2024
|
+
|
2025
|
+
(rule (lower (has_type ty (splat (f64const (u64_from_ieee64 n)))))
|
2026
|
+
(splat_const n (vector_size ty)))
|
2027
|
+
|
2028
|
+
(rule (lower (has_type ty (splat (iconst (u64_from_imm64 n)))))
|
2029
|
+
(splat_const n (vector_size ty)))
|
2030
|
+
|
2031
|
+
(rule (lower (has_type ty (splat (ireduce (iconst (u64_from_imm64 n))))))
|
2032
|
+
(splat_const n (vector_size ty)))
|
2033
|
+
|
2034
|
+
(rule (lower (has_type ty (splat x @ (load flags _ _))))
|
2035
|
+
(if-let mem_op (is_sinkable_inst x))
|
2036
|
+
(let ((addr Reg (sink_load_into_addr (lane_type ty) mem_op)))
|
2037
|
+
(ld1r addr (vector_size ty) flags)))
|
2038
|
+
|
2039
|
+
;;;; Rules for `AtomicLoad` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2040
|
+
(rule (lower (has_type (valid_atomic_transaction ty) (atomic_load flags addr)))
|
2041
|
+
(load_acquire ty flags addr))
|
2042
|
+
|
2043
|
+
|
2044
|
+
;;;; Rules for `AtomicStore` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2045
|
+
(rule (lower (atomic_store flags
|
2046
|
+
src @ (value_type (valid_atomic_transaction ty))
|
2047
|
+
addr))
|
2048
|
+
(side_effect (store_release ty flags src addr)))
|
2049
|
+
|
2050
|
+
;;;; Rules for `AtomicRMW` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2051
|
+
|
2052
|
+
(rule 1 (lower (and (use_lse)
|
2053
|
+
(has_type (valid_atomic_transaction ty)
|
2054
|
+
(atomic_rmw flags (AtomicRmwOp.Add) addr src))))
|
2055
|
+
(lse_atomic_rmw (AtomicRMWOp.Add) addr src ty flags))
|
2056
|
+
(rule 1 (lower (and (use_lse)
|
2057
|
+
(has_type (valid_atomic_transaction ty)
|
2058
|
+
(atomic_rmw flags (AtomicRmwOp.Xor) addr src))))
|
2059
|
+
(lse_atomic_rmw (AtomicRMWOp.Eor) addr src ty flags))
|
2060
|
+
(rule 1 (lower (and (use_lse)
|
2061
|
+
(has_type (valid_atomic_transaction ty)
|
2062
|
+
(atomic_rmw flags (AtomicRmwOp.Or) addr src))))
|
2063
|
+
(lse_atomic_rmw (AtomicRMWOp.Set) addr src ty flags))
|
2064
|
+
(rule 1 (lower (and (use_lse)
|
2065
|
+
(has_type (valid_atomic_transaction ty)
|
2066
|
+
(atomic_rmw flags (AtomicRmwOp.Smax) addr src))))
|
2067
|
+
(lse_atomic_rmw (AtomicRMWOp.Smax) addr src ty flags))
|
2068
|
+
(rule 1 (lower (and (use_lse)
|
2069
|
+
(has_type (valid_atomic_transaction ty)
|
2070
|
+
(atomic_rmw flags (AtomicRmwOp.Smin) addr src))))
|
2071
|
+
(lse_atomic_rmw (AtomicRMWOp.Smin) addr src ty flags))
|
2072
|
+
(rule 1 (lower (and (use_lse)
|
2073
|
+
(has_type (valid_atomic_transaction ty)
|
2074
|
+
(atomic_rmw flags (AtomicRmwOp.Umax) addr src))))
|
2075
|
+
(lse_atomic_rmw (AtomicRMWOp.Umax) addr src ty flags))
|
2076
|
+
(rule 1 (lower (and (use_lse)
|
2077
|
+
(has_type (valid_atomic_transaction ty)
|
2078
|
+
(atomic_rmw flags (AtomicRmwOp.Umin) addr src))))
|
2079
|
+
(lse_atomic_rmw (AtomicRMWOp.Umin) addr src ty flags))
|
2080
|
+
(rule 1 (lower (and (use_lse)
|
2081
|
+
(has_type (valid_atomic_transaction ty)
|
2082
|
+
(atomic_rmw flags (AtomicRmwOp.Sub) addr src))))
|
2083
|
+
(lse_atomic_rmw (AtomicRMWOp.Add) addr (sub ty (zero_reg) src) ty flags))
|
2084
|
+
(rule 1 (lower (and (use_lse)
|
2085
|
+
(has_type (valid_atomic_transaction ty)
|
2086
|
+
(atomic_rmw flags (AtomicRmwOp.And) addr src))))
|
2087
|
+
(lse_atomic_rmw (AtomicRMWOp.Clr) addr (eon ty src (zero_reg)) ty flags))
|
2088
|
+
|
2089
|
+
|
2090
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2091
|
+
(atomic_rmw flags (AtomicRmwOp.Add) addr src)))
|
2092
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Add) addr src ty flags))
|
2093
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2094
|
+
(atomic_rmw flags (AtomicRmwOp.Sub) addr src)))
|
2095
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Sub) addr src ty flags))
|
2096
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2097
|
+
(atomic_rmw flags (AtomicRmwOp.And) addr src)))
|
2098
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.And) addr src ty flags))
|
2099
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2100
|
+
(atomic_rmw flags (AtomicRmwOp.Nand) addr src)))
|
2101
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Nand) addr src ty flags))
|
2102
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2103
|
+
(atomic_rmw flags (AtomicRmwOp.Or) addr src)))
|
2104
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Orr) addr src ty flags))
|
2105
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2106
|
+
(atomic_rmw flags (AtomicRmwOp.Xor) addr src)))
|
2107
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Eor) addr src ty flags))
|
2108
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2109
|
+
(atomic_rmw flags (AtomicRmwOp.Smin) addr src)))
|
2110
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Smin) addr src ty flags))
|
2111
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2112
|
+
(atomic_rmw flags (AtomicRmwOp.Smax) addr src)))
|
2113
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Smax) addr src ty flags))
|
2114
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2115
|
+
(atomic_rmw flags (AtomicRmwOp.Umin) addr src)))
|
2116
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Umin) addr src ty flags))
|
2117
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2118
|
+
(atomic_rmw flags (AtomicRmwOp.Umax) addr src)))
|
2119
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Umax) addr src ty flags))
|
2120
|
+
(rule (lower (has_type (valid_atomic_transaction ty)
|
2121
|
+
(atomic_rmw flags (AtomicRmwOp.Xchg) addr src)))
|
2122
|
+
(atomic_rmw_loop (AtomicRMWLoopOp.Xchg) addr src ty flags))
|
2123
|
+
|
2124
|
+
;;;; Rules for `AtomicCAS` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2125
|
+
(rule 1 (lower (and (use_lse)
|
2126
|
+
(has_type (valid_atomic_transaction ty)
|
2127
|
+
(atomic_cas flags addr src1 src2))))
|
2128
|
+
(lse_atomic_cas addr src1 src2 ty flags))
|
2129
|
+
|
2130
|
+
(rule (lower (and (has_type (valid_atomic_transaction ty)
|
2131
|
+
(atomic_cas flags addr src1 src2))))
|
2132
|
+
(atomic_cas_loop addr src1 src2 ty flags))
|
2133
|
+
|
2134
|
+
;;;; Rules for 'fvdemote' ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2135
|
+
(rule (lower (fvdemote x))
|
2136
|
+
(fcvtn x (ScalarSize.Size32)))
|
2137
|
+
|
2138
|
+
|
2139
|
+
;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2140
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
|
2141
|
+
(if (zero_value y))
|
2142
|
+
(sqxtn x (lane_size ty)))
|
2143
|
+
|
2144
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (snarrow x y)))
|
2145
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2146
|
+
(sqxtn dst (lane_size ty))))
|
2147
|
+
|
2148
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
|
2149
|
+
(let ((low_half Reg (sqxtn x (lane_size ty)))
|
2150
|
+
(result Reg (sqxtn2 low_half y (lane_size ty))))
|
2151
|
+
result))
|
2152
|
+
|
2153
|
+
|
2154
|
+
;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2155
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
|
2156
|
+
(if (zero_value y))
|
2157
|
+
(sqxtun x (lane_size ty)))
|
2158
|
+
|
2159
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (unarrow x y)))
|
2160
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2161
|
+
(sqxtun dst (lane_size ty))))
|
2162
|
+
|
2163
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
|
2164
|
+
(let ((low_half Reg (sqxtun x (lane_size ty)))
|
2165
|
+
(result Reg (sqxtun2 low_half y (lane_size ty))))
|
2166
|
+
result))
|
2167
|
+
|
2168
|
+
|
2169
|
+
;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2170
|
+
|
2171
|
+
(rule 1 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
|
2172
|
+
(if (zero_value y))
|
2173
|
+
(uqxtn x (lane_size ty)))
|
2174
|
+
|
2175
|
+
(rule 2 (lower (has_type (ty_vec64_int ty) (uunarrow x y)))
|
2176
|
+
(let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
|
2177
|
+
(uqxtn dst (lane_size ty))))
|
2178
|
+
|
2179
|
+
(rule 0 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
|
2180
|
+
(let ((low_half Reg (uqxtn x (lane_size ty)))
|
2181
|
+
(result Reg (uqxtn2 low_half y (lane_size ty))))
|
2182
|
+
result))
|
2183
|
+
|
2184
|
+
;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2185
|
+
|
2186
|
+
(rule (lower (has_type ty (swiden_low x)))
|
2187
|
+
(vec_extend (VecExtendOp.Sxtl) x $false (lane_size ty)))
|
2188
|
+
|
2189
|
+
;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2190
|
+
|
2191
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (swiden_high x)))
|
2192
|
+
(vec_extend (VecExtendOp.Sxtl) x $true (lane_size ty)))
|
2193
|
+
|
2194
|
+
(rule (lower (has_type ty (swiden_high x)))
|
2195
|
+
(if (ty_vec64 ty))
|
2196
|
+
(let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
|
2197
|
+
(vec_extend (VecExtendOp.Sxtl) tmp $false (lane_size ty))))
|
2198
|
+
|
2199
|
+
;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2200
|
+
|
2201
|
+
(rule (lower (has_type ty (uwiden_low x)))
|
2202
|
+
(vec_extend (VecExtendOp.Uxtl) x $false (lane_size ty)))
|
2203
|
+
|
2204
|
+
;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2205
|
+
|
2206
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (uwiden_high x)))
|
2207
|
+
(vec_extend (VecExtendOp.Uxtl) x $true (lane_size ty)))
|
2208
|
+
|
2209
|
+
(rule (lower (has_type ty (uwiden_high x)))
|
2210
|
+
(if (ty_vec64 ty))
|
2211
|
+
(let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
|
2212
|
+
(vec_extend (VecExtendOp.Uxtl) tmp $false (lane_size ty))))
|
2213
|
+
|
2214
|
+
;;;; Rules for `Fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2215
|
+
|
2216
|
+
(rule (lower (fence))
|
2217
|
+
(side_effect (aarch64_fence)))
|
2218
|
+
|
2219
|
+
;;;; Rules for `IsNull` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2220
|
+
|
2221
|
+
(rule (lower (is_null x @ (value_type ty)))
|
2222
|
+
(with_flags (cmp_imm (operand_size ty) x (u8_into_imm12 0))
|
2223
|
+
(materialize_bool_result (Cond.Eq))))
|
2224
|
+
|
2225
|
+
;;;; Rules for `IsInvalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2226
|
+
|
2227
|
+
(rule (lower (is_invalid x @ (value_type ty)))
|
2228
|
+
(with_flags (cmn_imm (operand_size ty) x (u8_into_imm12 1))
|
2229
|
+
(materialize_bool_result (Cond.Eq))))
|
2230
|
+
|
2231
|
+
;;;; Rules for `Debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2232
|
+
|
2233
|
+
(rule (lower (debugtrap))
|
2234
|
+
(side_effect (brk)))
|
2235
|
+
|
2236
|
+
;;;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2237
|
+
|
2238
|
+
(rule (lower (func_addr (func_ref_data _ extname _)))
|
2239
|
+
(load_ext_name (box_external_name extname) 0))
|
2240
|
+
|
2241
|
+
;;;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2242
|
+
|
2243
|
+
(rule (lower (symbol_value (symbol_value_data extname _ offset)))
|
2244
|
+
(load_ext_name (box_external_name extname) offset))
|
2245
|
+
|
2246
|
+
;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;;
|
2247
|
+
|
2248
|
+
(rule (lower (get_frame_pointer))
|
2249
|
+
(aarch64_fp))
|
2250
|
+
|
2251
|
+
(rule (lower (get_stack_pointer))
|
2252
|
+
(aarch64_sp))
|
2253
|
+
|
2254
|
+
(rule (lower (get_return_address))
|
2255
|
+
(aarch64_link))
|
2256
|
+
|
2257
|
+
;;;; Rules for calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2258
|
+
|
2259
|
+
(rule (lower (call (func_ref_data sig_ref extname dist) inputs))
|
2260
|
+
(gen_call sig_ref extname dist inputs))
|
2261
|
+
|
2262
|
+
(rule (lower (call_indirect sig_ref val inputs))
|
2263
|
+
(gen_call_indirect sig_ref val inputs))
|
2264
|
+
|
2265
|
+
;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2266
|
+
|
2267
|
+
;; N.B.: the Ret itself is generated by the ABI.
|
2268
|
+
(rule (lower (return args))
|
2269
|
+
(lower_return args))
|
2270
|
+
|
2271
|
+
;;;; Rules for loads ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2272
|
+
|
2273
|
+
(rule (lower
|
2274
|
+
(has_type $I8 (load flags address offset)))
|
2275
|
+
(aarch64_uload8 (amode $I8 address offset) flags))
|
2276
|
+
(rule (lower
|
2277
|
+
(has_type $I16 (load flags address offset)))
|
2278
|
+
(aarch64_uload16 (amode $I16 address offset) flags))
|
2279
|
+
(rule (lower
|
2280
|
+
(has_type $I32 (load flags address offset)))
|
2281
|
+
(aarch64_uload32 (amode $I32 address offset) flags))
|
2282
|
+
(rule (lower
|
2283
|
+
(has_type $I64 (load flags address offset)))
|
2284
|
+
(aarch64_uload64 (amode $I64 address offset) flags))
|
2285
|
+
(rule (lower
|
2286
|
+
(has_type $R64 (load flags address offset)))
|
2287
|
+
(aarch64_uload64 (amode $I64 address offset) flags))
|
2288
|
+
(rule (lower
|
2289
|
+
(has_type $F32 (load flags address offset)))
|
2290
|
+
(aarch64_fpuload32 (amode $F32 address offset) flags))
|
2291
|
+
(rule (lower
|
2292
|
+
(has_type $F64 (load flags address offset)))
|
2293
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags))
|
2294
|
+
(rule (lower
|
2295
|
+
(has_type $I128 (load flags address offset)))
|
2296
|
+
(aarch64_loadp64 (pair_amode address offset) flags))
|
2297
|
+
(rule -1 (lower
|
2298
|
+
(has_type (ty_vec64 _)
|
2299
|
+
(load flags address offset)))
|
2300
|
+
(aarch64_fpuload128 (amode $F64 address offset) flags))
|
2301
|
+
(rule -3 (lower
|
2302
|
+
(has_type (ty_vec128 _)
|
2303
|
+
(load flags address offset)))
|
2304
|
+
(aarch64_fpuload128 (amode $I8X16 address offset) flags))
|
2305
|
+
(rule -2 (lower
|
2306
|
+
(has_type (ty_dyn_vec64 _)
|
2307
|
+
(load flags address offset)))
|
2308
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags))
|
2309
|
+
(rule -4 (lower
|
2310
|
+
(has_type (ty_dyn_vec128 _)
|
2311
|
+
(load flags address offset)))
|
2312
|
+
(aarch64_fpuload128 (amode $I8X16 address offset) flags))
|
2313
|
+
|
2314
|
+
(rule (lower
|
2315
|
+
(uload8 flags address offset))
|
2316
|
+
(aarch64_uload8 (amode $I8 address offset) flags))
|
2317
|
+
(rule (lower
|
2318
|
+
(sload8 flags address offset))
|
2319
|
+
(aarch64_sload8 (amode $I8 address offset) flags))
|
2320
|
+
(rule (lower
|
2321
|
+
(uload16 flags address offset))
|
2322
|
+
(aarch64_uload16 (amode $I16 address offset) flags))
|
2323
|
+
(rule (lower
|
2324
|
+
(sload16 flags address offset))
|
2325
|
+
(aarch64_sload16 (amode $I16 address offset) flags))
|
2326
|
+
(rule (lower
|
2327
|
+
(uload32 flags address offset))
|
2328
|
+
(aarch64_uload32 (amode $I32 address offset) flags))
|
2329
|
+
(rule (lower
|
2330
|
+
(sload32 flags address offset))
|
2331
|
+
(aarch64_sload32 (amode $I32 address offset) flags))
|
2332
|
+
|
2333
|
+
(rule (lower
|
2334
|
+
(sload8x8 flags address offset))
|
2335
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2336
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2337
|
+
$false
|
2338
|
+
(ScalarSize.Size16)))
|
2339
|
+
(rule (lower
|
2340
|
+
(uload8x8 flags address offset))
|
2341
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2342
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2343
|
+
$false
|
2344
|
+
(ScalarSize.Size16)))
|
2345
|
+
(rule (lower
|
2346
|
+
(sload16x4 flags address offset))
|
2347
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2348
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2349
|
+
$false
|
2350
|
+
(ScalarSize.Size32)))
|
2351
|
+
(rule (lower
|
2352
|
+
(uload16x4 flags address offset))
|
2353
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2354
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2355
|
+
$false
|
2356
|
+
(ScalarSize.Size32)))
|
2357
|
+
(rule (lower
|
2358
|
+
(sload32x2 flags address offset))
|
2359
|
+
(vec_extend (VecExtendOp.Sxtl)
|
2360
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2361
|
+
$false
|
2362
|
+
(ScalarSize.Size64)))
|
2363
|
+
(rule (lower
|
2364
|
+
(uload32x2 flags address offset))
|
2365
|
+
(vec_extend (VecExtendOp.Uxtl)
|
2366
|
+
(aarch64_fpuload64 (amode $F64 address offset) flags)
|
2367
|
+
$false
|
2368
|
+
(ScalarSize.Size64)))
|
2369
|
+
|
2370
|
+
;;;; Rules for stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2371
|
+
|
2372
|
+
(rule (lower
|
2373
|
+
(store flags value @ (value_type $I8) address offset))
|
2374
|
+
(side_effect
|
2375
|
+
(aarch64_store8 (amode $I8 address offset) flags value)))
|
2376
|
+
(rule (lower
|
2377
|
+
(store flags value @ (value_type $I16) address offset))
|
2378
|
+
(side_effect
|
2379
|
+
(aarch64_store16 (amode $I16 address offset) flags value)))
|
2380
|
+
(rule (lower
|
2381
|
+
(store flags value @ (value_type $I32) address offset))
|
2382
|
+
(side_effect
|
2383
|
+
(aarch64_store32 (amode $I32 address offset) flags value)))
|
2384
|
+
(rule (lower
|
2385
|
+
(store flags value @ (value_type $I64) address offset))
|
2386
|
+
(side_effect
|
2387
|
+
(aarch64_store64 (amode $I64 address offset) flags value)))
|
2388
|
+
(rule (lower
|
2389
|
+
(store flags value @ (value_type $R64) address offset))
|
2390
|
+
(side_effect
|
2391
|
+
(aarch64_store64 (amode $I64 address offset) flags value)))
|
2392
|
+
|
2393
|
+
(rule (lower
|
2394
|
+
(istore8 flags value address offset))
|
2395
|
+
(side_effect
|
2396
|
+
(aarch64_store8 (amode $I8 address offset) flags value)))
|
2397
|
+
(rule (lower
|
2398
|
+
(istore16 flags value address offset))
|
2399
|
+
(side_effect
|
2400
|
+
(aarch64_store16 (amode $I16 address offset) flags value)))
|
2401
|
+
(rule (lower
|
2402
|
+
(istore32 flags value address offset))
|
2403
|
+
(side_effect
|
2404
|
+
(aarch64_store32 (amode $I32 address offset) flags value)))
|
2405
|
+
|
2406
|
+
(rule (lower
|
2407
|
+
(store flags value @ (value_type $F32) address offset))
|
2408
|
+
(side_effect
|
2409
|
+
(aarch64_fpustore32 (amode $F32 address offset) flags value)))
|
2410
|
+
(rule (lower
|
2411
|
+
(store flags value @ (value_type $F64) address offset))
|
2412
|
+
(side_effect
|
2413
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2414
|
+
|
2415
|
+
(rule (lower
|
2416
|
+
(store flags value @ (value_type $I128) address offset))
|
2417
|
+
(side_effect
|
2418
|
+
(aarch64_storep64 (pair_amode address offset) flags
|
2419
|
+
(value_regs_get value 0)
|
2420
|
+
(value_regs_get value 1))))
|
2421
|
+
|
2422
|
+
(rule -1 (lower
|
2423
|
+
(store flags value @ (value_type (ty_vec64 _)) address offset))
|
2424
|
+
(side_effect
|
2425
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2426
|
+
(rule -3 (lower
|
2427
|
+
(store flags value @ (value_type (ty_vec128 _)) address offset))
|
2428
|
+
(side_effect
|
2429
|
+
(aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
|
2430
|
+
(rule -2 (lower
|
2431
|
+
(store flags value @ (value_type (ty_dyn_vec64 _)) address offset))
|
2432
|
+
(side_effect
|
2433
|
+
(aarch64_fpustore64 (amode $F64 address offset) flags value)))
|
2434
|
+
(rule -4 (lower
|
2435
|
+
(store flags value @ (value_type (ty_dyn_vec128 _)) address offset))
|
2436
|
+
(side_effect
|
2437
|
+
(aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
|
2438
|
+
|
2439
|
+
;;; Rules for `{get,set}_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2440
|
+
|
2441
|
+
(rule (lower (get_pinned_reg))
|
2442
|
+
(mov_from_preg (preg_pinned)))
|
2443
|
+
|
2444
|
+
(rule (lower (set_pinned_reg val))
|
2445
|
+
(side_effect (write_pinned_reg val)))
|
2446
|
+
|
2447
|
+
;;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2448
|
+
|
2449
|
+
; SIMD&FP <=> SIMD&FP
|
2450
|
+
(rule 5 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type (ty_float_or_vec _)))))
|
2451
|
+
x)
|
2452
|
+
|
2453
|
+
; GPR => SIMD&FP
|
2454
|
+
(rule 4 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type in_ty))))
|
2455
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2456
|
+
(mov_to_fpu x (scalar_size in_ty)))
|
2457
|
+
|
2458
|
+
; SIMD&FP => GPR
|
2459
|
+
(rule 3 (lower (has_type out_ty (bitcast _ x @ (value_type (fits_in_64 (ty_float_or_vec _))))))
|
2460
|
+
(if (ty_int_ref_scalar_64 out_ty))
|
2461
|
+
(mov_from_vec x 0 (scalar_size out_ty)))
|
2462
|
+
|
2463
|
+
; GPR <=> GPR
|
2464
|
+
(rule 2 (lower (has_type out_ty (bitcast _ x @ (value_type in_ty))))
|
2465
|
+
(if (ty_int_ref_scalar_64 out_ty))
|
2466
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2467
|
+
x)
|
2468
|
+
(rule 1 (lower (has_type $I128 (bitcast _ x @ (value_type $I128)))) x)
|
2469
|
+
|
2470
|
+
;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2471
|
+
|
2472
|
+
;; extractlane with lane 0 can pass through the value unchanged; upper
|
2473
|
+
;; bits are undefined when a narrower type is in a wider register.
|
2474
|
+
(rule 2 (lower (has_type (ty_scalar_float _) (extractlane val (u8_from_uimm8 0))))
|
2475
|
+
val)
|
2476
|
+
|
2477
|
+
(rule 0 (lower (has_type (ty_int ty)
|
2478
|
+
(extractlane val
|
2479
|
+
(u8_from_uimm8 lane))))
|
2480
|
+
(mov_from_vec val lane (scalar_size ty)))
|
2481
|
+
|
2482
|
+
(rule 1 (lower (has_type (ty_scalar_float ty)
|
2483
|
+
(extractlane val @ (value_type vty)
|
2484
|
+
(u8_from_uimm8 lane))))
|
2485
|
+
(fpu_move_from_vec val lane (vector_size vty)))
|
2486
|
+
|
2487
|
+
;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2488
|
+
|
2489
|
+
(rule 1 (lower (insertlane vec @ (value_type vty)
|
2490
|
+
val @ (value_type (ty_int _))
|
2491
|
+
(u8_from_uimm8 lane)))
|
2492
|
+
(mov_to_vec vec val lane (vector_size vty)))
|
2493
|
+
|
2494
|
+
(rule (lower (insertlane vec @ (value_type vty)
|
2495
|
+
val @ (value_type (ty_scalar_float _))
|
2496
|
+
(u8_from_uimm8 lane)))
|
2497
|
+
(mov_vec_elem vec val lane 0 (vector_size vty)))
|
2498
|
+
|
2499
|
+
;;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2500
|
+
|
2501
|
+
(rule (lower (stack_addr stack_slot offset))
|
2502
|
+
(compute_stack_addr stack_slot offset))
|
2503
|
+
|
2504
|
+
;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2505
|
+
|
2506
|
+
;; All three sequences use one integer temporary and two vector
|
2507
|
+
;; temporaries. The shift is done early so as to give the register
|
2508
|
+
;; allocator the possibility of using the same reg for `tmp_v1` and
|
2509
|
+
;; `src_v` in the case that this is the last use of `src_v`. See
|
2510
|
+
;; https://github.com/WebAssembly/simd/pull/201 for the background and
|
2511
|
+
;; derivation of these sequences. Alternative sequences are discussed
|
2512
|
+
;; in https://github.com/bytecodealliance/wasmtime/issues/2296,
|
2513
|
+
;; although they are not used here.
|
2514
|
+
|
2515
|
+
(rule (lower (vhigh_bits vec @ (value_type $I8X16)))
|
2516
|
+
(let (
|
2517
|
+
;; Replicate the MSB of each of the 16 byte lanes across
|
2518
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2519
|
+
(shifted Reg (sshr_vec_imm vec 7 (VectorSize.Size8x16)))
|
2520
|
+
;; Bitwise-and with a mask
|
2521
|
+
;; `0x80402010_08040201_80402010_08040201` to get the bit
|
2522
|
+
;; in the proper location for each group of 8 lanes.
|
2523
|
+
(anded Reg (and_vec shifted (constant_f128 0x80402010_08040201_80402010_08040201) (VectorSize.Size8x16)))
|
2524
|
+
;; Produce a version of `anded` with upper 8 lanes and
|
2525
|
+
;; lower 8 lanes swapped.
|
2526
|
+
(anded_swapped Reg (vec_extract anded anded 8))
|
2527
|
+
;; Zip together the two; with the above this produces the lane permutation:
|
2528
|
+
;; 15 7 14 6 13 5 12 4 11 3 10 2 9 1 8 0
|
2529
|
+
(zipped Reg (zip1 anded anded_swapped (VectorSize.Size8x16)))
|
2530
|
+
;; Add 16-bit lanes together ("add across vector"), so we
|
2531
|
+
;; get, in the low 16 bits, 15+14+...+8 in the high byte
|
2532
|
+
;; and 7+6+...+0 in the low byte. This effectively puts
|
2533
|
+
;; the 16 MSBs together, giving our results.
|
2534
|
+
;;
|
2535
|
+
;; N.B.: `Size16x8` is not a typo!
|
2536
|
+
(result Reg (addv zipped (VectorSize.Size16x8))))
|
2537
|
+
(mov_from_vec result 0 (ScalarSize.Size16))))
|
2538
|
+
|
2539
|
+
(rule (lower (vhigh_bits vec @ (value_type $I16X8)))
|
2540
|
+
(let (
|
2541
|
+
;; Replicate the MSB of each of the 8 16-bit lanes across
|
2542
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2543
|
+
(shifted Reg (sshr_vec_imm vec 15 (VectorSize.Size16x8)))
|
2544
|
+
;; Bitwise-and with a mask
|
2545
|
+
;; `0x0080_0040_0020_0010_0008_0004_0002_0001` to get the
|
2546
|
+
;; bit in the proper location for each group of 4 lanes.
|
2547
|
+
(anded Reg (and_vec shifted (constant_f128 0x0080_0040_0020_0010_0008_0004_0002_0001) (VectorSize.Size16x8)))
|
2548
|
+
;; Add lanes together to get the 8 MSBs in the low byte.
|
2549
|
+
(result Reg (addv anded (VectorSize.Size16x8))))
|
2550
|
+
(mov_from_vec result 0 (ScalarSize.Size16))))
|
2551
|
+
|
2552
|
+
(rule (lower (vhigh_bits vec @ (value_type $I32X4)))
|
2553
|
+
(let (
|
2554
|
+
;; Replicate the MSB of each of the 4 32-bit lanes across
|
2555
|
+
;; the whole lane (sshr is an arithmetic right shift).
|
2556
|
+
(shifted Reg (sshr_vec_imm vec 31 (VectorSize.Size32x4)))
|
2557
|
+
;; Bitwise-and with a mask
|
2558
|
+
;; `0x00000008_00000004_00000002_00000001` to get the bit
|
2559
|
+
;; in the proper location for each group of 4 lanes.
|
2560
|
+
(anded Reg (and_vec shifted (constant_f128 0x00000008_00000004_00000002_00000001) (VectorSize.Size32x4)))
|
2561
|
+
;; Add lanes together to get the 4 MSBs in the low byte.
|
2562
|
+
(result Reg (addv anded (VectorSize.Size32x4))))
|
2563
|
+
(mov_from_vec result 0 (ScalarSize.Size32))))
|
2564
|
+
|
2565
|
+
(rule (lower (vhigh_bits vec @ (value_type $I64X2)))
|
2566
|
+
(let (
|
2567
|
+
;; Grab the MSB out of each of the lanes, right-shift to
|
2568
|
+
;; LSB, and add with a left-shift of upper lane's MSB back
|
2569
|
+
;; to bit 1. the whole lane (sshr is an arithmetic right
|
2570
|
+
;; shift).
|
2571
|
+
(upper_msb Reg (mov_from_vec vec 1 (ScalarSize.Size64)))
|
2572
|
+
(lower_msb Reg (mov_from_vec vec 0 (ScalarSize.Size64)))
|
2573
|
+
(upper_msb Reg (lsr_imm $I64 upper_msb (imm_shift_from_u8 63)))
|
2574
|
+
(lower_msb Reg (lsr_imm $I64 lower_msb (imm_shift_from_u8 63))))
|
2575
|
+
(add_shift $I64 lower_msb upper_msb (lshl_from_u64 $I64 1))))
|
2576
|
+
|
2577
|
+
;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2578
|
+
|
2579
|
+
(rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
|
2580
|
+
(trap_if_overflow (add_with_flags_paired ty a b) tc))
|
2581
|
+
|
2582
|
+
;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2583
|
+
|
2584
|
+
;; put a narrow value into a register and sign-/zero-extend depending on the ArgumentExtension
|
2585
|
+
(decl put_in_reg_ext32 (Value ArgumentExtension) Reg)
|
2586
|
+
(rule (put_in_reg_ext32 val (ArgumentExtension.Sext))
|
2587
|
+
(put_in_reg_sext32 val))
|
2588
|
+
(rule (put_in_reg_ext32 val (ArgumentExtension.Uext))
|
2589
|
+
(put_in_reg_zext32 val))
|
2590
|
+
|
2591
|
+
;; For narrow values emit a normal op with both arguments zero/sign extended.
|
2592
|
+
;; Then check if the output is the same as itself zero/sign extended from the narrower width.
|
2593
|
+
(decl overflow_op_small (Type Value Value ArgumentExtension ALUOp) InstOutput)
|
2594
|
+
(rule (overflow_op_small ty a b arg_ext alu_op)
|
2595
|
+
(let ((extend ExtendOp (lower_extend_op ty arg_ext))
|
2596
|
+
|
2597
|
+
;; Instead of emitting two `{u,s}xt{b,h}` we do one as an instruction and
|
2598
|
+
;; the other as an extend operation in the alu_op.
|
2599
|
+
;;
|
2600
|
+
;; uxtb a_ext, a
|
2601
|
+
;; alu_op out, a_ext, b, {u,s}xtb
|
2602
|
+
;; cmp out, out, {u,s}xtb
|
2603
|
+
;; cset out_of, ne
|
2604
|
+
(a_ext Reg (put_in_reg_ext32 a arg_ext))
|
2605
|
+
(out Reg (alu_rrr_extend alu_op ty a_ext b extend))
|
2606
|
+
(out_of Reg (with_flags_reg
|
2607
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2608
|
+
(cset (Cond.Ne)))))
|
2609
|
+
(output_pair
|
2610
|
+
(value_reg out)
|
2611
|
+
(value_reg out_of))))
|
2612
|
+
|
2613
|
+
;; For register sized op's just emit a op+cset, without further masking.
|
2614
|
+
;;
|
2615
|
+
;; op out, a, b
|
2616
|
+
;; cset out_of, cond
|
2617
|
+
;;
|
2618
|
+
;; conds expected:
|
2619
|
+
;; Hs: Carry set, unsigned overflow; Vs: Signed Over-/Underflow;
|
2620
|
+
;; Lo: Carry clear, meaning no unsigned overflow.
|
2621
|
+
;; (this is because subtraction is implemented as an add with the two's complement value on aarch64, meaning there is a sub-overflow if the add does not overflow)
|
2622
|
+
(decl overflow_op_normal (Type Value Value ALUOp Cond) InstOutput)
|
2623
|
+
(rule (overflow_op_normal ty a b alu_op cond)
|
2624
|
+
(let ((out ValueRegs
|
2625
|
+
(with_flags
|
2626
|
+
(alu_rrr_with_flags_paired ty a b alu_op)
|
2627
|
+
(cset_paired cond))))
|
2628
|
+
(output_pair
|
2629
|
+
(value_regs_get out 0)
|
2630
|
+
(value_regs_get out 1))))
|
2631
|
+
|
2632
|
+
;; For 128bit integers emit, for example, add+adcs+cset
|
2633
|
+
(decl overflow_op_128 (Value Value ALUOp ALUOp Cond) InstOutput)
|
2634
|
+
(rule (overflow_op_128 x y alu_op1 alu_op2 cond)
|
2635
|
+
(let
|
2636
|
+
;; Get the high/low registers for `x`.
|
2637
|
+
((x_regs ValueRegs x)
|
2638
|
+
(x_lo Reg (value_regs_get x_regs 0))
|
2639
|
+
(x_hi Reg (value_regs_get x_regs 1))
|
2640
|
+
|
2641
|
+
;; Get the high/low registers for `y`.
|
2642
|
+
(y_regs ValueRegs y)
|
2643
|
+
(y_lo Reg (value_regs_get y_regs 0))
|
2644
|
+
(y_hi Reg (value_regs_get y_regs 1)))
|
2645
|
+
;; cannot use the with_flags helper here but it should be fine right now
|
2646
|
+
(let
|
2647
|
+
((lo_inst ProducesFlags (alu_rrr_with_flags_paired $I64 x_lo y_lo alu_op1))
|
2648
|
+
(hi_inst ConsumesAndProducesFlags (alu_rrr_with_flags_chained $I64 x_hi y_hi alu_op2))
|
2649
|
+
(of_inst ConsumesFlags (cset_paired cond))
|
2650
|
+
|
2651
|
+
(result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
|
2652
|
+
(multi_reg_to_pair_and_single result)))
|
2653
|
+
)
|
2654
|
+
|
2655
|
+
;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2656
|
+
|
2657
|
+
;; For values smaller than a register, we do a normal `add` with both arguments
|
2658
|
+
;; zero extended. We then check if the output is the same as itself zero extended.
|
2659
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (uadd_overflow a b)))
|
2660
|
+
(overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Add)))
|
2661
|
+
|
2662
|
+
;; For register sized add's we just emit a adds+cset, without further masking.
|
2663
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (uadd_overflow a b)))
|
2664
|
+
(overflow_op_normal ty a b (ALUOp.AddS) (Cond.Hs)))
|
2665
|
+
|
2666
|
+
;; For 128bit integers we emit add+adcs+cset
|
2667
|
+
(rule 0 (lower (has_type $I128 (uadd_overflow x y)))
|
2668
|
+
(overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Hs)))
|
2669
|
+
|
2670
|
+
;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2671
|
+
|
2672
|
+
;; sxt{b,h} a_ext, a
|
2673
|
+
;; add out, a_ext, b, sxt{b,h}
|
2674
|
+
;; cmp out, out, sxt{b,h}
|
2675
|
+
;; cset of, ne
|
2676
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (sadd_overflow a b)))
|
2677
|
+
(overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Add)))
|
2678
|
+
|
2679
|
+
;; adds a, b
|
2680
|
+
;; cset of, vs
|
2681
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (sadd_overflow a b)))
|
2682
|
+
(overflow_op_normal ty a b (ALUOp.AddS) (Cond.Vs)))
|
2683
|
+
|
2684
|
+
;; adds x_lo, y_lo
|
2685
|
+
;; addcs x_hi, y_hi
|
2686
|
+
;; cset of, vs
|
2687
|
+
(rule 0 (lower (has_type $I128 (sadd_overflow x y)))
|
2688
|
+
(overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Vs)))
|
2689
|
+
|
2690
|
+
;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2691
|
+
|
2692
|
+
;; uxt{b,h} a_ext, a
|
2693
|
+
;; sub out, a_ext, b, ext{b,h}
|
2694
|
+
;; cmp out, out, uxt{b,h}
|
2695
|
+
;; cset of, ne
|
2696
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (usub_overflow a b)))
|
2697
|
+
(overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Sub)))
|
2698
|
+
|
2699
|
+
;; subs a, b
|
2700
|
+
;; cset of, lo
|
2701
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (usub_overflow a b)))
|
2702
|
+
(overflow_op_normal ty a b (ALUOp.SubS) (Cond.Lo)))
|
2703
|
+
|
2704
|
+
;; subs x_lo, y_lo
|
2705
|
+
;; sbcs x_hi, y_hi
|
2706
|
+
;; cset of, lo
|
2707
|
+
(rule 0 (lower (has_type $I128 (usub_overflow x y)))
|
2708
|
+
(overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Lo)))
|
2709
|
+
|
2710
|
+
;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2711
|
+
|
2712
|
+
;; sxt{b,h} a_ext, a
|
2713
|
+
;; sub out, a_ext, b, sxt{b,h}
|
2714
|
+
;; cmp out, out, sxt{b,h}
|
2715
|
+
;; cset of, ne
|
2716
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (ssub_overflow a b)))
|
2717
|
+
(overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Sub)))
|
2718
|
+
|
2719
|
+
;; subs a, b
|
2720
|
+
;; cset of, vs
|
2721
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty) (ssub_overflow a b)))
|
2722
|
+
(overflow_op_normal ty a b (ALUOp.SubS) (Cond.Vs)))
|
2723
|
+
|
2724
|
+
;; subs x_lo, y_lo
|
2725
|
+
;; sbcs x_hi, y_hi
|
2726
|
+
;; cset of, vs
|
2727
|
+
(rule 0 (lower (has_type $I128 (ssub_overflow x y)))
|
2728
|
+
(overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Vs)))
|
2729
|
+
|
2730
|
+
;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2731
|
+
|
2732
|
+
;; uxt{b,h} a_ext, a
|
2733
|
+
;; uxt{b,h} b_ext, b
|
2734
|
+
;; mul out, a_ext, b_ext
|
2735
|
+
;; cmp out, out, uxt{b,h}
|
2736
|
+
;; cset of, ne
|
2737
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (umul_overflow a b)))
|
2738
|
+
(let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Uext)))
|
2739
|
+
|
2740
|
+
(a_uext Reg (put_in_reg_zext32 a))
|
2741
|
+
(b_uext Reg (put_in_reg_zext32 b))
|
2742
|
+
(out Reg (madd ty a_uext b_uext (zero_reg)))
|
2743
|
+
(out_of Reg (with_flags_reg
|
2744
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2745
|
+
(cset (Cond.Ne)))))
|
2746
|
+
(output_pair
|
2747
|
+
(value_reg out)
|
2748
|
+
(value_reg out_of))))
|
2749
|
+
|
2750
|
+
;; umull out, a, b
|
2751
|
+
;; cmp out, out, uxtw
|
2752
|
+
;; cset of, ne
|
2753
|
+
(rule 2 (lower (has_type $I32 (umul_overflow a b)))
|
2754
|
+
(let (
|
2755
|
+
(out Reg (umaddl a b (zero_reg)))
|
2756
|
+
(out_of Reg (with_flags_reg
|
2757
|
+
(cmp_extend (OperandSize.Size64) out out (ExtendOp.UXTW))
|
2758
|
+
(cset (Cond.Ne)))))
|
2759
|
+
(output_pair
|
2760
|
+
(value_reg out)
|
2761
|
+
(value_reg out_of))))
|
2762
|
+
|
2763
|
+
;; mul out, a, b
|
2764
|
+
;; umulh tmp, a, b
|
2765
|
+
;; cmp tmp, #0
|
2766
|
+
;; cset of, ne
|
2767
|
+
(rule 2 (lower (has_type $I64 (umul_overflow a b)))
|
2768
|
+
(let (
|
2769
|
+
(out Reg (madd $I64 a b (zero_reg)))
|
2770
|
+
(tmp Reg (umulh $I64 a b))
|
2771
|
+
(out_of Reg (with_flags_reg
|
2772
|
+
(cmp64_imm tmp (u8_into_imm12 0))
|
2773
|
+
(cset (Cond.Ne)))))
|
2774
|
+
(output_pair
|
2775
|
+
(value_reg out)
|
2776
|
+
(value_reg out_of))))
|
2777
|
+
|
2778
|
+
;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2779
|
+
|
2780
|
+
;; sxt{b,h} a_ext, a
|
2781
|
+
;; sxt{b,h} b_ext, b
|
2782
|
+
;; mul out, a_ext, b_ext
|
2783
|
+
;; cmp out, out, sxt{b,h}
|
2784
|
+
;; cset of, ne
|
2785
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (smul_overflow a b)))
|
2786
|
+
(let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Sext)))
|
2787
|
+
|
2788
|
+
(a_sext Reg (put_in_reg_sext32 a))
|
2789
|
+
(b_sext Reg (put_in_reg_sext32 b))
|
2790
|
+
(out Reg (madd ty a_sext b_sext (zero_reg)))
|
2791
|
+
(out_of Reg (with_flags_reg
|
2792
|
+
(cmp_extend (OperandSize.Size32) out out extend)
|
2793
|
+
(cset (Cond.Ne)))))
|
2794
|
+
(output_pair
|
2795
|
+
(value_reg out)
|
2796
|
+
(value_reg out_of))))
|
2797
|
+
|
2798
|
+
;; smull out, a, b
|
2799
|
+
;; cmp out, out, sxtw
|
2800
|
+
;; cset of, ne
|
2801
|
+
(rule 2 (lower (has_type $I32 (smul_overflow a b)))
|
2802
|
+
(let (
|
2803
|
+
(out Reg (smaddl a b (zero_reg)))
|
2804
|
+
(out_of Reg (with_flags_reg
|
2805
|
+
(cmp_extend (OperandSize.Size64) out out (ExtendOp.SXTW))
|
2806
|
+
(cset (Cond.Ne)))))
|
2807
|
+
(output_pair
|
2808
|
+
(value_reg out)
|
2809
|
+
(value_reg out_of))))
|
2810
|
+
|
2811
|
+
;; mul out, a, b
|
2812
|
+
;; smulh tmp, a, b
|
2813
|
+
;; cmp tmp, out, ASR #63
|
2814
|
+
;; cset of, ne
|
2815
|
+
(rule 2 (lower (has_type $I64 (smul_overflow a b)))
|
2816
|
+
(let (
|
2817
|
+
(out Reg (madd $I64 a b (zero_reg)))
|
2818
|
+
(tmp Reg (smulh $I64 a b))
|
2819
|
+
(out_of Reg (with_flags_reg
|
2820
|
+
(cmp_rr_shift_asr (OperandSize.Size64) tmp out 63)
|
2821
|
+
(cset (Cond.Ne)))))
|
2822
|
+
(output_pair
|
2823
|
+
(value_reg out)
|
2824
|
+
(value_reg out_of))))
|
2825
|
+
|
2826
|
+
;;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2827
|
+
|
2828
|
+
(rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
|
2829
|
+
(elf_tls_get_addr name))
|
2830
|
+
|
2831
|
+
(rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
|
2832
|
+
(macho_tls_get_addr name))
|
2833
|
+
|
2834
|
+
;;; Rules for `fvpromote_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2835
|
+
|
2836
|
+
(rule (lower (fvpromote_low val))
|
2837
|
+
(vec_rr_long (VecRRLongOp.Fcvtl32) val $false))
|
2838
|
+
|
2839
|
+
;;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2840
|
+
|
2841
|
+
;; `brif` following `icmp`
|
2842
|
+
(rule (lower_branch (brif (maybe_uextend (icmp cc x @ (value_type ty) y)) _ _) targets)
|
2843
|
+
(let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y ty))
|
2844
|
+
(cond Cond (cond_code (flags_and_cc_cc comparison)))
|
2845
|
+
(taken BranchTarget (branch_target targets 0))
|
2846
|
+
(not_taken BranchTarget (branch_target targets 1)))
|
2847
|
+
(emit_side_effect
|
2848
|
+
(with_flags_side_effect (flags_and_cc_flags comparison)
|
2849
|
+
(cond_br taken
|
2850
|
+
not_taken
|
2851
|
+
(cond_br_cond cond))))))
|
2852
|
+
|
2853
|
+
;; `brif` following `fcmp`
|
2854
|
+
(rule (lower_branch (brif (maybe_uextend (fcmp cc x @ (value_type (ty_scalar_float ty)) y)) _ _) targets)
|
2855
|
+
(let ((cond Cond (fp_cond_code cc))
|
2856
|
+
(taken BranchTarget (branch_target targets 0))
|
2857
|
+
(not_taken BranchTarget (branch_target targets 1)))
|
2858
|
+
(emit_side_effect
|
2859
|
+
(with_flags_side_effect (fpu_cmp (scalar_size ty) x y)
|
2860
|
+
(cond_br taken not_taken
|
2861
|
+
(cond_br_cond cond))))))
|
2862
|
+
|
2863
|
+
;; standard `brif`
|
2864
|
+
(rule -1 (lower_branch (brif c @ (value_type $I128) _ _) targets)
|
2865
|
+
(let ((flags ProducesFlags (flags_to_producesflags c))
|
2866
|
+
(c ValueRegs (put_in_regs c))
|
2867
|
+
(c_lo Reg (value_regs_get c 0))
|
2868
|
+
(c_hi Reg (value_regs_get c 1))
|
2869
|
+
(rt Reg (orr $I64 c_lo c_hi))
|
2870
|
+
(taken BranchTarget (branch_target targets 0))
|
2871
|
+
(not_taken BranchTarget (branch_target targets 1)))
|
2872
|
+
(emit_side_effect
|
2873
|
+
(with_flags_side_effect flags
|
2874
|
+
(cond_br taken not_taken (cond_br_not_zero rt))))))
|
2875
|
+
(rule -2 (lower_branch (brif c @ (value_type ty) _ _) targets)
|
2876
|
+
(if (ty_int_ref_scalar_64 ty))
|
2877
|
+
(let ((flags ProducesFlags (flags_to_producesflags c))
|
2878
|
+
(rt Reg (put_in_reg_zext64 c))
|
2879
|
+
(taken BranchTarget (branch_target targets 0))
|
2880
|
+
(not_taken BranchTarget (branch_target targets 1)))
|
2881
|
+
(emit_side_effect
|
2882
|
+
(with_flags_side_effect flags
|
2883
|
+
(cond_br taken not_taken (cond_br_not_zero rt))))))
|
2884
|
+
|
2885
|
+
;;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2886
|
+
|
2887
|
+
(rule (lower_branch (jump _) targets)
|
2888
|
+
(emit_side_effect (aarch64_jump (branch_target targets 0))))
|
2889
|
+
|
2890
|
+
;;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2891
|
+
|
2892
|
+
;; `targets` contains the default target with the list of branch targets
|
2893
|
+
;; concatenated.
|
2894
|
+
(rule (lower_branch (br_table idx _) targets)
|
2895
|
+
(let ((jt_size u32 (targets_jt_size targets))
|
2896
|
+
(_ InstOutput (side_effect
|
2897
|
+
(emit_island (targets_jt_space targets))))
|
2898
|
+
(ridx Reg (put_in_reg_zext32 idx)))
|
2899
|
+
(br_table_impl (u32_as_u64 jt_size) ridx targets)))
|