wasmtime 10.0.1 → 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/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 +2291 -2262
- 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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-common-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-10.0.1/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasmtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-10.0.1/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/component.rs +0 -382
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/host.rs +0 -423
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/options.rs +0 -237
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/typed.rs +0 -2059
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func.rs +0 -684
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/types.rs +0 -545
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/values.rs +0 -1219
- data/ext/cargo-vendor/wasmtime-10.0.1/src/config.rs +0 -2066
- data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/bindgen.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/component.rs +0 -1199
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/tests/codegen.rs +0 -24
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler/component.rs +0 -578
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler.rs +0 -1200
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/func_environ.rs +0 -2206
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/lib.rs +0 -178
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/examples/factc.rs +0 -212
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/info.rs +0 -514
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/inline.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate.rs +0 -1070
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/types.rs +0 -1916
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/trampoline.rs +0 -3157
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/code_memory.rs +0 -309
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks.rs +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/ctx.rs +0 -206
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/poll.rs +0 -84
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched.rs +0 -105
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/lib.rs +0 -1631
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/rust.rs +0 -473
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-10.0.1/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.8.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.8.1/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/abi/mod.rs +0 -237
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/call.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/context.rs +0 -270
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/env.rs +0 -52
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/mod.rs +0 -214
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/abi.rs +0 -243
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/asm.rs +0 -300
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/masm.rs +0 -230
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/mod.rs +0 -215
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/abi.rs +0 -369
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/asm.rs +0 -576
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/masm.rs +0 -288
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/regs.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/masm.rs +0 -255
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/stack.rs +0 -235
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/trampoline.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-0.8.1/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.1 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → 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.1 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → 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.1 → wiggle-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → 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,3983 @@
|
|
1
|
+
;; s390x 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
|
+
;; A variant of the main lowering constructor term, used for branches.
|
8
|
+
;; The only difference is that it gets an extra argument holding a vector
|
9
|
+
;; of branch targets to be used.
|
10
|
+
(decl partial lower_branch (Inst VecMachLabel) Unit)
|
11
|
+
|
12
|
+
|
13
|
+
;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
14
|
+
|
15
|
+
(rule (lower (has_type ty (iconst (u64_from_imm64 n))))
|
16
|
+
(imm ty n))
|
17
|
+
|
18
|
+
|
19
|
+
;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
20
|
+
|
21
|
+
(rule (lower (f32const (u32_from_ieee32 x)))
|
22
|
+
(imm $F32 x))
|
23
|
+
|
24
|
+
|
25
|
+
;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
26
|
+
|
27
|
+
(rule (lower (f64const (u64_from_ieee64 x)))
|
28
|
+
(imm $F64 x))
|
29
|
+
|
30
|
+
|
31
|
+
;;;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
32
|
+
|
33
|
+
(rule (lower (has_type ty (vconst (u128_from_constant x))))
|
34
|
+
(vec_imm ty (be_vec_const ty x)))
|
35
|
+
|
36
|
+
|
37
|
+
;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
38
|
+
|
39
|
+
(rule (lower (has_type ty (null)))
|
40
|
+
(imm ty 0))
|
41
|
+
|
42
|
+
|
43
|
+
;;;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
44
|
+
|
45
|
+
(rule (lower (nop))
|
46
|
+
(invalid_reg))
|
47
|
+
|
48
|
+
|
49
|
+
;;;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
50
|
+
|
51
|
+
(rule (lower (has_type (vr128_ty ty) (iconcat x y)))
|
52
|
+
(mov_to_vec128 ty y x))
|
53
|
+
|
54
|
+
|
55
|
+
;;;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
56
|
+
|
57
|
+
(rule (lower (isplit x @ (value_type $I128)))
|
58
|
+
(let ((x_reg Reg x)
|
59
|
+
(x_hi Reg (vec_extract_lane $I64X2 x_reg 0 (zero_reg)))
|
60
|
+
(x_lo Reg (vec_extract_lane $I64X2 x_reg 1 (zero_reg))))
|
61
|
+
(output_pair x_lo x_hi)))
|
62
|
+
|
63
|
+
|
64
|
+
;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
65
|
+
|
66
|
+
;; Add two registers.
|
67
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (iadd x y)))
|
68
|
+
(add_reg ty x y))
|
69
|
+
|
70
|
+
;; Add a register and a sign-extended register.
|
71
|
+
(rule 8 (lower (has_type (fits_in_64 ty) (iadd x (sext32_value y))))
|
72
|
+
(add_reg_sext32 ty x y))
|
73
|
+
(rule 15 (lower (has_type (fits_in_64 ty) (iadd (sext32_value x) y)))
|
74
|
+
(add_reg_sext32 ty y x))
|
75
|
+
|
76
|
+
;; Add a register and an immediate.
|
77
|
+
(rule 7 (lower (has_type (fits_in_64 ty) (iadd x (i16_from_value y))))
|
78
|
+
(add_simm16 ty x y))
|
79
|
+
(rule 14 (lower (has_type (fits_in_64 ty) (iadd (i16_from_value x) y)))
|
80
|
+
(add_simm16 ty y x))
|
81
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (iadd x (i32_from_value y))))
|
82
|
+
(add_simm32 ty x y))
|
83
|
+
(rule 13 (lower (has_type (fits_in_64 ty) (iadd (i32_from_value x) y)))
|
84
|
+
(add_simm32 ty y x))
|
85
|
+
|
86
|
+
;; Add a register and memory (32/64-bit types).
|
87
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (iadd x (sinkable_load_32_64 y))))
|
88
|
+
(add_mem ty x (sink_load y)))
|
89
|
+
(rule 12 (lower (has_type (fits_in_64 ty) (iadd (sinkable_load_32_64 x) y)))
|
90
|
+
(add_mem ty y (sink_load x)))
|
91
|
+
|
92
|
+
;; Add a register and memory (16-bit types).
|
93
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (iadd x (sinkable_load_16 y))))
|
94
|
+
(add_mem_sext16 ty x (sink_load y)))
|
95
|
+
(rule 11 (lower (has_type (fits_in_64 ty) (iadd (sinkable_load_16 x) y)))
|
96
|
+
(add_mem_sext16 ty y (sink_load x)))
|
97
|
+
|
98
|
+
;; Add a register and sign-extended memory.
|
99
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (iadd x (sinkable_sload16 y))))
|
100
|
+
(add_mem_sext16 ty x (sink_sload16 y)))
|
101
|
+
(rule 10 (lower (has_type (fits_in_64 ty) (iadd (sinkable_sload16 x) y)))
|
102
|
+
(add_mem_sext16 ty y (sink_sload16 x)))
|
103
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (iadd x (sinkable_sload32 y))))
|
104
|
+
(add_mem_sext32 ty x (sink_sload32 y)))
|
105
|
+
(rule 9 (lower (has_type (fits_in_64 ty) (iadd (sinkable_sload32 x) y)))
|
106
|
+
(add_mem_sext32 ty y (sink_sload32 x)))
|
107
|
+
|
108
|
+
;; Add two vector registers.
|
109
|
+
(rule 1 (lower (has_type (vr128_ty ty) (iadd x y)))
|
110
|
+
(vec_add ty x y))
|
111
|
+
|
112
|
+
|
113
|
+
;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
114
|
+
|
115
|
+
;; Add (saturate unsigned) two vector registers.
|
116
|
+
(rule (lower (has_type (ty_vec128 ty) (uadd_sat x y)))
|
117
|
+
(let ((sum Reg (vec_add ty x y)))
|
118
|
+
(vec_or ty sum (vec_cmphl ty x sum))))
|
119
|
+
|
120
|
+
|
121
|
+
;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
122
|
+
|
123
|
+
;; Add (saturate signed) two vector registers. $I64X2 not supported.
|
124
|
+
(rule (lower (has_type (ty_vec128 ty) (sadd_sat x y)))
|
125
|
+
(vec_pack_ssat (vec_widen_type ty)
|
126
|
+
(vec_add (vec_widen_type ty) (vec_unpacks_high ty x)
|
127
|
+
(vec_unpacks_high ty y))
|
128
|
+
(vec_add (vec_widen_type ty) (vec_unpacks_low ty x)
|
129
|
+
(vec_unpacks_low ty y))))
|
130
|
+
|
131
|
+
|
132
|
+
;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
133
|
+
|
134
|
+
;; Lane-wise integer pairwise addition for 8-/16/32-bit vector registers.
|
135
|
+
(rule (lower (has_type ty @ (multi_lane bits _) (iadd_pairwise x y)))
|
136
|
+
(let ((size Reg (vec_imm_splat $I8X16 (u32_as_u64 bits))))
|
137
|
+
(vec_pack_lane_order (vec_widen_type ty)
|
138
|
+
(vec_add ty x (vec_lshr_by_byte x size))
|
139
|
+
(vec_add ty y (vec_lshr_by_byte y size)))))
|
140
|
+
|
141
|
+
;; special case for the `i32x4.dot_i16x8_s` wasm instruction
|
142
|
+
(rule 1 (lower
|
143
|
+
(has_type dst_ty (iadd_pairwise
|
144
|
+
(imul (swiden_low x @ (value_type src_ty)) (swiden_low y))
|
145
|
+
(imul (swiden_high x) (swiden_high y)))))
|
146
|
+
(vec_add dst_ty (vec_smul_even src_ty x y)
|
147
|
+
(vec_smul_odd src_ty x y)))
|
148
|
+
|
149
|
+
|
150
|
+
;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
151
|
+
|
152
|
+
;; Sub two registers.
|
153
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (isub x y)))
|
154
|
+
(sub_reg ty x y))
|
155
|
+
|
156
|
+
;; Sub a register and a sign-extended register.
|
157
|
+
(rule 8 (lower (has_type (fits_in_64 ty) (isub x (sext32_value y))))
|
158
|
+
(sub_reg_sext32 ty x y))
|
159
|
+
|
160
|
+
;; Sub a register and an immediate (using add of the negated value).
|
161
|
+
(rule 7 (lower (has_type (fits_in_64 ty) (isub x (i16_from_negated_value y))))
|
162
|
+
(add_simm16 ty x y))
|
163
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (isub x (i32_from_negated_value y))))
|
164
|
+
(add_simm32 ty x y))
|
165
|
+
|
166
|
+
;; Sub a register and memory (32/64-bit types).
|
167
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (isub x (sinkable_load_32_64 y))))
|
168
|
+
(sub_mem ty x (sink_load y)))
|
169
|
+
|
170
|
+
;; Sub a register and memory (16-bit types).
|
171
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (isub x (sinkable_load_16 y))))
|
172
|
+
(sub_mem_sext16 ty x (sink_load y)))
|
173
|
+
|
174
|
+
;; Sub a register and sign-extended memory.
|
175
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (isub x (sinkable_sload16 y))))
|
176
|
+
(sub_mem_sext16 ty x (sink_sload16 y)))
|
177
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (isub x (sinkable_sload32 y))))
|
178
|
+
(sub_mem_sext32 ty x (sink_sload32 y)))
|
179
|
+
|
180
|
+
;; Sub two vector registers.
|
181
|
+
(rule 1 (lower (has_type (vr128_ty ty) (isub x y)))
|
182
|
+
(vec_sub ty x y))
|
183
|
+
|
184
|
+
|
185
|
+
;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
186
|
+
|
187
|
+
;; Add (saturate unsigned) two vector registers.
|
188
|
+
(rule (lower (has_type (ty_vec128 ty) (usub_sat x y)))
|
189
|
+
(vec_and ty (vec_sub ty x y) (vec_cmphl ty x y)))
|
190
|
+
|
191
|
+
|
192
|
+
;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
193
|
+
|
194
|
+
;; Add (saturate signed) two vector registers. $I64X2 not supported.
|
195
|
+
(rule (lower (has_type (ty_vec128 ty) (ssub_sat x y)))
|
196
|
+
(vec_pack_ssat (vec_widen_type ty)
|
197
|
+
(vec_sub (vec_widen_type ty) (vec_unpacks_high ty x)
|
198
|
+
(vec_unpacks_high ty y))
|
199
|
+
(vec_sub (vec_widen_type ty) (vec_unpacks_low ty x)
|
200
|
+
(vec_unpacks_low ty y))))
|
201
|
+
|
202
|
+
|
203
|
+
;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
204
|
+
|
205
|
+
;; Absolute value of a register.
|
206
|
+
;; For types smaller than 32-bit, the input value must be sign-extended.
|
207
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (iabs x)))
|
208
|
+
(abs_reg (ty_ext32 ty) (put_in_reg_sext32 x)))
|
209
|
+
|
210
|
+
;; Absolute value of a sign-extended register.
|
211
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (iabs (sext32_value x))))
|
212
|
+
(abs_reg_sext32 ty x))
|
213
|
+
|
214
|
+
;; Absolute value of a vector register.
|
215
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (iabs x)))
|
216
|
+
(vec_abs ty x))
|
217
|
+
|
218
|
+
;; Absolute value of a 128-bit integer.
|
219
|
+
(rule 0 (lower (has_type $I128 (iabs x)))
|
220
|
+
(let ((zero Reg (vec_imm $I128 0))
|
221
|
+
(pos Reg x)
|
222
|
+
(neg Reg (vec_sub $I128 zero pos))
|
223
|
+
(rep Reg (vec_replicate_lane $I64X2 pos 0))
|
224
|
+
(mask Reg (vec_cmph $I64X2 zero rep)))
|
225
|
+
(vec_select $I128 neg pos mask)))
|
226
|
+
|
227
|
+
|
228
|
+
;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
229
|
+
|
230
|
+
;; Negate a register.
|
231
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (ineg x)))
|
232
|
+
(neg_reg ty x))
|
233
|
+
|
234
|
+
;; Negate a sign-extended register.
|
235
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (ineg (sext32_value x))))
|
236
|
+
(neg_reg_sext32 ty x))
|
237
|
+
|
238
|
+
;; Negate a vector register.
|
239
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (ineg x)))
|
240
|
+
(vec_neg ty x))
|
241
|
+
|
242
|
+
;; Negate a 128-bit integer.
|
243
|
+
(rule 0 (lower (has_type $I128 (ineg x)))
|
244
|
+
(vec_sub $I128 (vec_imm $I128 0) x))
|
245
|
+
|
246
|
+
|
247
|
+
;;;; Rules for `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
248
|
+
|
249
|
+
;; Unsigned maximum of two scalar integers - expand to icmp + select.
|
250
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (umax x y)))
|
251
|
+
(let ((x_ext Reg (put_in_reg_zext32 x))
|
252
|
+
(y_ext Reg (put_in_reg_zext32 y))
|
253
|
+
(cond ProducesBool (bool (icmpu_reg (ty_ext32 ty) x_ext y_ext)
|
254
|
+
(intcc_as_cond (IntCC.UnsignedLessThan)))))
|
255
|
+
(select_bool_reg ty cond y_ext x_ext)))
|
256
|
+
|
257
|
+
;; Unsigned maximum of two 128-bit integers - expand to icmp + select.
|
258
|
+
(rule 1 (lower (has_type $I128 (umax x y)))
|
259
|
+
(let ((x_reg Reg (put_in_reg x))
|
260
|
+
(y_reg Reg (put_in_reg y))
|
261
|
+
(cond ProducesBool (vec_int128_ucmphi y_reg x_reg)))
|
262
|
+
(select_bool_reg $I128 cond y_reg x_reg)))
|
263
|
+
|
264
|
+
;; Unsigned maximum of two vector registers.
|
265
|
+
(rule 0 (lower (has_type (ty_vec128 ty) (umax x y)))
|
266
|
+
(vec_umax ty x y))
|
267
|
+
|
268
|
+
|
269
|
+
;;;; Rules for `umin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
270
|
+
|
271
|
+
;; Unsigned minimum of two scalar integers - expand to icmp + select.
|
272
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (umin x y)))
|
273
|
+
(let ((x_ext Reg (put_in_reg_zext32 x))
|
274
|
+
(y_ext Reg (put_in_reg_zext32 y))
|
275
|
+
(cond ProducesBool (bool (icmpu_reg (ty_ext32 ty) x_ext y_ext)
|
276
|
+
(intcc_as_cond (IntCC.UnsignedGreaterThan)))))
|
277
|
+
(select_bool_reg ty cond y_ext x_ext)))
|
278
|
+
|
279
|
+
;; Unsigned maximum of two 128-bit integers - expand to icmp + select.
|
280
|
+
(rule 1 (lower (has_type $I128 (umin x y)))
|
281
|
+
(let ((x_reg Reg (put_in_reg x))
|
282
|
+
(y_reg Reg (put_in_reg y))
|
283
|
+
(cond ProducesBool (vec_int128_ucmphi x_reg y_reg)))
|
284
|
+
(select_bool_reg $I128 cond y_reg x_reg)))
|
285
|
+
|
286
|
+
;; Unsigned minimum of two vector registers.
|
287
|
+
(rule 0 (lower (has_type (ty_vec128 ty) (umin x y)))
|
288
|
+
(vec_umin ty x y))
|
289
|
+
|
290
|
+
|
291
|
+
;;;; Rules for `smax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
292
|
+
|
293
|
+
;; Signed maximum of two scalar integers - expand to icmp + select.
|
294
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (smax x y)))
|
295
|
+
(let ((x_ext Reg (put_in_reg_sext32 x))
|
296
|
+
(y_ext Reg (put_in_reg_sext32 y))
|
297
|
+
(cond ProducesBool (bool (icmps_reg (ty_ext32 ty) x_ext y_ext)
|
298
|
+
(intcc_as_cond (IntCC.SignedLessThan)))))
|
299
|
+
(select_bool_reg ty cond y_ext x_ext)))
|
300
|
+
|
301
|
+
;; Signed maximum of two 128-bit integers - expand to icmp + select.
|
302
|
+
(rule 1 (lower (has_type $I128 (smax x y)))
|
303
|
+
(let ((x_reg Reg (put_in_reg x))
|
304
|
+
(y_reg Reg (put_in_reg y))
|
305
|
+
(cond ProducesBool (vec_int128_scmphi y_reg x_reg)))
|
306
|
+
(select_bool_reg $I128 cond y_reg x_reg)))
|
307
|
+
|
308
|
+
;; Signed maximum of two vector registers.
|
309
|
+
(rule (lower (has_type (ty_vec128 ty) (smax x y)))
|
310
|
+
(vec_smax ty x y))
|
311
|
+
|
312
|
+
|
313
|
+
;;;; Rules for `smin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
314
|
+
|
315
|
+
;; Signed minimum of two scalar integers - expand to icmp + select.
|
316
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (smin x y)))
|
317
|
+
(let ((x_ext Reg (put_in_reg_sext32 x))
|
318
|
+
(y_ext Reg (put_in_reg_sext32 y))
|
319
|
+
(cond ProducesBool (bool (icmps_reg (ty_ext32 ty) x_ext y_ext)
|
320
|
+
(intcc_as_cond (IntCC.SignedGreaterThan)))))
|
321
|
+
(select_bool_reg ty cond y_ext x_ext)))
|
322
|
+
|
323
|
+
;; Signed maximum of two 128-bit integers - expand to icmp + select.
|
324
|
+
(rule 1 (lower (has_type $I128 (smin x y)))
|
325
|
+
(let ((x_reg Reg (put_in_reg x))
|
326
|
+
(y_reg Reg (put_in_reg y))
|
327
|
+
(cond ProducesBool (vec_int128_scmphi x_reg y_reg)))
|
328
|
+
(select_bool_reg $I128 cond y_reg x_reg)))
|
329
|
+
|
330
|
+
;; Signed minimum of two vector registers.
|
331
|
+
(rule (lower (has_type (ty_vec128 ty) (smin x y)))
|
332
|
+
(vec_smin ty x y))
|
333
|
+
|
334
|
+
|
335
|
+
;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
336
|
+
|
337
|
+
;; Unsigned average of two vector registers.
|
338
|
+
(rule (lower (has_type (ty_vec128 ty) (avg_round x y)))
|
339
|
+
(vec_uavg ty x y))
|
340
|
+
|
341
|
+
|
342
|
+
;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
343
|
+
|
344
|
+
;; Multiply two registers.
|
345
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (imul x y)))
|
346
|
+
(mul_reg ty x y))
|
347
|
+
|
348
|
+
;; Multiply a register and a sign-extended register.
|
349
|
+
(rule 8 (lower (has_type (fits_in_64 ty) (imul x (sext32_value y))))
|
350
|
+
(mul_reg_sext32 ty x y))
|
351
|
+
(rule 15 (lower (has_type (fits_in_64 ty) (imul (sext32_value x) y)))
|
352
|
+
(mul_reg_sext32 ty y x))
|
353
|
+
|
354
|
+
;; Multiply a register and an immediate.
|
355
|
+
(rule 7 (lower (has_type (fits_in_64 ty) (imul x (i16_from_value y))))
|
356
|
+
(mul_simm16 ty x y))
|
357
|
+
(rule 14 (lower (has_type (fits_in_64 ty) (imul (i16_from_value x) y)))
|
358
|
+
(mul_simm16 ty y x))
|
359
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (imul x (i32_from_value y))))
|
360
|
+
(mul_simm32 ty x y))
|
361
|
+
(rule 13 (lower (has_type (fits_in_64 ty) (imul (i32_from_value x) y)))
|
362
|
+
(mul_simm32 ty y x))
|
363
|
+
|
364
|
+
;; Multiply a register and memory (32/64-bit types).
|
365
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (imul x (sinkable_load_32_64 y))))
|
366
|
+
(mul_mem ty x (sink_load y)))
|
367
|
+
(rule 12 (lower (has_type (fits_in_64 ty) (imul (sinkable_load_32_64 x) y)))
|
368
|
+
(mul_mem ty y (sink_load x)))
|
369
|
+
|
370
|
+
;; Multiply a register and memory (16-bit types).
|
371
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (imul x (sinkable_load_16 y))))
|
372
|
+
(mul_mem_sext16 ty x (sink_load y)))
|
373
|
+
(rule 11 (lower (has_type (fits_in_64 ty) (imul (sinkable_load_16 x) y)))
|
374
|
+
(mul_mem_sext16 ty y (sink_load x)))
|
375
|
+
|
376
|
+
;; Multiply a register and sign-extended memory.
|
377
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (imul x (sinkable_sload16 y))))
|
378
|
+
(mul_mem_sext16 ty x (sink_sload16 y)))
|
379
|
+
(rule 10 (lower (has_type (fits_in_64 ty) (imul (sinkable_sload16 x) y)))
|
380
|
+
(mul_mem_sext16 ty y (sink_sload16 x)))
|
381
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (imul x (sinkable_sload32 y))))
|
382
|
+
(mul_mem_sext32 ty x (sink_sload32 y)))
|
383
|
+
(rule 9 (lower (has_type (fits_in_64 ty) (imul (sinkable_sload32 x) y)))
|
384
|
+
(mul_mem_sext32 ty y (sink_sload32 x)))
|
385
|
+
|
386
|
+
;; Multiply two vector registers, using a helper.
|
387
|
+
(decl vec_mul_impl (Type Reg Reg) Reg)
|
388
|
+
(rule 1 (lower (has_type (vr128_ty ty) (imul x y)))
|
389
|
+
(vec_mul_impl ty x y))
|
390
|
+
|
391
|
+
;; Multiply two vector registers - byte, halfword, and word.
|
392
|
+
(rule (vec_mul_impl $I8X16 x y) (vec_mul $I8X16 x y))
|
393
|
+
(rule (vec_mul_impl $I16X8 x y) (vec_mul $I16X8 x y))
|
394
|
+
(rule (vec_mul_impl $I32X4 x y) (vec_mul $I32X4 x y))
|
395
|
+
|
396
|
+
;; Multiply two vector registers - doubleword. Has to be scalarized.
|
397
|
+
(rule (vec_mul_impl $I64X2 x y)
|
398
|
+
(mov_to_vec128 $I64X2
|
399
|
+
(mul_reg $I64 (vec_extract_lane $I64X2 x 0 (zero_reg))
|
400
|
+
(vec_extract_lane $I64X2 y 0 (zero_reg)))
|
401
|
+
(mul_reg $I64 (vec_extract_lane $I64X2 x 1 (zero_reg))
|
402
|
+
(vec_extract_lane $I64X2 y 1 (zero_reg)))))
|
403
|
+
|
404
|
+
;; Multiply two vector registers - quadword.
|
405
|
+
(rule (vec_mul_impl $I128 x y)
|
406
|
+
(let ((x_hi Reg (vec_extract_lane $I64X2 x 0 (zero_reg)))
|
407
|
+
(x_lo Reg (vec_extract_lane $I64X2 x 1 (zero_reg)))
|
408
|
+
(y_hi Reg (vec_extract_lane $I64X2 y 0 (zero_reg)))
|
409
|
+
(y_lo Reg (vec_extract_lane $I64X2 y 1 (zero_reg)))
|
410
|
+
(lo_pair RegPair (umul_wide x_lo y_lo))
|
411
|
+
(res_lo Reg (regpair_lo lo_pair))
|
412
|
+
(res_hi_1 Reg (regpair_hi lo_pair))
|
413
|
+
(res_hi_2 Reg (mul_reg $I64 x_lo y_hi))
|
414
|
+
(res_hi_3 Reg (mul_reg $I64 x_hi y_lo))
|
415
|
+
(res_hi Reg (add_reg $I64 res_hi_3 (add_reg $I64 res_hi_2 res_hi_1))))
|
416
|
+
(mov_to_vec128 $I64X2 res_hi res_lo)))
|
417
|
+
|
418
|
+
|
419
|
+
;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
420
|
+
|
421
|
+
;; Multiply high part unsigned, 8-bit or 16-bit types. (Uses 32-bit multiply.)
|
422
|
+
(rule -1 (lower (has_type (ty_8_or_16 ty) (umulhi x y)))
|
423
|
+
(let ((ext_reg_x Reg (put_in_reg_zext32 x))
|
424
|
+
(ext_reg_y Reg (put_in_reg_zext32 y))
|
425
|
+
(ext_mul Reg (mul_reg $I32 ext_reg_x ext_reg_y)))
|
426
|
+
(lshr_imm $I32 ext_mul (ty_bits ty))))
|
427
|
+
|
428
|
+
;; Multiply high part unsigned, 32-bit types. (Uses 64-bit multiply.)
|
429
|
+
(rule (lower (has_type $I32 (umulhi x y)))
|
430
|
+
(let ((ext_reg_x Reg (put_in_reg_zext64 x))
|
431
|
+
(ext_reg_y Reg (put_in_reg_zext64 y))
|
432
|
+
(ext_mul Reg (mul_reg $I64 ext_reg_x ext_reg_y)))
|
433
|
+
(lshr_imm $I64 ext_mul 32)))
|
434
|
+
|
435
|
+
;; Multiply high part unsigned, 64-bit types. (Uses umul_wide.)
|
436
|
+
(rule (lower (has_type $I64 (umulhi x y)))
|
437
|
+
(let ((pair RegPair (umul_wide x y)))
|
438
|
+
(regpair_hi pair)))
|
439
|
+
|
440
|
+
;; Multiply high part unsigned, vector types with 8-, 16-, or 32-bit elements.
|
441
|
+
(rule (lower (has_type $I8X16 (umulhi x y))) (vec_umulhi $I8X16 x y))
|
442
|
+
(rule (lower (has_type $I16X8 (umulhi x y))) (vec_umulhi $I16X8 x y))
|
443
|
+
(rule (lower (has_type $I32X4 (umulhi x y))) (vec_umulhi $I32X4 x y))
|
444
|
+
|
445
|
+
;; Multiply high part unsigned, vector types with 64-bit elements.
|
446
|
+
;; Has to be scalarized.
|
447
|
+
(rule (lower (has_type $I64X2 (umulhi x y)))
|
448
|
+
(let ((pair_0 RegPair (umul_wide (vec_extract_lane $I64X2 x 0 (zero_reg))
|
449
|
+
(vec_extract_lane $I64X2 y 0 (zero_reg))))
|
450
|
+
(res_0 Reg (regpair_hi pair_0))
|
451
|
+
(pair_1 RegPair (umul_wide (vec_extract_lane $I64X2 x 1 (zero_reg))
|
452
|
+
(vec_extract_lane $I64X2 y 1 (zero_reg))))
|
453
|
+
(res_1 Reg (regpair_hi pair_1)))
|
454
|
+
(mov_to_vec128 $I64X2 res_0 res_1)))
|
455
|
+
|
456
|
+
|
457
|
+
;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
458
|
+
|
459
|
+
;; Multiply high part signed, 8-bit or 16-bit types. (Uses 32-bit multiply.)
|
460
|
+
(rule -1 (lower (has_type (ty_8_or_16 ty) (smulhi x y)))
|
461
|
+
(let ((ext_reg_x Reg (put_in_reg_sext32 x))
|
462
|
+
(ext_reg_y Reg (put_in_reg_sext32 y))
|
463
|
+
(ext_mul Reg (mul_reg $I32 ext_reg_x ext_reg_y)))
|
464
|
+
(ashr_imm $I32 ext_mul (ty_bits ty))))
|
465
|
+
|
466
|
+
;; Multiply high part signed, 32-bit types. (Uses 64-bit multiply.)
|
467
|
+
(rule (lower (has_type $I32 (smulhi x y)))
|
468
|
+
(let ((ext_reg_x Reg (put_in_reg_sext64 x))
|
469
|
+
(ext_reg_y Reg (put_in_reg_sext64 y))
|
470
|
+
(ext_mul Reg (mul_reg $I64 ext_reg_x ext_reg_y)))
|
471
|
+
(ashr_imm $I64 ext_mul 32)))
|
472
|
+
|
473
|
+
;; Multiply high part signed, 64-bit types. (Uses smul_wide.)
|
474
|
+
(rule (lower (has_type $I64 (smulhi x y)))
|
475
|
+
(let ((pair RegPair (smul_wide x y)))
|
476
|
+
(regpair_hi pair)))
|
477
|
+
|
478
|
+
;; Multiply high part signed, vector types with 8-, 16-, or 32-bit elements.
|
479
|
+
(rule (lower (has_type $I8X16 (smulhi x y))) (vec_smulhi $I8X16 x y))
|
480
|
+
(rule (lower (has_type $I16X8 (smulhi x y))) (vec_smulhi $I16X8 x y))
|
481
|
+
(rule (lower (has_type $I32X4 (smulhi x y))) (vec_smulhi $I32X4 x y))
|
482
|
+
|
483
|
+
;; Multiply high part unsigned, vector types with 64-bit elements.
|
484
|
+
;; Has to be scalarized.
|
485
|
+
(rule (lower (has_type $I64X2 (smulhi x y)))
|
486
|
+
(let ((pair_0 RegPair (smul_wide (vec_extract_lane $I64X2 x 0 (zero_reg))
|
487
|
+
(vec_extract_lane $I64X2 y 0 (zero_reg))))
|
488
|
+
(res_0 Reg (copy_reg $I64 (regpair_hi pair_0)))
|
489
|
+
(pair_1 RegPair (smul_wide (vec_extract_lane $I64X2 x 1 (zero_reg))
|
490
|
+
(vec_extract_lane $I64X2 y 1 (zero_reg))))
|
491
|
+
(res_1 Reg (regpair_hi pair_1)))
|
492
|
+
(mov_to_vec128 $I64X2 res_0 res_1)))
|
493
|
+
|
494
|
+
|
495
|
+
;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
496
|
+
|
497
|
+
;; Fixed-point multiplication of two vector registers.
|
498
|
+
(rule (lower (has_type (ty_vec128 ty) (sqmul_round_sat x y)))
|
499
|
+
(vec_pack_ssat (vec_widen_type ty)
|
500
|
+
(sqmul_impl (vec_widen_type ty)
|
501
|
+
(vec_unpacks_high ty x)
|
502
|
+
(vec_unpacks_high ty y))
|
503
|
+
(sqmul_impl (vec_widen_type ty)
|
504
|
+
(vec_unpacks_low ty x)
|
505
|
+
(vec_unpacks_low ty y))))
|
506
|
+
|
507
|
+
;; Helper to perform the rounded multiply in the wider type.
|
508
|
+
(decl sqmul_impl (Type Reg Reg) Reg)
|
509
|
+
(rule (sqmul_impl $I32X4 x y)
|
510
|
+
(vec_ashr_imm $I32X4 (vec_add $I32X4 (vec_mul_impl $I32X4 x y)
|
511
|
+
(vec_imm_bit_mask $I32X4 17 17))
|
512
|
+
15))
|
513
|
+
(rule (sqmul_impl $I64X2 x y)
|
514
|
+
(vec_ashr_imm $I64X2 (vec_add $I64X2 (vec_mul_impl $I64X2 x y)
|
515
|
+
(vec_imm_bit_mask $I64X2 33 33))
|
516
|
+
31))
|
517
|
+
|
518
|
+
|
519
|
+
;;;; Rules for `udiv` and `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
520
|
+
|
521
|
+
;; Divide two registers. The architecture provides combined udiv / urem
|
522
|
+
;; instructions with the following combination of data types:
|
523
|
+
;;
|
524
|
+
;; - 64-bit dividend (split across a 2x32-bit register pair),
|
525
|
+
;; 32-bit divisor (in a single input register)
|
526
|
+
;; 32-bit quotient & remainder (in a 2x32-bit register pair)
|
527
|
+
;;
|
528
|
+
;; - 128-bit dividend (split across a 2x64-bit register pair),
|
529
|
+
;; 64-bit divisor (in a single input register)
|
530
|
+
;; 64-bit quotient & remainder (in a 2x64-bit register pair)
|
531
|
+
;;
|
532
|
+
;; We use the first variant for 32-bit and smaller input types,
|
533
|
+
;; and the second variant for 64-bit input types.
|
534
|
+
|
535
|
+
;; Implement `udiv`.
|
536
|
+
(rule (lower (has_type (fits_in_64 ty) (udiv x y)))
|
537
|
+
(let (;; Look at the divisor to determine whether we need to generate
|
538
|
+
;; an explicit division-by zero check.
|
539
|
+
;; Load up the dividend, by loading the input (possibly zero-
|
540
|
+
;; extended) input into the low half of the register pair,
|
541
|
+
;; and setting the high half to zero.
|
542
|
+
(ext_x RegPair (regpair (imm (ty_ext32 ty) 0)
|
543
|
+
(put_in_reg_zext32 x)))
|
544
|
+
;; Load up the divisor, zero-extended if necessary.
|
545
|
+
(ext_y Reg (put_in_reg_zext32 y))
|
546
|
+
(ext_ty Type (ty_ext32 ty))
|
547
|
+
;; Emit the actual divide instruction.
|
548
|
+
(pair RegPair (udivmod ext_ty ext_x ext_y)))
|
549
|
+
;; The quotient can be found in the low half of the result.
|
550
|
+
(regpair_lo pair)))
|
551
|
+
|
552
|
+
;; Implement `urem`. Same as `udiv`, but finds the remainder in
|
553
|
+
;; the high half of the result register pair instead.
|
554
|
+
(rule (lower (has_type (fits_in_64 ty) (urem x y)))
|
555
|
+
(let ((ext_x RegPair (regpair (imm (ty_ext32 ty) 0)
|
556
|
+
(put_in_reg_zext32 x)))
|
557
|
+
(ext_y Reg (put_in_reg_zext32 y))
|
558
|
+
(ext_ty Type (ty_ext32 ty))
|
559
|
+
(pair RegPair (udivmod ext_ty ext_x ext_y)))
|
560
|
+
(regpair_hi pair)))
|
561
|
+
|
562
|
+
|
563
|
+
;;;; Rules for `sdiv` and `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
564
|
+
|
565
|
+
;; Divide two registers. The architecture provides combined sdiv / srem
|
566
|
+
;; instructions with the following combination of data types:
|
567
|
+
;;
|
568
|
+
;; - 64-bit dividend (in the low half of a 2x64-bit register pair),
|
569
|
+
;; 32-bit divisor (in a single input register)
|
570
|
+
;; 64-bit quotient & remainder (in a 2x64-bit register pair)
|
571
|
+
;;
|
572
|
+
;; - 64-bit dividend (in the low half of a 2x64-bit register pair),
|
573
|
+
;; 64-bit divisor (in a single input register)
|
574
|
+
;; 64-bit quotient & remainder (in a 2x64-bit register pair)
|
575
|
+
;;
|
576
|
+
;; We use the first variant for 32-bit and smaller input types,
|
577
|
+
;; and the second variant for 64-bit input types.
|
578
|
+
|
579
|
+
;; Implement `sdiv`.
|
580
|
+
(rule (lower (has_type (fits_in_64 ty) (sdiv x y)))
|
581
|
+
(let (;; Look at the divisor to determine whether we need to generate
|
582
|
+
;; explicit division-by-zero and/or integer-overflow checks.
|
583
|
+
(OFcheck bool (div_overflow_check_needed y))
|
584
|
+
;; Load up the dividend (sign-extended to 64-bit)
|
585
|
+
(ext_x Reg (put_in_reg_sext64 x))
|
586
|
+
;; Load up the divisor (sign-extended if necessary).
|
587
|
+
(ext_y Reg (put_in_reg_sext32 y))
|
588
|
+
(ext_ty Type (ty_ext32 ty))
|
589
|
+
;; Perform integer-overflow check if necessary.
|
590
|
+
(_ Reg (maybe_trap_if_sdiv_overflow OFcheck ext_ty ty ext_x ext_y))
|
591
|
+
;; Emit the actual divide instruction.
|
592
|
+
(pair RegPair (sdivmod ext_ty ext_x ext_y)))
|
593
|
+
;; The quotient can be found in the low half of the result.
|
594
|
+
(regpair_lo pair)))
|
595
|
+
|
596
|
+
;; Implement `srem`. Same as `sdiv`, but finds the remainder in
|
597
|
+
;; the high half of the result register pair instead. Also, handle
|
598
|
+
;; the integer overflow case differently, see below.
|
599
|
+
(rule (lower (has_type (fits_in_64 ty) (srem x y)))
|
600
|
+
(let ((OFcheck bool (div_overflow_check_needed y))
|
601
|
+
(ext_x Reg (put_in_reg_sext64 x))
|
602
|
+
(ext_y Reg (put_in_reg_sext32 y))
|
603
|
+
(ext_ty Type (ty_ext32 ty))
|
604
|
+
(checked_x Reg (maybe_avoid_srem_overflow OFcheck ext_ty ext_x ext_y))
|
605
|
+
(pair RegPair (sdivmod ext_ty checked_x ext_y)))
|
606
|
+
(regpair_hi pair)))
|
607
|
+
|
608
|
+
;; Determine whether we need to perform an integer-overflow check.
|
609
|
+
;;
|
610
|
+
;; We never rely on the divide instruction itself to trap; while that trap
|
611
|
+
;; would indeed happen, we have no way of signalling two different trap
|
612
|
+
;; conditions from the same instruction. By explicity checking for the
|
613
|
+
;; integer-overflow case ahead of time, any hardware trap in the divide
|
614
|
+
;; instruction is guaranteed to indicate divison-by-zero.
|
615
|
+
;;
|
616
|
+
;; In addition, for types smaller than 64 bits we would have to perform
|
617
|
+
;; the check explicitly anyway, since the instruction provides a 64-bit
|
618
|
+
;; quotient and only traps if *that* overflows.
|
619
|
+
;;
|
620
|
+
;; However, the only case where integer overflow can occur is if the
|
621
|
+
;; minimum (signed) integer value is divided by -1, so if the divisor
|
622
|
+
;; is any immediate different from -1, the check can be omitted.
|
623
|
+
(decl div_overflow_check_needed (Value) bool)
|
624
|
+
(rule 1 (div_overflow_check_needed (i64_from_value x))
|
625
|
+
(if (i64_not_neg1 x))
|
626
|
+
$false)
|
627
|
+
(rule (div_overflow_check_needed _) $true)
|
628
|
+
|
629
|
+
;; Perform the integer-overflow check if necessary. This implements:
|
630
|
+
;;
|
631
|
+
;; if divisor == INT_MIN && dividend == -1 { trap }
|
632
|
+
;;
|
633
|
+
;; but to avoid introducing control flow, it is actually done as:
|
634
|
+
;;
|
635
|
+
;; if ((divisor ^ INT_MAX) & dividend) == -1 { trap }
|
636
|
+
;;
|
637
|
+
;; instead, using a single conditional trap instruction.
|
638
|
+
(decl maybe_trap_if_sdiv_overflow (bool Type Type Reg Reg) Reg)
|
639
|
+
(rule (maybe_trap_if_sdiv_overflow $false ext_ty _ _ _) (invalid_reg))
|
640
|
+
(rule (maybe_trap_if_sdiv_overflow $true ext_ty ty x y)
|
641
|
+
(let ((int_max Reg (imm ext_ty (int_max ty)))
|
642
|
+
(reg Reg (and_reg ext_ty (xor_reg ext_ty int_max x) y)))
|
643
|
+
(icmps_simm16_and_trap ext_ty reg -1
|
644
|
+
(intcc_as_cond (IntCC.Equal))
|
645
|
+
(trap_code_integer_overflow))))
|
646
|
+
(decl int_max (Type) u64)
|
647
|
+
(rule (int_max $I8) 0x7f)
|
648
|
+
(rule (int_max $I16) 0x7fff)
|
649
|
+
(rule (int_max $I32) 0x7fffffff)
|
650
|
+
(rule (int_max $I64) 0x7fffffffffffffff)
|
651
|
+
|
652
|
+
;; When performing `srem`, we do not want to trap in the
|
653
|
+
;; integer-overflow scenario, because it is only the quotient
|
654
|
+
;; that overflows, not the remainder.
|
655
|
+
;;
|
656
|
+
;; For types smaller than 64 bits, we can simply let the
|
657
|
+
;; instruction execute, since (as above) it will never trap.
|
658
|
+
;;
|
659
|
+
;; For 64-bit inputs, we check whether the divisor is -1, and
|
660
|
+
;; if so simply replace the dividend by zero, which will give
|
661
|
+
;; the correct result, since any value modulo -1 is zero.
|
662
|
+
;;
|
663
|
+
;; (We could in fact avoid executing the divide instruction
|
664
|
+
;; at all in this case, but that would require introducing
|
665
|
+
;; control flow.)
|
666
|
+
(decl maybe_avoid_srem_overflow (bool Type Reg Reg) Reg)
|
667
|
+
(rule (maybe_avoid_srem_overflow $false _ x _) x)
|
668
|
+
(rule (maybe_avoid_srem_overflow $true $I32 x _) x)
|
669
|
+
(rule (maybe_avoid_srem_overflow $true $I64 x y)
|
670
|
+
(with_flags_reg (icmps_simm16 $I64 y -1)
|
671
|
+
(cmov_imm $I64 (intcc_as_cond (IntCC.Equal)) 0 x)))
|
672
|
+
|
673
|
+
|
674
|
+
;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
675
|
+
|
676
|
+
;; Shift left, shift amount in register.
|
677
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (ishl x y)))
|
678
|
+
(let ((masked_amt Reg (mask_amt_reg ty (amt_reg y))))
|
679
|
+
(lshl_reg ty x masked_amt)))
|
680
|
+
|
681
|
+
;; Shift left, immediate shift amount.
|
682
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (ishl x (i64_from_value y))))
|
683
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
684
|
+
(lshl_imm ty x masked_amt)))
|
685
|
+
|
686
|
+
;; Vector shift left, shift amount in register.
|
687
|
+
(rule 2 (lower (has_type (ty_vec128 ty) (ishl x y)))
|
688
|
+
(vec_lshl_reg ty x (amt_reg y)))
|
689
|
+
|
690
|
+
;; Vector shift left, immediate shift amount.
|
691
|
+
(rule 3 (lower (has_type (ty_vec128 ty) (ishl x (i64_from_value y))))
|
692
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
693
|
+
(vec_lshl_imm ty x masked_amt)))
|
694
|
+
|
695
|
+
;; 128-bit vector shift left.
|
696
|
+
(rule 4 (lower (has_type $I128 (ishl x y)))
|
697
|
+
(let ((amt Reg (amt_vr y)))
|
698
|
+
(vec_lshl_by_bit (vec_lshl_by_byte x amt) amt)))
|
699
|
+
|
700
|
+
|
701
|
+
;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
702
|
+
|
703
|
+
;; Shift right logical, shift amount in register.
|
704
|
+
;; For types smaller than 32-bit, the input value must be zero-extended.
|
705
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (ushr x y)))
|
706
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
707
|
+
(masked_amt Reg (mask_amt_reg ty (amt_reg y))))
|
708
|
+
(lshr_reg (ty_ext32 ty) ext_reg masked_amt)))
|
709
|
+
|
710
|
+
;; Shift right logical, immediate shift amount.
|
711
|
+
;; For types smaller than 32-bit, the input value must be zero-extended.
|
712
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (ushr x (i64_from_value y))))
|
713
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
714
|
+
(masked_amt u8 (mask_amt_imm ty y)))
|
715
|
+
(lshr_imm (ty_ext32 ty) ext_reg masked_amt)))
|
716
|
+
|
717
|
+
;; Vector shift right logical, shift amount in register.
|
718
|
+
(rule 2 (lower (has_type (ty_vec128 ty) (ushr x y)))
|
719
|
+
(vec_lshr_reg ty x (amt_reg y)))
|
720
|
+
|
721
|
+
;; Vector shift right logical, immediate shift amount.
|
722
|
+
(rule 3 (lower (has_type (ty_vec128 ty) (ushr x (i64_from_value y))))
|
723
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
724
|
+
(vec_lshr_imm ty x masked_amt)))
|
725
|
+
|
726
|
+
;; 128-bit vector shift right logical.
|
727
|
+
(rule 4 (lower (has_type $I128 (ushr x y)))
|
728
|
+
(let ((amt Reg (amt_vr y)))
|
729
|
+
(vec_lshr_by_bit (vec_lshr_by_byte x amt) amt)))
|
730
|
+
|
731
|
+
|
732
|
+
;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
733
|
+
|
734
|
+
;; Shift right arithmetic, shift amount in register.
|
735
|
+
;; For types smaller than 32-bit, the input value must be sign-extended.
|
736
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (sshr x y)))
|
737
|
+
(let ((ext_reg Reg (put_in_reg_sext32 x))
|
738
|
+
(masked_amt Reg (mask_amt_reg ty (amt_reg y))))
|
739
|
+
(ashr_reg (ty_ext32 ty) ext_reg masked_amt)))
|
740
|
+
|
741
|
+
;; Shift right arithmetic, immediate shift amount.
|
742
|
+
;; For types smaller than 32-bit, the input value must be sign-extended.
|
743
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (sshr x (i64_from_value y))))
|
744
|
+
(let ((ext_reg Reg (put_in_reg_sext32 x))
|
745
|
+
(masked_amt u8 (mask_amt_imm ty y)))
|
746
|
+
(ashr_imm (ty_ext32 ty) ext_reg masked_amt)))
|
747
|
+
|
748
|
+
;; Vector shift right arithmetic, shift amount in register.
|
749
|
+
(rule 2 (lower (has_type (ty_vec128 ty) (sshr x y)))
|
750
|
+
(vec_ashr_reg ty x (amt_reg y)))
|
751
|
+
|
752
|
+
;; Vector shift right arithmetic, immediate shift amount.
|
753
|
+
(rule 3 (lower (has_type (ty_vec128 ty) (sshr x (i64_from_value y))))
|
754
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
755
|
+
(vec_ashr_imm ty x masked_amt)))
|
756
|
+
|
757
|
+
;; 128-bit vector shift right arithmetic.
|
758
|
+
(rule 4 (lower (has_type $I128 (sshr x y)))
|
759
|
+
(let ((amt Reg (amt_vr y)))
|
760
|
+
(vec_ashr_by_bit (vec_ashr_by_byte x amt) amt)))
|
761
|
+
|
762
|
+
|
763
|
+
;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
764
|
+
|
765
|
+
;; Rotate left, shift amount in register. 32-bit or 64-bit types.
|
766
|
+
(rule 0 (lower (has_type (ty_32_or_64 ty) (rotl x y)))
|
767
|
+
(rot_reg ty x (amt_reg y)))
|
768
|
+
|
769
|
+
;; Rotate left arithmetic, immediate shift amount. 32-bit or 64-bit types.
|
770
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty) (rotl x (i64_from_value y))))
|
771
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
772
|
+
(rot_imm ty x masked_amt)))
|
773
|
+
|
774
|
+
;; Rotate left, shift amount in register. 8-bit or 16-bit types.
|
775
|
+
;; Implemented via a pair of 32-bit shifts on the zero-extended input.
|
776
|
+
(rule 2 (lower (has_type (ty_8_or_16 ty) (rotl x y)))
|
777
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
778
|
+
(ext_ty Type (ty_ext32 ty))
|
779
|
+
(pos_amt Reg (amt_reg y))
|
780
|
+
(neg_amt Reg (neg_reg $I32 pos_amt))
|
781
|
+
(masked_pos_amt Reg (mask_amt_reg ty pos_amt))
|
782
|
+
(masked_neg_amt Reg (mask_amt_reg ty neg_amt)))
|
783
|
+
(or_reg ty (lshl_reg ext_ty ext_reg masked_pos_amt)
|
784
|
+
(lshr_reg ext_ty ext_reg masked_neg_amt))))
|
785
|
+
|
786
|
+
;; Rotate left, immediate shift amount. 8-bit or 16-bit types.
|
787
|
+
;; Implemented via a pair of 32-bit shifts on the zero-extended input.
|
788
|
+
(rule 3 (lower (has_type (ty_8_or_16 ty) (rotl x (and (i64_from_value pos_amt)
|
789
|
+
(i64_from_negated_value neg_amt)))))
|
790
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
791
|
+
(ext_ty Type (ty_ext32 ty))
|
792
|
+
(masked_pos_amt u8 (mask_amt_imm ty pos_amt))
|
793
|
+
(masked_neg_amt u8 (mask_amt_imm ty neg_amt)))
|
794
|
+
(or_reg ty (lshl_imm ext_ty ext_reg masked_pos_amt)
|
795
|
+
(lshr_imm ext_ty ext_reg masked_neg_amt))))
|
796
|
+
|
797
|
+
;; Vector rotate left, shift amount in register.
|
798
|
+
(rule 4 (lower (has_type (ty_vec128 ty) (rotl x y)))
|
799
|
+
(vec_rot_reg ty x (amt_reg y)))
|
800
|
+
|
801
|
+
;; Vector rotate left, immediate shift amount.
|
802
|
+
(rule 5 (lower (has_type (ty_vec128 ty) (rotl x (i64_from_value y))))
|
803
|
+
(let ((masked_amt u8 (mask_amt_imm ty y)))
|
804
|
+
(vec_rot_imm ty x masked_amt)))
|
805
|
+
|
806
|
+
;; 128-bit full vector rotate left.
|
807
|
+
;; Implemented via a pair of 128-bit full vector shifts.
|
808
|
+
(rule 6 (lower (has_type $I128 (rotl x y)))
|
809
|
+
(let ((x_reg Reg x)
|
810
|
+
(pos_amt Reg (amt_vr y))
|
811
|
+
(neg_amt Reg (vec_neg $I8X16 pos_amt)))
|
812
|
+
(vec_or $I128
|
813
|
+
(vec_lshl_by_bit (vec_lshl_by_byte x_reg pos_amt) pos_amt)
|
814
|
+
(vec_lshr_by_bit (vec_lshr_by_byte x_reg neg_amt) neg_amt))))
|
815
|
+
|
816
|
+
|
817
|
+
;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
818
|
+
|
819
|
+
;; Rotate right, shift amount in register. 32-bit or 64-bit types.
|
820
|
+
;; Implemented as rotate left with negated rotate amount.
|
821
|
+
(rule 0 (lower (has_type (ty_32_or_64 ty) (rotr x y)))
|
822
|
+
(let ((negated_amt Reg (neg_reg $I32 (amt_reg y))))
|
823
|
+
(rot_reg ty x negated_amt)))
|
824
|
+
|
825
|
+
;; Rotate right arithmetic, immediate shift amount. 32-bit or 64-bit types.
|
826
|
+
;; Implemented as rotate left with negated rotate amount.
|
827
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty) (rotr x (i64_from_negated_value y))))
|
828
|
+
(let ((negated_amt u8 (mask_amt_imm ty y)))
|
829
|
+
(rot_imm ty x negated_amt)))
|
830
|
+
|
831
|
+
;; Rotate right, shift amount in register. 8-bit or 16-bit types.
|
832
|
+
;; Implemented as rotate left with negated rotate amount.
|
833
|
+
(rule 2 (lower (has_type (ty_8_or_16 ty) (rotr x y)))
|
834
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
835
|
+
(ext_ty Type (ty_ext32 ty))
|
836
|
+
(pos_amt Reg (amt_reg y))
|
837
|
+
(neg_amt Reg (neg_reg $I32 pos_amt))
|
838
|
+
(masked_pos_amt Reg (mask_amt_reg ty pos_amt))
|
839
|
+
(masked_neg_amt Reg (mask_amt_reg ty neg_amt)))
|
840
|
+
(or_reg ty (lshl_reg ext_ty ext_reg masked_neg_amt)
|
841
|
+
(lshr_reg ext_ty ext_reg masked_pos_amt))))
|
842
|
+
|
843
|
+
;; Rotate right, immediate shift amount. 8-bit or 16-bit types.
|
844
|
+
;; Implemented as rotate left with negated rotate amount.
|
845
|
+
(rule 3 (lower (has_type (ty_8_or_16 ty) (rotr x (and (i64_from_value pos_amt)
|
846
|
+
(i64_from_negated_value neg_amt)))))
|
847
|
+
(let ((ext_reg Reg (put_in_reg_zext32 x))
|
848
|
+
(ext_ty Type (ty_ext32 ty))
|
849
|
+
(masked_pos_amt u8 (mask_amt_imm ty pos_amt))
|
850
|
+
(masked_neg_amt u8 (mask_amt_imm ty neg_amt)))
|
851
|
+
(or_reg ty (lshl_imm ext_ty ext_reg masked_neg_amt)
|
852
|
+
(lshr_imm ext_ty ext_reg masked_pos_amt))))
|
853
|
+
|
854
|
+
;; Vector rotate right, shift amount in register.
|
855
|
+
;; Implemented as rotate left with negated rotate amount.
|
856
|
+
(rule 4 (lower (has_type (ty_vec128 ty) (rotr x y)))
|
857
|
+
(let ((negated_amt Reg (neg_reg $I32 (amt_reg y))))
|
858
|
+
(vec_rot_reg ty x negated_amt)))
|
859
|
+
|
860
|
+
;; Vector rotate right, immediate shift amount.
|
861
|
+
;; Implemented as rotate left with negated rotate amount.
|
862
|
+
(rule 5 (lower (has_type (ty_vec128 ty) (rotr x (i64_from_negated_value y))))
|
863
|
+
(let ((negated_amt u8 (mask_amt_imm ty y)))
|
864
|
+
(vec_rot_imm ty x negated_amt)))
|
865
|
+
|
866
|
+
;; 128-bit full vector rotate right.
|
867
|
+
;; Implemented via a pair of 128-bit full vector shifts.
|
868
|
+
(rule 6 (lower (has_type $I128 (rotr x y)))
|
869
|
+
(let ((x_reg Reg x)
|
870
|
+
(pos_amt Reg (amt_vr y))
|
871
|
+
(neg_amt Reg (vec_neg $I8X16 pos_amt)))
|
872
|
+
(vec_or $I128
|
873
|
+
(vec_lshl_by_bit (vec_lshl_by_byte x_reg neg_amt) neg_amt)
|
874
|
+
(vec_lshr_by_bit (vec_lshr_by_byte x_reg pos_amt) pos_amt))))
|
875
|
+
|
876
|
+
|
877
|
+
;;;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
878
|
+
|
879
|
+
;; Up to 64-bit source type: Always a no-op.
|
880
|
+
(rule 1 (lower (ireduce x @ (value_type (fits_in_64 _ty))))
|
881
|
+
x)
|
882
|
+
|
883
|
+
;; 128-bit source type: Extract the low half.
|
884
|
+
(rule (lower (ireduce x @ (value_type (vr128_ty _ty))))
|
885
|
+
(vec_extract_lane $I64X2 x 1 (zero_reg)))
|
886
|
+
|
887
|
+
|
888
|
+
;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
889
|
+
|
890
|
+
;; 16- or 32-bit target types.
|
891
|
+
(rule 1 (lower (has_type (gpr32_ty _ty) (uextend x)))
|
892
|
+
(put_in_reg_zext32 x))
|
893
|
+
|
894
|
+
;; 64-bit target types.
|
895
|
+
(rule 2 (lower (has_type (gpr64_ty _ty) (uextend x)))
|
896
|
+
(put_in_reg_zext64 x))
|
897
|
+
|
898
|
+
;; 128-bit target types.
|
899
|
+
(rule (lower (has_type $I128 (uextend x @ (value_type $I8))))
|
900
|
+
(vec_insert_lane $I8X16 (vec_imm $I128 0) x 15 (zero_reg)))
|
901
|
+
(rule (lower (has_type $I128 (uextend x @ (value_type $I16))))
|
902
|
+
(vec_insert_lane $I16X8 (vec_imm $I128 0) x 7 (zero_reg)))
|
903
|
+
(rule (lower (has_type $I128 (uextend x @ (value_type $I32))))
|
904
|
+
(vec_insert_lane $I32X4 (vec_imm $I128 0) x 3 (zero_reg)))
|
905
|
+
(rule (lower (has_type $I128 (uextend x @ (value_type $I64))))
|
906
|
+
(vec_insert_lane $I64X2 (vec_imm $I128 0) x 1 (zero_reg)))
|
907
|
+
|
908
|
+
|
909
|
+
;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
910
|
+
|
911
|
+
;; 16- or 32-bit target types.
|
912
|
+
(rule 1 (lower (has_type (gpr32_ty _ty) (sextend x)))
|
913
|
+
(put_in_reg_sext32 x))
|
914
|
+
|
915
|
+
;; 64-bit target types.
|
916
|
+
(rule 2 (lower (has_type (gpr64_ty _ty) (sextend x)))
|
917
|
+
(put_in_reg_sext64 x))
|
918
|
+
|
919
|
+
;; 128-bit target types.
|
920
|
+
(rule (lower (has_type $I128 (sextend x)))
|
921
|
+
(let ((x_ext Reg (put_in_reg_sext64 x)))
|
922
|
+
(mov_to_vec128 $I128 (ashr_imm $I64 x_ext 63) x_ext)))
|
923
|
+
|
924
|
+
|
925
|
+
;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
926
|
+
|
927
|
+
(rule (lower (snarrow x @ (value_type (ty_vec128 ty)) y))
|
928
|
+
(vec_pack_ssat_lane_order ty x y))
|
929
|
+
|
930
|
+
|
931
|
+
;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
932
|
+
|
933
|
+
(rule (lower (uunarrow x @ (value_type (ty_vec128 ty)) y))
|
934
|
+
(vec_pack_usat_lane_order ty x y))
|
935
|
+
|
936
|
+
|
937
|
+
;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
938
|
+
|
939
|
+
(rule (lower (unarrow x @ (value_type (ty_vec128 ty)) y))
|
940
|
+
(let ((zero Reg (vec_imm ty 0)))
|
941
|
+
(vec_pack_usat_lane_order ty (vec_smax ty x zero) (vec_smax ty y zero))))
|
942
|
+
|
943
|
+
|
944
|
+
;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
945
|
+
|
946
|
+
(rule (lower (swiden_low x @ (value_type (ty_vec128 ty))))
|
947
|
+
(vec_unpacks_low_lane_order ty x))
|
948
|
+
|
949
|
+
|
950
|
+
;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
951
|
+
|
952
|
+
(rule (lower (swiden_high x @ (value_type (ty_vec128 ty))))
|
953
|
+
(vec_unpacks_high_lane_order ty x))
|
954
|
+
|
955
|
+
|
956
|
+
;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
957
|
+
|
958
|
+
(rule (lower (uwiden_low x @ (value_type (ty_vec128 ty))))
|
959
|
+
(vec_unpacku_low_lane_order ty x))
|
960
|
+
|
961
|
+
|
962
|
+
;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
963
|
+
|
964
|
+
(rule (lower (uwiden_high x @ (value_type (ty_vec128 ty))))
|
965
|
+
(vec_unpacku_high_lane_order ty x))
|
966
|
+
|
967
|
+
|
968
|
+
;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
969
|
+
|
970
|
+
;; z15 version using a single instruction (NOR).
|
971
|
+
(rule 2 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bnot x)))
|
972
|
+
(let ((rx Reg x))
|
973
|
+
(not_or_reg ty rx rx)))
|
974
|
+
|
975
|
+
;; z14 version using XOR with -1.
|
976
|
+
(rule 1 (lower (has_type (and (mie2_disabled) (fits_in_64 ty)) (bnot x)))
|
977
|
+
(not_reg ty x))
|
978
|
+
|
979
|
+
;; Vector version using vector NOR.
|
980
|
+
(rule (lower (has_type (vr128_ty ty) (bnot x)))
|
981
|
+
(vec_not ty x))
|
982
|
+
|
983
|
+
;; With z15 (bnot (bxor ...)) can be a single instruction, similar to the
|
984
|
+
;; (bxor _ (bnot _)) lowering.
|
985
|
+
(rule 3 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bnot (bxor x y))))
|
986
|
+
(not_xor_reg ty x y))
|
987
|
+
|
988
|
+
;; Combine a not/xor operation of vector types into one.
|
989
|
+
(rule 4 (lower (has_type (vr128_ty ty) (bnot (bxor x y))))
|
990
|
+
(vec_not_xor ty x y))
|
991
|
+
|
992
|
+
|
993
|
+
;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
994
|
+
|
995
|
+
;; And two registers.
|
996
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (band x y)))
|
997
|
+
(and_reg ty x y))
|
998
|
+
|
999
|
+
;; And a register and an immediate.
|
1000
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (band x (uimm16shifted_from_inverted_value y))))
|
1001
|
+
(and_uimm16shifted ty x y))
|
1002
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (band (uimm16shifted_from_inverted_value x) y)))
|
1003
|
+
(and_uimm16shifted ty y x))
|
1004
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (band x (uimm32shifted_from_inverted_value y))))
|
1005
|
+
(and_uimm32shifted ty x y))
|
1006
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (band (uimm32shifted_from_inverted_value x) y)))
|
1007
|
+
(and_uimm32shifted ty y x))
|
1008
|
+
|
1009
|
+
;; And a register and memory (32/64-bit types).
|
1010
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (band x (sinkable_load_32_64 y))))
|
1011
|
+
(and_mem ty x (sink_load y)))
|
1012
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (band (sinkable_load_32_64 x) y)))
|
1013
|
+
(and_mem ty y (sink_load x)))
|
1014
|
+
|
1015
|
+
;; And two vector registers.
|
1016
|
+
(rule 0 (lower (has_type (vr128_ty ty) (band x y)))
|
1017
|
+
(vec_and ty x y))
|
1018
|
+
|
1019
|
+
;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
|
1020
|
+
;; by Cranelift's `band_not` instruction that is legalized into the simpler
|
1021
|
+
;; forms early on.
|
1022
|
+
|
1023
|
+
;; z15 version using a single instruction.
|
1024
|
+
(rule 7 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (band x (bnot y))))
|
1025
|
+
(and_not_reg ty x y))
|
1026
|
+
(rule 8 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (band (bnot y) x)))
|
1027
|
+
(and_not_reg ty x y))
|
1028
|
+
|
1029
|
+
;; And-not two vector registers.
|
1030
|
+
(rule 9 (lower (has_type (vr128_ty ty) (band x (bnot y))))
|
1031
|
+
(vec_and_not ty x y))
|
1032
|
+
(rule 10 (lower (has_type (vr128_ty ty) (band (bnot y) x)))
|
1033
|
+
(vec_and_not ty x y))
|
1034
|
+
|
1035
|
+
;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1036
|
+
|
1037
|
+
;; Or two registers.
|
1038
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bor x y)))
|
1039
|
+
(or_reg ty x y))
|
1040
|
+
|
1041
|
+
;; Or a register and an immediate.
|
1042
|
+
(rule 5 (lower (has_type (fits_in_64 ty) (bor x (uimm16shifted_from_value y))))
|
1043
|
+
(or_uimm16shifted ty x y))
|
1044
|
+
(rule 6 (lower (has_type (fits_in_64 ty) (bor (uimm16shifted_from_value x) y)))
|
1045
|
+
(or_uimm16shifted ty y x))
|
1046
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (bor x (uimm32shifted_from_value y))))
|
1047
|
+
(or_uimm32shifted ty x y))
|
1048
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (bor (uimm32shifted_from_value x) y)))
|
1049
|
+
(or_uimm32shifted ty y x))
|
1050
|
+
|
1051
|
+
;; Or a register and memory (32/64-bit types).
|
1052
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bor x (sinkable_load_32_64 y))))
|
1053
|
+
(or_mem ty x (sink_load y)))
|
1054
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bor (sinkable_load_32_64 x) y)))
|
1055
|
+
(or_mem ty y (sink_load x)))
|
1056
|
+
|
1057
|
+
;; Or two vector registers.
|
1058
|
+
(rule 0 (lower (has_type (vr128_ty ty) (bor x y)))
|
1059
|
+
(vec_or ty x y))
|
1060
|
+
|
1061
|
+
;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
|
1062
|
+
;; by Cranelift's `bor_not` instruction that is legalized into the simpler
|
1063
|
+
;; forms early on.
|
1064
|
+
|
1065
|
+
;; z15 version using a single instruction.
|
1066
|
+
(rule 7 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bor x (bnot y))))
|
1067
|
+
(or_not_reg ty x y))
|
1068
|
+
(rule 8 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bor (bnot y) x)))
|
1069
|
+
(or_not_reg ty x y))
|
1070
|
+
|
1071
|
+
;; Or-not two vector registers.
|
1072
|
+
(rule 9 (lower (has_type (vr128_ty ty) (bor x (bnot y))))
|
1073
|
+
(vec_or_not ty x y))
|
1074
|
+
(rule 10 (lower (has_type (vr128_ty ty) (bor (bnot y) x)))
|
1075
|
+
(vec_or_not ty x y))
|
1076
|
+
|
1077
|
+
|
1078
|
+
;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1079
|
+
|
1080
|
+
;; Xor two registers.
|
1081
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (bxor x y)))
|
1082
|
+
(xor_reg ty x y))
|
1083
|
+
|
1084
|
+
;; Xor a register and an immediate.
|
1085
|
+
(rule 3 (lower (has_type (fits_in_64 ty) (bxor x (uimm32shifted_from_value y))))
|
1086
|
+
(xor_uimm32shifted ty x y))
|
1087
|
+
(rule 4 (lower (has_type (fits_in_64 ty) (bxor (uimm32shifted_from_value x) y)))
|
1088
|
+
(xor_uimm32shifted ty y x))
|
1089
|
+
|
1090
|
+
;; Xor a register and memory (32/64-bit types).
|
1091
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (bxor x (sinkable_load_32_64 y))))
|
1092
|
+
(xor_mem ty x (sink_load y)))
|
1093
|
+
(rule 2 (lower (has_type (fits_in_64 ty) (bxor (sinkable_load_32_64 x) y)))
|
1094
|
+
(xor_mem ty y (sink_load x)))
|
1095
|
+
|
1096
|
+
;; Xor two vector registers.
|
1097
|
+
(rule 0 (lower (has_type (vr128_ty ty) (bxor x y)))
|
1098
|
+
(vec_xor ty x y))
|
1099
|
+
|
1100
|
+
;; Specialized lowerings for `(bxor x (bnot y))` which is additionally produced
|
1101
|
+
;; by Cranelift's `bxor_not` instruction that is legalized into the simpler
|
1102
|
+
;; forms early on.
|
1103
|
+
|
1104
|
+
;; z15 version using a single instruction.
|
1105
|
+
(rule 5 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bxor x (bnot y))))
|
1106
|
+
(not_xor_reg ty x y))
|
1107
|
+
(rule 6 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bxor (bnot y) x)))
|
1108
|
+
(not_xor_reg ty x y))
|
1109
|
+
|
1110
|
+
;; Xor-not two vector registers.
|
1111
|
+
(rule 7 (lower (has_type (vr128_ty ty) (bxor x (bnot y))))
|
1112
|
+
(vec_not_xor ty x y))
|
1113
|
+
(rule 8 (lower (has_type (vr128_ty ty) (bxor (bnot y) x)))
|
1114
|
+
(vec_not_xor ty x y))
|
1115
|
+
|
1116
|
+
|
1117
|
+
;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1118
|
+
|
1119
|
+
;; z15 version using a NAND instruction.
|
1120
|
+
(rule 2 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (bitselect x y z)))
|
1121
|
+
(let ((rx Reg x)
|
1122
|
+
(if_true Reg (and_reg ty y rx))
|
1123
|
+
(if_false Reg (and_not_reg ty z rx)))
|
1124
|
+
(or_reg ty if_false if_true)))
|
1125
|
+
|
1126
|
+
;; z14 version using XOR with -1.
|
1127
|
+
(rule 1 (lower (has_type (and (mie2_disabled) (fits_in_64 ty)) (bitselect x y z)))
|
1128
|
+
(let ((rx Reg x)
|
1129
|
+
(if_true Reg (and_reg ty y rx))
|
1130
|
+
(if_false Reg (and_reg ty z (not_reg ty rx))))
|
1131
|
+
(or_reg ty if_false if_true)))
|
1132
|
+
|
1133
|
+
;; Bitselect vector registers.
|
1134
|
+
(rule (lower (has_type (vr128_ty ty) (bitselect x y z)))
|
1135
|
+
(vec_select ty y z x))
|
1136
|
+
|
1137
|
+
|
1138
|
+
;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1139
|
+
|
1140
|
+
(rule (lower (has_type ty (bmask x)))
|
1141
|
+
(lower_bool_to_mask ty (value_nonzero x)))
|
1142
|
+
|
1143
|
+
|
1144
|
+
;;;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1145
|
+
|
1146
|
+
(rule (lower (has_type ty (bitrev x)))
|
1147
|
+
(bitrev_bytes ty
|
1148
|
+
(bitrev_bits 4 0xf0f0_f0f0_f0f0_f0f0 ty
|
1149
|
+
(bitrev_bits 2 0xcccc_cccc_cccc_cccc ty
|
1150
|
+
(bitrev_bits 1 0xaaaa_aaaa_aaaa_aaaa ty x)))))
|
1151
|
+
|
1152
|
+
(decl bitrev_bits (u8 u64 Type Reg) Reg)
|
1153
|
+
(rule 1 (bitrev_bits size bitmask (fits_in_64 ty) x)
|
1154
|
+
(let ((mask Reg (imm ty bitmask))
|
1155
|
+
(xh Reg (lshl_imm (ty_ext32 ty) x size))
|
1156
|
+
(xl Reg (lshr_imm (ty_ext32 ty) x size))
|
1157
|
+
(xh_masked Reg (and_reg ty xh mask))
|
1158
|
+
(xl_masked Reg (and_reg ty xl (not_reg ty mask))))
|
1159
|
+
(or_reg ty xh_masked xl_masked)))
|
1160
|
+
|
1161
|
+
(rule (bitrev_bits size bitmask (vr128_ty ty) x)
|
1162
|
+
(let ((mask Reg (vec_imm_splat $I64X2 bitmask))
|
1163
|
+
(size_reg Reg (vec_imm_splat $I8X16 (u8_as_u64 size)))
|
1164
|
+
(xh Reg (vec_lshl_by_bit x size_reg))
|
1165
|
+
(xl Reg (vec_lshr_by_bit x size_reg)))
|
1166
|
+
(vec_select ty xh xl mask)))
|
1167
|
+
|
1168
|
+
(decl bitrev_bytes (Type Reg) Reg)
|
1169
|
+
(rule (bitrev_bytes $I8 x) x)
|
1170
|
+
(rule (bitrev_bytes $I16 x) (lshr_imm $I32 (bswap_reg $I32 x) 16))
|
1171
|
+
(rule (bitrev_bytes $I32 x) (bswap_reg $I32 x))
|
1172
|
+
(rule (bitrev_bytes $I64 x) (bswap_reg $I64 x))
|
1173
|
+
(rule (bitrev_bytes $I128 x)
|
1174
|
+
(vec_permute $I128 x x
|
1175
|
+
(vec_imm $I8X16 (imm8x16 15 14 13 12 11 10 9 8
|
1176
|
+
7 6 5 4 3 2 1 0))))
|
1177
|
+
|
1178
|
+
|
1179
|
+
;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1180
|
+
|
1181
|
+
(rule (lower (has_type ty (bswap x)))
|
1182
|
+
(bitrev_bytes ty x))
|
1183
|
+
|
1184
|
+
;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1185
|
+
|
1186
|
+
;; The FLOGR hardware instruction always operates on the full 64-bit register.
|
1187
|
+
;; We can zero-extend smaller types, but then we have to compensate for the
|
1188
|
+
;; additional leading zero bits the instruction will actually see.
|
1189
|
+
(decl clz_offset (Type Reg) Reg)
|
1190
|
+
(rule (clz_offset $I8 x) (add_simm16 $I8 x -56))
|
1191
|
+
(rule (clz_offset $I16 x) (add_simm16 $I16 x -48))
|
1192
|
+
(rule (clz_offset $I32 x) (add_simm16 $I32 x -32))
|
1193
|
+
(rule (clz_offset $I64 x) x)
|
1194
|
+
|
1195
|
+
;; Count leading zeros, via FLOGR on an input zero-extended to 64 bits,
|
1196
|
+
;; with the result compensated for the extra bits.
|
1197
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (clz x)))
|
1198
|
+
(let ((ext_reg Reg (put_in_reg_zext64 x))
|
1199
|
+
;; Ask for a value of 64 in the all-zero 64-bit input case.
|
1200
|
+
;; After compensation this will match the expected semantics.
|
1201
|
+
(clz Reg (clz_reg 64 ext_reg)))
|
1202
|
+
(clz_offset ty clz)))
|
1203
|
+
|
1204
|
+
;; Count leading zeros, 128-bit full vector.
|
1205
|
+
(rule (lower (has_type $I128 (clz x)))
|
1206
|
+
(let ((clz_vec Reg (vec_clz $I64X2 x))
|
1207
|
+
(zero Reg (vec_imm $I64X2 0))
|
1208
|
+
(clz_hi Reg (vec_permute_dw_imm $I64X2 zero 0 clz_vec 0))
|
1209
|
+
(clz_lo Reg (vec_permute_dw_imm $I64X2 zero 0 clz_vec 1))
|
1210
|
+
(clz_sum Reg (vec_add $I64X2 clz_hi clz_lo))
|
1211
|
+
(mask Reg (vec_cmpeq $I64X2 clz_hi (vec_imm_splat $I64X2 64))))
|
1212
|
+
(vec_select $I128 clz_sum clz_hi mask)))
|
1213
|
+
|
1214
|
+
|
1215
|
+
;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1216
|
+
|
1217
|
+
;; The result of cls is not supposed to count the sign bit itself, just
|
1218
|
+
;; additional copies of it. Therefore, when computing cls in terms of clz,
|
1219
|
+
;; we need to subtract one. Fold this into the offset computation.
|
1220
|
+
(decl cls_offset (Type Reg) Reg)
|
1221
|
+
(rule (cls_offset $I8 x) (add_simm16 $I8 x -57))
|
1222
|
+
(rule (cls_offset $I16 x) (add_simm16 $I16 x -49))
|
1223
|
+
(rule (cls_offset $I32 x) (add_simm16 $I32 x -33))
|
1224
|
+
(rule (cls_offset $I64 x) (add_simm16 $I64 x -1))
|
1225
|
+
|
1226
|
+
;; Count leading sign-bit copies. We don't have any instruction for that,
|
1227
|
+
;; so we instead count the leading zeros after inverting the input if negative,
|
1228
|
+
;; i.e. computing
|
1229
|
+
;; cls(x) == clz(x ^ (x >> 63)) - 1
|
1230
|
+
;; where x is the sign-extended input.
|
1231
|
+
(rule 1 (lower (has_type (fits_in_64 ty) (cls x)))
|
1232
|
+
(let ((ext_reg Reg (put_in_reg_sext64 x))
|
1233
|
+
(signbit_copies Reg (ashr_imm $I64 ext_reg 63))
|
1234
|
+
(inv_reg Reg (xor_reg $I64 ext_reg signbit_copies))
|
1235
|
+
(clz Reg (clz_reg 64 inv_reg)))
|
1236
|
+
(cls_offset ty clz)))
|
1237
|
+
|
1238
|
+
;; Count leading sign-bit copies, 128-bit full vector.
|
1239
|
+
(rule (lower (has_type $I128 (cls x)))
|
1240
|
+
(let ((x_reg Reg x)
|
1241
|
+
(ones Reg (vec_imm_splat $I8X16 255))
|
1242
|
+
(signbit_copies Reg (vec_ashr_by_bit (vec_ashr_by_byte x_reg ones) ones))
|
1243
|
+
(inv_reg Reg (vec_xor $I128 x_reg signbit_copies))
|
1244
|
+
(clz_vec Reg (vec_clz $I64X2 inv_reg))
|
1245
|
+
(zero Reg (vec_imm $I64X2 0))
|
1246
|
+
(clz_hi Reg (vec_permute_dw_imm $I64X2 zero 0 clz_vec 0))
|
1247
|
+
(clz_lo Reg (vec_permute_dw_imm $I64X2 zero 0 clz_vec 1))
|
1248
|
+
(clz_sum Reg (vec_add $I64X2 clz_hi clz_lo))
|
1249
|
+
(mask Reg (vec_cmpeq $I64X2 clz_hi (vec_imm_splat $I64X2 64))))
|
1250
|
+
(vec_add $I128 (vec_select $I128 clz_sum clz_hi mask) ones)))
|
1251
|
+
|
1252
|
+
|
1253
|
+
;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1254
|
+
|
1255
|
+
;; To count trailing zeros, we find the last bit set in the input via (x & -x),
|
1256
|
+
;; count the leading zeros of that value, and subtract from 63:
|
1257
|
+
;;
|
1258
|
+
;; ctz(x) == 63 - clz(x & -x)
|
1259
|
+
;;
|
1260
|
+
;; This works for all cases except a zero input, where the above formula would
|
1261
|
+
;; return -1, but we are expected to return the type size. The compensation
|
1262
|
+
;; for this case is handled differently for 64-bit types vs. smaller types.
|
1263
|
+
|
1264
|
+
;; For smaller types, we simply ensure that the extended 64-bit input is
|
1265
|
+
;; never zero by setting a "guard bit" in the position corresponding to
|
1266
|
+
;; the input type size. This way the 64-bit algorithm above will handle
|
1267
|
+
;; that case correctly automatically.
|
1268
|
+
(rule 2 (lower (has_type (gpr32_ty ty) (ctz x)))
|
1269
|
+
(let ((rx Reg (or_uimm16shifted $I64 x (ctz_guardbit ty)))
|
1270
|
+
(lastbit Reg (and_reg $I64 rx (neg_reg $I64 rx)))
|
1271
|
+
(clz Reg (clz_reg 64 lastbit)))
|
1272
|
+
(sub_reg ty (imm ty 63) clz)))
|
1273
|
+
|
1274
|
+
(decl ctz_guardbit (Type) UImm16Shifted)
|
1275
|
+
(rule (ctz_guardbit $I8) (uimm16shifted 256 0))
|
1276
|
+
(rule (ctz_guardbit $I16) (uimm16shifted 1 16))
|
1277
|
+
(rule (ctz_guardbit $I32) (uimm16shifted 1 32))
|
1278
|
+
|
1279
|
+
;; For 64-bit types, the FLOGR instruction will indicate the zero input case
|
1280
|
+
;; via its condition code. We check for that and replace the instruction
|
1281
|
+
;; result with the value -1 via a conditional move, which will then lead to
|
1282
|
+
;; the correct result after the final subtraction from 63.
|
1283
|
+
(rule 1 (lower (has_type (gpr64_ty _ty) (ctz x)))
|
1284
|
+
(let ((rx Reg x)
|
1285
|
+
(lastbit Reg (and_reg $I64 rx (neg_reg $I64 rx)))
|
1286
|
+
(clz Reg (clz_reg -1 lastbit)))
|
1287
|
+
(sub_reg $I64 (imm $I64 63) clz)))
|
1288
|
+
|
1289
|
+
;; Count trailing zeros, 128-bit full vector.
|
1290
|
+
(rule 0 (lower (has_type $I128 (ctz x)))
|
1291
|
+
(let ((ctz_vec Reg (vec_ctz $I64X2 x))
|
1292
|
+
(zero Reg (vec_imm $I64X2 0))
|
1293
|
+
(ctz_hi Reg (vec_permute_dw_imm $I64X2 zero 0 ctz_vec 0))
|
1294
|
+
(ctz_lo Reg (vec_permute_dw_imm $I64X2 zero 0 ctz_vec 1))
|
1295
|
+
(ctz_sum Reg (vec_add $I64X2 ctz_hi ctz_lo))
|
1296
|
+
(mask Reg (vec_cmpeq $I64X2 ctz_lo (vec_imm_splat $I64X2 64))))
|
1297
|
+
(vec_select $I128 ctz_sum ctz_lo mask)))
|
1298
|
+
|
1299
|
+
|
1300
|
+
;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1301
|
+
|
1302
|
+
;; Population count for 8-bit types is supported by the POPCNT instruction.
|
1303
|
+
(rule (lower (has_type $I8 (popcnt x)))
|
1304
|
+
(popcnt_byte x))
|
1305
|
+
|
1306
|
+
;; On z15, the POPCNT instruction has a variant to compute a full 64-bit
|
1307
|
+
;; population count, which we also use for 16- and 32-bit types.
|
1308
|
+
(rule -1 (lower (has_type (and (mie2_enabled) (fits_in_64 ty)) (popcnt x)))
|
1309
|
+
(popcnt_reg (put_in_reg_zext64 x)))
|
1310
|
+
|
1311
|
+
;; On z14, we use the regular POPCNT, which computes the population count
|
1312
|
+
;; of each input byte separately, so we need to accumulate those partial
|
1313
|
+
;; results via a series of log2(type size in bytes) - 1 additions. We
|
1314
|
+
;; accumulate in the high byte, so that a final right shift will zero out
|
1315
|
+
;; any unrelated bits to give a clean result. (This does not work with
|
1316
|
+
;; $I16, where we instead accumulate in the low byte and clear high bits
|
1317
|
+
;; via an explicit and operation.)
|
1318
|
+
|
1319
|
+
(rule (lower (has_type (and (mie2_disabled) $I16) (popcnt x)))
|
1320
|
+
(let ((cnt2 Reg (popcnt_byte x))
|
1321
|
+
(cnt1 Reg (add_reg $I32 cnt2 (lshr_imm $I32 cnt2 8))))
|
1322
|
+
(and_uimm16shifted $I32 cnt1 (uimm16shifted 255 0))))
|
1323
|
+
|
1324
|
+
(rule (lower (has_type (and (mie2_disabled) $I32) (popcnt x)))
|
1325
|
+
(let ((cnt4 Reg (popcnt_byte x))
|
1326
|
+
(cnt2 Reg (add_reg $I32 cnt4 (lshl_imm $I32 cnt4 16)))
|
1327
|
+
(cnt1 Reg (add_reg $I32 cnt2 (lshl_imm $I32 cnt2 8))))
|
1328
|
+
(lshr_imm $I32 cnt1 24)))
|
1329
|
+
|
1330
|
+
(rule (lower (has_type (and (mie2_disabled) $I64) (popcnt x)))
|
1331
|
+
(let ((cnt8 Reg (popcnt_byte x))
|
1332
|
+
(cnt4 Reg (add_reg $I64 cnt8 (lshl_imm $I64 cnt8 32)))
|
1333
|
+
(cnt2 Reg (add_reg $I64 cnt4 (lshl_imm $I64 cnt4 16)))
|
1334
|
+
(cnt1 Reg (add_reg $I64 cnt2 (lshl_imm $I64 cnt2 8))))
|
1335
|
+
(lshr_imm $I64 cnt1 56)))
|
1336
|
+
|
1337
|
+
;; Population count for vector types.
|
1338
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (popcnt x)))
|
1339
|
+
(vec_popcnt ty x))
|
1340
|
+
|
1341
|
+
;; Population count, 128-bit full vector.
|
1342
|
+
(rule (lower (has_type $I128 (popcnt x)))
|
1343
|
+
(let ((popcnt_vec Reg (vec_popcnt $I64X2 x))
|
1344
|
+
(zero Reg (vec_imm $I64X2 0))
|
1345
|
+
(popcnt_hi Reg (vec_permute_dw_imm $I64X2 zero 0 popcnt_vec 0))
|
1346
|
+
(popcnt_lo Reg (vec_permute_dw_imm $I64X2 zero 0 popcnt_vec 1)))
|
1347
|
+
(vec_add $I64X2 popcnt_hi popcnt_lo)))
|
1348
|
+
|
1349
|
+
|
1350
|
+
;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1351
|
+
|
1352
|
+
;; Add two registers.
|
1353
|
+
(rule (lower (has_type ty (fadd x y)))
|
1354
|
+
(fadd_reg ty x y))
|
1355
|
+
|
1356
|
+
|
1357
|
+
;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1358
|
+
|
1359
|
+
;; Subtract two registers.
|
1360
|
+
(rule (lower (has_type ty (fsub x y)))
|
1361
|
+
(fsub_reg ty x y))
|
1362
|
+
|
1363
|
+
|
1364
|
+
;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1365
|
+
|
1366
|
+
;; Multiply two registers.
|
1367
|
+
(rule (lower (has_type ty (fmul x y)))
|
1368
|
+
(fmul_reg ty x y))
|
1369
|
+
|
1370
|
+
|
1371
|
+
;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1372
|
+
|
1373
|
+
;; Divide two registers.
|
1374
|
+
(rule (lower (has_type ty (fdiv x y)))
|
1375
|
+
(fdiv_reg ty x y))
|
1376
|
+
|
1377
|
+
|
1378
|
+
;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1379
|
+
|
1380
|
+
;; Minimum of two registers.
|
1381
|
+
(rule (lower (has_type ty (fmin x y)))
|
1382
|
+
(fmin_reg ty x y))
|
1383
|
+
|
1384
|
+
|
1385
|
+
;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1386
|
+
|
1387
|
+
;; Maximum of two registers.
|
1388
|
+
(rule (lower (has_type ty (fmax x y)))
|
1389
|
+
(fmax_reg ty x y))
|
1390
|
+
|
1391
|
+
|
1392
|
+
;;;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1393
|
+
|
1394
|
+
;; Minimum of two registers.
|
1395
|
+
(rule (lower (has_type ty (fmin_pseudo x y)))
|
1396
|
+
(fmin_pseudo_reg ty x y))
|
1397
|
+
|
1398
|
+
|
1399
|
+
;;;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1400
|
+
|
1401
|
+
;; Maximum of two registers.
|
1402
|
+
(rule (lower (has_type ty (fmax_pseudo x y)))
|
1403
|
+
(fmax_pseudo_reg ty x y))
|
1404
|
+
|
1405
|
+
|
1406
|
+
;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1407
|
+
|
1408
|
+
;; Copysign of two registers.
|
1409
|
+
(rule (lower (has_type $F32 (fcopysign x y)))
|
1410
|
+
(vec_select $F32 x y (imm $F32 2147483647)))
|
1411
|
+
(rule (lower (has_type $F64 (fcopysign x y)))
|
1412
|
+
(vec_select $F64 x y (imm $F64 9223372036854775807)))
|
1413
|
+
(rule (lower (has_type $F32X4 (fcopysign x y)))
|
1414
|
+
(vec_select $F32X4 x y (vec_imm_bit_mask $F32X4 1 31)))
|
1415
|
+
(rule (lower (has_type $F64X2 (fcopysign x y)))
|
1416
|
+
(vec_select $F64X2 x y (vec_imm_bit_mask $F64X2 1 63)))
|
1417
|
+
|
1418
|
+
|
1419
|
+
;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1420
|
+
|
1421
|
+
;; Multiply-and-add of three registers.
|
1422
|
+
(rule (lower (has_type ty (fma x y z)))
|
1423
|
+
(fma_reg ty x y z))
|
1424
|
+
|
1425
|
+
|
1426
|
+
;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1427
|
+
|
1428
|
+
;; Square root of a register.
|
1429
|
+
(rule (lower (has_type ty (sqrt x)))
|
1430
|
+
(sqrt_reg ty x))
|
1431
|
+
|
1432
|
+
|
1433
|
+
;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1434
|
+
|
1435
|
+
;; Negated value of a register.
|
1436
|
+
(rule (lower (has_type ty (fneg x)))
|
1437
|
+
(fneg_reg ty x))
|
1438
|
+
|
1439
|
+
|
1440
|
+
;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1441
|
+
|
1442
|
+
;; Absolute value of a register.
|
1443
|
+
(rule (lower (has_type ty (fabs x)))
|
1444
|
+
(fabs_reg ty x))
|
1445
|
+
|
1446
|
+
|
1447
|
+
;;;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1448
|
+
|
1449
|
+
;; Round value in a register towards positive infinity.
|
1450
|
+
(rule (lower (has_type ty (ceil x)))
|
1451
|
+
(ceil_reg ty x))
|
1452
|
+
|
1453
|
+
|
1454
|
+
;;;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1455
|
+
|
1456
|
+
;; Round value in a register towards negative infinity.
|
1457
|
+
(rule (lower (has_type ty (floor x)))
|
1458
|
+
(floor_reg ty x))
|
1459
|
+
|
1460
|
+
|
1461
|
+
;;;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1462
|
+
|
1463
|
+
;; Round value in a register towards zero.
|
1464
|
+
(rule (lower (has_type ty (trunc x)))
|
1465
|
+
(trunc_reg ty x))
|
1466
|
+
|
1467
|
+
|
1468
|
+
;;;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1469
|
+
|
1470
|
+
;; Round value in a register towards nearest.
|
1471
|
+
(rule (lower (has_type ty (nearest x)))
|
1472
|
+
(nearest_reg ty x))
|
1473
|
+
|
1474
|
+
|
1475
|
+
;;;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1476
|
+
|
1477
|
+
;; Promote a register.
|
1478
|
+
(rule (lower (has_type (fits_in_64 dst_ty) (fpromote x @ (value_type src_ty))))
|
1479
|
+
(fpromote_reg dst_ty src_ty x))
|
1480
|
+
|
1481
|
+
|
1482
|
+
;;;; Rules for `fvpromote_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1483
|
+
|
1484
|
+
;; Promote a register.
|
1485
|
+
(rule (lower (has_type $F64X2 (fvpromote_low x @ (value_type $F32X4))))
|
1486
|
+
(fpromote_reg $F64X2 $F32X4 (vec_merge_low_lane_order $I32X4 x x)))
|
1487
|
+
|
1488
|
+
|
1489
|
+
;;;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1490
|
+
|
1491
|
+
;; Demote a register.
|
1492
|
+
(rule (lower (has_type (fits_in_64 dst_ty) (fdemote x @ (value_type src_ty))))
|
1493
|
+
(fdemote_reg dst_ty src_ty (FpuRoundMode.Current) x))
|
1494
|
+
|
1495
|
+
|
1496
|
+
;;;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1497
|
+
|
1498
|
+
;; Demote a register.
|
1499
|
+
(rule (lower (has_type $F32X4 (fvdemote x @ (value_type $F64X2))))
|
1500
|
+
(let ((dst Reg (fdemote_reg $F32X4 $F64X2 (FpuRoundMode.Current) x)))
|
1501
|
+
(vec_pack_lane_order $I64X2 (vec_lshr_imm $I64X2 dst 32)
|
1502
|
+
(vec_imm $I64X2 0))))
|
1503
|
+
|
1504
|
+
|
1505
|
+
;;;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1506
|
+
|
1507
|
+
;; Convert a 32-bit or smaller unsigned integer to $F32 (z15 instruction).
|
1508
|
+
(rule 1 (lower (has_type $F32
|
1509
|
+
(fcvt_from_uint x @ (value_type (and (vxrs_ext2_enabled) (fits_in_32 ty))))))
|
1510
|
+
(fcvt_from_uint_reg $F32 (FpuRoundMode.ToNearestTiesToEven)
|
1511
|
+
(put_in_reg_zext32 x)))
|
1512
|
+
|
1513
|
+
;; Convert a 64-bit or smaller unsigned integer to $F32, via an intermediate $F64.
|
1514
|
+
(rule (lower (has_type $F32 (fcvt_from_uint x @ (value_type (fits_in_64 ty)))))
|
1515
|
+
(fdemote_reg $F32 $F64 (FpuRoundMode.ToNearestTiesToEven)
|
1516
|
+
(fcvt_from_uint_reg $F64 (FpuRoundMode.ShorterPrecision)
|
1517
|
+
(put_in_reg_zext64 x))))
|
1518
|
+
|
1519
|
+
;; Convert a 64-bit or smaller unsigned integer to $F64.
|
1520
|
+
(rule (lower (has_type $F64 (fcvt_from_uint x @ (value_type (fits_in_64 ty)))))
|
1521
|
+
(fcvt_from_uint_reg $F64 (FpuRoundMode.ToNearestTiesToEven)
|
1522
|
+
(put_in_reg_zext64 x)))
|
1523
|
+
|
1524
|
+
;; Convert $I32X4 to $F32X4 (z15 instruction).
|
1525
|
+
(rule 1 (lower (has_type (and (vxrs_ext2_enabled) $F32X4)
|
1526
|
+
(fcvt_from_uint x @ (value_type $I32X4))))
|
1527
|
+
(fcvt_from_uint_reg $F32X4 (FpuRoundMode.ToNearestTiesToEven) x))
|
1528
|
+
|
1529
|
+
;; Convert $I32X4 to $F32X4 (via two $F64X2 on z14).
|
1530
|
+
(rule (lower (has_type (and (vxrs_ext2_disabled) $F32X4)
|
1531
|
+
(fcvt_from_uint x @ (value_type $I32X4))))
|
1532
|
+
(vec_permute $F32X4
|
1533
|
+
(fdemote_reg $F32X4 $F64X2 (FpuRoundMode.ToNearestTiesToEven)
|
1534
|
+
(fcvt_from_uint_reg $F64X2 (FpuRoundMode.ShorterPrecision)
|
1535
|
+
(vec_unpacku_high $I32X4 x)))
|
1536
|
+
(fdemote_reg $F32X4 $F64X2 (FpuRoundMode.ToNearestTiesToEven)
|
1537
|
+
(fcvt_from_uint_reg $F64X2 (FpuRoundMode.ShorterPrecision)
|
1538
|
+
(vec_unpacku_low $I32X4 x)))
|
1539
|
+
(vec_imm $I8X16 (imm8x16 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27))))
|
1540
|
+
|
1541
|
+
;; Convert $I64X2 to $F64X2.
|
1542
|
+
(rule (lower (has_type $F64X2 (fcvt_from_uint x @ (value_type $I64X2))))
|
1543
|
+
(fcvt_from_uint_reg $F64X2 (FpuRoundMode.ToNearestTiesToEven) x))
|
1544
|
+
|
1545
|
+
|
1546
|
+
;;;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1547
|
+
|
1548
|
+
;; Convert a 32-bit or smaller signed integer to $F32 (z15 instruction).
|
1549
|
+
(rule 1 (lower (has_type $F32
|
1550
|
+
(fcvt_from_sint x @ (value_type (and (vxrs_ext2_enabled) (fits_in_32 ty))))))
|
1551
|
+
(fcvt_from_sint_reg $F32 (FpuRoundMode.ToNearestTiesToEven)
|
1552
|
+
(put_in_reg_sext32 x)))
|
1553
|
+
|
1554
|
+
;; Convert a 64-bit or smaller signed integer to $F32, via an intermediate $F64.
|
1555
|
+
(rule (lower (has_type $F32 (fcvt_from_sint x @ (value_type (fits_in_64 ty)))))
|
1556
|
+
(fdemote_reg $F32 $F64 (FpuRoundMode.ToNearestTiesToEven)
|
1557
|
+
(fcvt_from_sint_reg $F64 (FpuRoundMode.ShorterPrecision)
|
1558
|
+
(put_in_reg_sext64 x))))
|
1559
|
+
|
1560
|
+
;; Convert a 64-bit or smaller signed integer to $F64.
|
1561
|
+
(rule (lower (has_type $F64 (fcvt_from_sint x @ (value_type (fits_in_64 ty)))))
|
1562
|
+
(fcvt_from_sint_reg $F64 (FpuRoundMode.ToNearestTiesToEven)
|
1563
|
+
(put_in_reg_sext64 x)))
|
1564
|
+
|
1565
|
+
;; Convert $I32X4 to $F32X4 (z15 instruction).
|
1566
|
+
(rule 1 (lower (has_type (and (vxrs_ext2_enabled) $F32X4)
|
1567
|
+
(fcvt_from_sint x @ (value_type $I32X4))))
|
1568
|
+
(fcvt_from_sint_reg $F32X4 (FpuRoundMode.ToNearestTiesToEven) x))
|
1569
|
+
|
1570
|
+
;; Convert $I32X4 to $F32X4 (via two $F64X2 on z14).
|
1571
|
+
(rule (lower (has_type (and (vxrs_ext2_disabled) $F32X4)
|
1572
|
+
(fcvt_from_sint x @ (value_type $I32X4))))
|
1573
|
+
(vec_permute $F32X4
|
1574
|
+
(fdemote_reg $F32X4 $F64X2 (FpuRoundMode.ToNearestTiesToEven)
|
1575
|
+
(fcvt_from_sint_reg $F64X2 (FpuRoundMode.ShorterPrecision)
|
1576
|
+
(vec_unpacks_high $I32X4 x)))
|
1577
|
+
(fdemote_reg $F32X4 $F64X2 (FpuRoundMode.ToNearestTiesToEven)
|
1578
|
+
(fcvt_from_sint_reg $F64X2 (FpuRoundMode.ShorterPrecision)
|
1579
|
+
(vec_unpacks_low $I32X4 x)))
|
1580
|
+
(vec_imm $I8X16 (imm8x16 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27))))
|
1581
|
+
|
1582
|
+
;; Convert $I64X2 to $F64X2.
|
1583
|
+
(rule (lower (has_type $F64X2 (fcvt_from_sint x @ (value_type $I64X2))))
|
1584
|
+
(fcvt_from_sint_reg $F64X2 (FpuRoundMode.ToNearestTiesToEven) x))
|
1585
|
+
|
1586
|
+
|
1587
|
+
;;;; Rules for `fcvt_to_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1588
|
+
|
1589
|
+
;; Convert a scalar floating-point value in a register to an unsigned integer.
|
1590
|
+
;; Traps if the input cannot be represented in the output type.
|
1591
|
+
(rule (lower (has_type (fits_in_64 dst_ty)
|
1592
|
+
(fcvt_to_uint x @ (value_type src_ty))))
|
1593
|
+
(let ((src Reg (put_in_reg x))
|
1594
|
+
;; First, check whether the input is a NaN, and trap if so.
|
1595
|
+
(_ Reg (trap_if (fcmp_reg src_ty src src)
|
1596
|
+
(floatcc_as_cond (FloatCC.Unordered))
|
1597
|
+
(trap_code_bad_conversion_to_integer)))
|
1598
|
+
;; Now check whether the input is out of range for the target type.
|
1599
|
+
(_ Reg (trap_if (fcmp_reg src_ty src (fcvt_to_uint_ub src_ty dst_ty))
|
1600
|
+
(floatcc_as_cond (FloatCC.GreaterThanOrEqual))
|
1601
|
+
(trap_code_integer_overflow)))
|
1602
|
+
(_ Reg (trap_if (fcmp_reg src_ty src (fcvt_to_uint_lb src_ty))
|
1603
|
+
(floatcc_as_cond (FloatCC.LessThanOrEqual))
|
1604
|
+
(trap_code_integer_overflow)))
|
1605
|
+
;; Perform the conversion using the larger type size.
|
1606
|
+
(flt_ty Type (fcvt_flt_ty dst_ty src_ty))
|
1607
|
+
(src_ext Reg (fpromote_reg flt_ty src_ty src)))
|
1608
|
+
(fcvt_to_uint_reg flt_ty (FpuRoundMode.ToZero) src_ext)))
|
1609
|
+
|
1610
|
+
|
1611
|
+
;;;; Rules for `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1612
|
+
|
1613
|
+
;; Convert a scalar floating-point value in a register to a signed integer.
|
1614
|
+
;; Traps if the input cannot be represented in the output type.
|
1615
|
+
(rule (lower (has_type (fits_in_64 dst_ty)
|
1616
|
+
(fcvt_to_sint x @ (value_type src_ty))))
|
1617
|
+
(let ((src Reg (put_in_reg x))
|
1618
|
+
;; First, check whether the input is a NaN, and trap if so.
|
1619
|
+
(_ Reg (trap_if (fcmp_reg src_ty src src)
|
1620
|
+
(floatcc_as_cond (FloatCC.Unordered))
|
1621
|
+
(trap_code_bad_conversion_to_integer)))
|
1622
|
+
;; Now check whether the input is out of range for the target type.
|
1623
|
+
(_ Reg (trap_if (fcmp_reg src_ty src (fcvt_to_sint_ub src_ty dst_ty))
|
1624
|
+
(floatcc_as_cond (FloatCC.GreaterThanOrEqual))
|
1625
|
+
(trap_code_integer_overflow)))
|
1626
|
+
(_ Reg (trap_if (fcmp_reg src_ty src (fcvt_to_sint_lb src_ty dst_ty))
|
1627
|
+
(floatcc_as_cond (FloatCC.LessThanOrEqual))
|
1628
|
+
(trap_code_integer_overflow)))
|
1629
|
+
;; Perform the conversion using the larger type size.
|
1630
|
+
(flt_ty Type (fcvt_flt_ty dst_ty src_ty))
|
1631
|
+
(src_ext Reg (fpromote_reg flt_ty src_ty src)))
|
1632
|
+
;; Perform the conversion.
|
1633
|
+
(fcvt_to_sint_reg flt_ty (FpuRoundMode.ToZero) src_ext)))
|
1634
|
+
|
1635
|
+
|
1636
|
+
;;;; Rules for `fcvt_to_uint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1637
|
+
|
1638
|
+
;; Convert a scalar floating-point value in a register to an unsigned integer.
|
1639
|
+
(rule -1 (lower (has_type (fits_in_64 dst_ty)
|
1640
|
+
(fcvt_to_uint_sat x @ (value_type src_ty))))
|
1641
|
+
(let ((src Reg (put_in_reg x))
|
1642
|
+
;; Perform the conversion using the larger type size.
|
1643
|
+
(flt_ty Type (fcvt_flt_ty dst_ty src_ty))
|
1644
|
+
(int_ty Type (fcvt_int_ty dst_ty src_ty))
|
1645
|
+
(src_ext Reg (fpromote_reg flt_ty src_ty src))
|
1646
|
+
(dst Reg (fcvt_to_uint_reg flt_ty (FpuRoundMode.ToZero) src_ext)))
|
1647
|
+
;; Clamp the output to the destination type bounds.
|
1648
|
+
(uint_sat_reg dst_ty int_ty dst)))
|
1649
|
+
|
1650
|
+
;; Convert $F32X4 to $I32X4 (z15 instruction).
|
1651
|
+
(rule 1 (lower (has_type (and (vxrs_ext2_enabled) $I32X4)
|
1652
|
+
(fcvt_to_uint_sat x @ (value_type $F32X4))))
|
1653
|
+
(fcvt_to_uint_reg $F32X4 (FpuRoundMode.ToZero) x))
|
1654
|
+
|
1655
|
+
;; Convert $F32X4 to $I32X4 (via two $F64X2 on z14).
|
1656
|
+
(rule (lower (has_type (and (vxrs_ext2_disabled) $I32X4)
|
1657
|
+
(fcvt_to_uint_sat x @ (value_type $F32X4))))
|
1658
|
+
(vec_pack_usat $I64X2
|
1659
|
+
(fcvt_to_uint_reg $F64X2 (FpuRoundMode.ToZero)
|
1660
|
+
(fpromote_reg $F64X2 $F32X4 (vec_merge_high $I32X4 x x)))
|
1661
|
+
(fcvt_to_uint_reg $F64X2 (FpuRoundMode.ToZero)
|
1662
|
+
(fpromote_reg $F64X2 $F32X4 (vec_merge_low $I32X4 x x)))))
|
1663
|
+
|
1664
|
+
;; Convert $F64X2 to $I64X2.
|
1665
|
+
(rule (lower (has_type $I64X2 (fcvt_to_uint_sat x @ (value_type $F64X2))))
|
1666
|
+
(fcvt_to_uint_reg $F64X2 (FpuRoundMode.ToZero) x))
|
1667
|
+
|
1668
|
+
|
1669
|
+
;;;; Rules for `fcvt_to_sint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1670
|
+
|
1671
|
+
;; Convert a scalar floating-point value in a register to a signed integer.
|
1672
|
+
(rule -1 (lower (has_type (fits_in_64 dst_ty)
|
1673
|
+
(fcvt_to_sint_sat x @ (value_type src_ty))))
|
1674
|
+
(let ((src Reg (put_in_reg x))
|
1675
|
+
;; Perform the conversion using the larger type size.
|
1676
|
+
(flt_ty Type (fcvt_flt_ty dst_ty src_ty))
|
1677
|
+
(int_ty Type (fcvt_int_ty dst_ty src_ty))
|
1678
|
+
(src_ext Reg (fpromote_reg flt_ty src_ty src))
|
1679
|
+
(dst Reg (fcvt_to_sint_reg flt_ty (FpuRoundMode.ToZero) src_ext))
|
1680
|
+
;; In most special cases, the Z instruction already yields the
|
1681
|
+
;; result expected by Cranelift semantics. The only exception
|
1682
|
+
;; it the case where the input was a NaN. We explicitly check
|
1683
|
+
;; for that and force the output to 0 in that case.
|
1684
|
+
(sat Reg (with_flags_reg (fcmp_reg src_ty src src)
|
1685
|
+
(cmov_imm int_ty
|
1686
|
+
(floatcc_as_cond (FloatCC.Unordered)) 0 dst))))
|
1687
|
+
;; Clamp the output to the destination type bounds.
|
1688
|
+
(sint_sat_reg dst_ty int_ty sat)))
|
1689
|
+
|
1690
|
+
;; Convert $F32X4 to $I32X4 (z15 instruction).
|
1691
|
+
(rule 1 (lower (has_type (and (vxrs_ext2_enabled) $I32X4)
|
1692
|
+
(fcvt_to_sint_sat src @ (value_type $F32X4))))
|
1693
|
+
;; See above for why we need to handle NaNs specially.
|
1694
|
+
(vec_select $I32X4
|
1695
|
+
(fcvt_to_sint_reg $F32X4 (FpuRoundMode.ToZero) src)
|
1696
|
+
(vec_imm $I32X4 0) (vec_fcmpeq $F32X4 src src)))
|
1697
|
+
|
1698
|
+
;; Convert $F32X4 to $I32X4 (via two $F64X2 on z14).
|
1699
|
+
(rule (lower (has_type (and (vxrs_ext2_disabled) $I32X4)
|
1700
|
+
(fcvt_to_sint_sat src @ (value_type $F32X4))))
|
1701
|
+
;; See above for why we need to handle NaNs specially.
|
1702
|
+
(vec_select $I32X4
|
1703
|
+
(vec_pack_ssat $I64X2
|
1704
|
+
(fcvt_to_sint_reg $F64X2 (FpuRoundMode.ToZero)
|
1705
|
+
(fpromote_reg $F64X2 $F32X4 (vec_merge_high $I32X4 src src)))
|
1706
|
+
(fcvt_to_sint_reg $F64X2 (FpuRoundMode.ToZero)
|
1707
|
+
(fpromote_reg $F64X2 $F32X4 (vec_merge_low $I32X4 src src))))
|
1708
|
+
(vec_imm $I32X4 0) (vec_fcmpeq $F32X4 src src)))
|
1709
|
+
|
1710
|
+
;; Convert $F64X2 to $I64X2.
|
1711
|
+
(rule (lower (has_type $I64X2 (fcvt_to_sint_sat src @ (value_type $F64X2))))
|
1712
|
+
;; See above for why we need to handle NaNs specially.
|
1713
|
+
(vec_select $I64X2
|
1714
|
+
(fcvt_to_sint_reg $F64X2 (FpuRoundMode.ToZero) src)
|
1715
|
+
(vec_imm $I64X2 0) (vec_fcmpeq $F64X2 src src)))
|
1716
|
+
|
1717
|
+
|
1718
|
+
;;;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1719
|
+
|
1720
|
+
;; Reinterpret a 64-bit integer value as floating-point.
|
1721
|
+
(rule (lower (has_type $F64 (bitcast _ x @ (value_type $I64))))
|
1722
|
+
(vec_insert_lane_undef $F64X2 x 0 (zero_reg)))
|
1723
|
+
|
1724
|
+
;; Reinterpret a 64-bit floating-point value as integer.
|
1725
|
+
(rule (lower (has_type $I64 (bitcast _ x @ (value_type $F64))))
|
1726
|
+
(vec_extract_lane $F64X2 x 0 (zero_reg)))
|
1727
|
+
|
1728
|
+
;; Reinterpret a 32-bit integer value as floating-point.
|
1729
|
+
(rule (lower (has_type $F32 (bitcast _ x @ (value_type $I32))))
|
1730
|
+
(vec_insert_lane_undef $F32X4 x 0 (zero_reg)))
|
1731
|
+
|
1732
|
+
;; Reinterpret a 32-bit floating-point value as integer.
|
1733
|
+
(rule (lower (has_type $I32 (bitcast _ x @ (value_type $F32))))
|
1734
|
+
(vec_extract_lane $F32X4 x 0 (zero_reg)))
|
1735
|
+
|
1736
|
+
;; Bitcast between types residing in GPRs is a no-op.
|
1737
|
+
(rule 1 (lower (has_type (gpr32_ty _)
|
1738
|
+
(bitcast _ x @ (value_type (gpr32_ty _))))) x)
|
1739
|
+
(rule 2 (lower (has_type (gpr64_ty _)
|
1740
|
+
(bitcast _ x @ (value_type (gpr64_ty _))))) x)
|
1741
|
+
|
1742
|
+
;; Bitcast between types residing in FPRs is a no-op.
|
1743
|
+
(rule 3 (lower (has_type (ty_scalar_float _)
|
1744
|
+
(bitcast _ x @ (value_type (ty_scalar_float _))))) x)
|
1745
|
+
|
1746
|
+
;; Bitcast between types residing in VRs is a no-op if lane count is unchanged.
|
1747
|
+
(rule 5 (lower (has_type (multi_lane bits count)
|
1748
|
+
(bitcast _ x @ (value_type (multi_lane bits count))))) x)
|
1749
|
+
|
1750
|
+
;; Bitcast between types residing in VRs with different lane counts is a
|
1751
|
+
;; no-op if the operation's MemFlags indicate a byte order compatible with
|
1752
|
+
;; the current lane order. Otherwise, lane elements need to be swapped,
|
1753
|
+
;; first in the input type, and then again in the output type. This could
|
1754
|
+
;; be optimized further, but we don't bother at the moment since due to our
|
1755
|
+
;; choice of lane order depending on the current function ABI, this case will
|
1756
|
+
;; currently never arise in practice.
|
1757
|
+
(rule 4 (lower (has_type (vr128_ty out_ty)
|
1758
|
+
(bitcast flags x @ (value_type (vr128_ty in_ty)))))
|
1759
|
+
(abi_vec_elt_rev (lane_order_from_memflags flags) out_ty
|
1760
|
+
(abi_vec_elt_rev (lane_order_from_memflags flags) in_ty x)))
|
1761
|
+
|
1762
|
+
|
1763
|
+
;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1764
|
+
|
1765
|
+
;; Insert vector lane from general-purpose register.
|
1766
|
+
(rule 1 (lower (insertlane x @ (value_type ty)
|
1767
|
+
y @ (value_type in_ty)
|
1768
|
+
(u8_from_uimm8 idx)))
|
1769
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
1770
|
+
(vec_insert_lane ty x y (be_lane_idx ty idx) (zero_reg)))
|
1771
|
+
|
1772
|
+
;; Insert vector lane from floating-point register.
|
1773
|
+
(rule 0 (lower (insertlane x @ (value_type ty)
|
1774
|
+
y @ (value_type (ty_scalar_float _))
|
1775
|
+
(u8_from_uimm8 idx)))
|
1776
|
+
(vec_move_lane_and_insert ty x (be_lane_idx ty idx) y 0))
|
1777
|
+
|
1778
|
+
;; Insert vector lane from another vector lane.
|
1779
|
+
(rule 2 (lower (insertlane x @ (value_type ty)
|
1780
|
+
(extractlane y (u8_from_uimm8 src_idx))
|
1781
|
+
(u8_from_uimm8 dst_idx)))
|
1782
|
+
(vec_move_lane_and_insert ty x (be_lane_idx ty dst_idx)
|
1783
|
+
y (be_lane_idx ty src_idx)))
|
1784
|
+
|
1785
|
+
;; Insert vector lane from signed 16-bit immediate.
|
1786
|
+
(rule 3 (lower (insertlane x @ (value_type ty) (i16_from_value y)
|
1787
|
+
(u8_from_uimm8 idx)))
|
1788
|
+
(vec_insert_lane_imm ty x y (be_lane_idx ty idx)))
|
1789
|
+
|
1790
|
+
;; Insert vector lane from big-endian memory.
|
1791
|
+
(rule 4 (lower (insertlane x @ (value_type ty) (sinkable_load y)
|
1792
|
+
(u8_from_uimm8 idx)))
|
1793
|
+
(vec_load_lane ty x (sink_load y) (be_lane_idx ty idx)))
|
1794
|
+
|
1795
|
+
;; Insert vector lane from little-endian memory.
|
1796
|
+
(rule 5 (lower (insertlane x @ (value_type ty) (sinkable_load_little y)
|
1797
|
+
(u8_from_uimm8 idx)))
|
1798
|
+
(vec_load_lane_little ty x (sink_load y) (be_lane_idx ty idx)))
|
1799
|
+
|
1800
|
+
|
1801
|
+
;; Helper to extract one lane from a vector and insert it into another.
|
1802
|
+
(decl vec_move_lane_and_insert (Type Reg u8 Reg u8) Reg)
|
1803
|
+
|
1804
|
+
;; For 64-bit elements we always use VPDI.
|
1805
|
+
(rule (vec_move_lane_and_insert ty @ (multi_lane 64 _) dst 0 src src_idx)
|
1806
|
+
(vec_permute_dw_imm ty src src_idx dst 1))
|
1807
|
+
(rule (vec_move_lane_and_insert ty @ (multi_lane 64 _) dst 1 src src_idx)
|
1808
|
+
(vec_permute_dw_imm ty dst 0 src src_idx))
|
1809
|
+
|
1810
|
+
;; If source and destination index are the same, use vec_select.
|
1811
|
+
(rule -1 (vec_move_lane_and_insert ty dst idx src idx)
|
1812
|
+
(vec_select ty src
|
1813
|
+
dst (vec_imm_byte_mask ty (lane_byte_mask ty idx))))
|
1814
|
+
|
1815
|
+
;; Otherwise replicate source first and then use vec_select.
|
1816
|
+
(rule -2 (vec_move_lane_and_insert ty dst dst_idx src src_idx)
|
1817
|
+
(vec_select ty (vec_replicate_lane ty src src_idx)
|
1818
|
+
dst (vec_imm_byte_mask ty (lane_byte_mask ty dst_idx))))
|
1819
|
+
|
1820
|
+
|
1821
|
+
;; Helper to implement a generic little-endian variant of vec_load_lane.
|
1822
|
+
(decl vec_load_lane_little (Type Reg MemArg u8) Reg)
|
1823
|
+
|
1824
|
+
;; 8-byte little-endian loads can be performed via a normal load.
|
1825
|
+
(rule (vec_load_lane_little ty @ (multi_lane 8 _) dst addr lane_imm)
|
1826
|
+
(vec_load_lane ty dst addr lane_imm))
|
1827
|
+
|
1828
|
+
;; On z15, we have instructions to perform little-endian loads.
|
1829
|
+
(rule 1 (vec_load_lane_little (and (vxrs_ext2_enabled)
|
1830
|
+
ty @ (multi_lane 16 _)) dst addr lane_imm)
|
1831
|
+
(vec_load_lane_rev ty dst addr lane_imm))
|
1832
|
+
(rule 1 (vec_load_lane_little (and (vxrs_ext2_enabled)
|
1833
|
+
ty @ (multi_lane 32 _)) dst addr lane_imm)
|
1834
|
+
(vec_load_lane_rev ty dst addr lane_imm))
|
1835
|
+
(rule 1 (vec_load_lane_little (and (vxrs_ext2_enabled)
|
1836
|
+
ty @ (multi_lane 64 _)) dst addr lane_imm)
|
1837
|
+
(vec_load_lane_rev ty dst addr lane_imm))
|
1838
|
+
|
1839
|
+
;; On z14, use a little-endian load to GPR followed by vec_insert_lane.
|
1840
|
+
(rule (vec_load_lane_little (and (vxrs_ext2_disabled)
|
1841
|
+
ty @ (multi_lane 16 _)) dst addr lane_imm)
|
1842
|
+
(vec_insert_lane ty dst (loadrev16 addr) lane_imm (zero_reg)))
|
1843
|
+
(rule (vec_load_lane_little (and (vxrs_ext2_disabled)
|
1844
|
+
ty @ (multi_lane 32 _)) dst addr lane_imm)
|
1845
|
+
(vec_insert_lane ty dst (loadrev32 addr) lane_imm (zero_reg)))
|
1846
|
+
(rule (vec_load_lane_little (and (vxrs_ext2_disabled)
|
1847
|
+
ty @ (multi_lane 64 _)) dst addr lane_imm)
|
1848
|
+
(vec_insert_lane ty dst (loadrev64 addr) lane_imm (zero_reg)))
|
1849
|
+
|
1850
|
+
;; Helper to implement a generic little-endian variant of vec_load_lane_undef.
|
1851
|
+
(decl vec_load_lane_little_undef (Type MemArg u8) Reg)
|
1852
|
+
|
1853
|
+
;; 8-byte little-endian loads can be performed via a normal load.
|
1854
|
+
(rule (vec_load_lane_little_undef ty @ (multi_lane 8 _) addr lane_imm)
|
1855
|
+
(vec_load_lane_undef ty addr lane_imm))
|
1856
|
+
|
1857
|
+
;; On z15, we have instructions to perform little-endian loads.
|
1858
|
+
(rule 1 (vec_load_lane_little_undef (and (vxrs_ext2_enabled)
|
1859
|
+
ty @ (multi_lane 16 _)) addr lane_imm)
|
1860
|
+
(vec_load_lane_rev_undef ty addr lane_imm))
|
1861
|
+
(rule 1 (vec_load_lane_little_undef (and (vxrs_ext2_enabled)
|
1862
|
+
ty @ (multi_lane 32 _)) addr lane_imm)
|
1863
|
+
(vec_load_lane_rev_undef ty addr lane_imm))
|
1864
|
+
(rule 1 (vec_load_lane_little_undef (and (vxrs_ext2_enabled)
|
1865
|
+
ty @ (multi_lane 64 _)) addr lane_imm)
|
1866
|
+
(vec_load_lane_rev_undef ty addr lane_imm))
|
1867
|
+
|
1868
|
+
;; On z14, use a little-endian load to GPR followed by vec_insert_lane_undef.
|
1869
|
+
(rule (vec_load_lane_little_undef (and (vxrs_ext2_disabled)
|
1870
|
+
ty @ (multi_lane 16 _)) addr lane_imm)
|
1871
|
+
(vec_insert_lane_undef ty (loadrev16 addr) lane_imm (zero_reg)))
|
1872
|
+
(rule (vec_load_lane_little_undef (and (vxrs_ext2_disabled)
|
1873
|
+
ty @ (multi_lane 32 _)) addr lane_imm)
|
1874
|
+
(vec_insert_lane_undef ty (loadrev32 addr) lane_imm (zero_reg)))
|
1875
|
+
(rule (vec_load_lane_little_undef (and (vxrs_ext2_disabled)
|
1876
|
+
ty @ (multi_lane 64 _)) addr lane_imm)
|
1877
|
+
(vec_insert_lane_undef ty (loadrev64 addr) lane_imm (zero_reg)))
|
1878
|
+
|
1879
|
+
|
1880
|
+
;;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1881
|
+
|
1882
|
+
;; Extract vector lane to general-purpose register.
|
1883
|
+
(rule 1 (lower (has_type out_ty
|
1884
|
+
(extractlane x @ (value_type ty) (u8_from_uimm8 idx))))
|
1885
|
+
(if (ty_int_ref_scalar_64 out_ty))
|
1886
|
+
(vec_extract_lane ty x (be_lane_idx ty idx) (zero_reg)))
|
1887
|
+
|
1888
|
+
;; Extract vector lane to floating-point register.
|
1889
|
+
(rule 0 (lower (has_type (ty_scalar_float _)
|
1890
|
+
(extractlane x @ (value_type ty) (u8_from_uimm8 idx))))
|
1891
|
+
(vec_replicate_lane ty x (be_lane_idx ty idx)))
|
1892
|
+
|
1893
|
+
;; Extract vector lane and store to big-endian memory.
|
1894
|
+
(rule 6 (lower (store flags @ (bigendian)
|
1895
|
+
(extractlane x @ (value_type ty) (u8_from_uimm8 idx))
|
1896
|
+
addr offset))
|
1897
|
+
(side_effect (vec_store_lane ty x
|
1898
|
+
(lower_address flags addr offset) (be_lane_idx ty idx))))
|
1899
|
+
|
1900
|
+
;; Extract vector lane and store to little-endian memory.
|
1901
|
+
(rule 5 (lower (store flags @ (littleendian)
|
1902
|
+
(extractlane x @ (value_type ty) (u8_from_uimm8 idx))
|
1903
|
+
addr offset))
|
1904
|
+
(side_effect (vec_store_lane_little ty x
|
1905
|
+
(lower_address flags addr offset) (be_lane_idx ty idx))))
|
1906
|
+
|
1907
|
+
|
1908
|
+
;; Helper to implement a generic little-endian variant of vec_store_lane.
|
1909
|
+
(decl vec_store_lane_little (Type Reg MemArg u8) SideEffectNoResult)
|
1910
|
+
|
1911
|
+
;; 8-byte little-endian stores can be performed via a normal store.
|
1912
|
+
(rule (vec_store_lane_little ty @ (multi_lane 8 _) src addr lane_imm)
|
1913
|
+
(vec_store_lane ty src addr lane_imm))
|
1914
|
+
|
1915
|
+
;; On z15, we have instructions to perform little-endian stores.
|
1916
|
+
(rule 1 (vec_store_lane_little (and (vxrs_ext2_enabled)
|
1917
|
+
ty @ (multi_lane 16 _)) src addr lane_imm)
|
1918
|
+
(vec_store_lane_rev ty src addr lane_imm))
|
1919
|
+
(rule 1 (vec_store_lane_little (and (vxrs_ext2_enabled)
|
1920
|
+
ty @ (multi_lane 32 _)) src addr lane_imm)
|
1921
|
+
(vec_store_lane_rev ty src addr lane_imm))
|
1922
|
+
(rule 1 (vec_store_lane_little (and (vxrs_ext2_enabled)
|
1923
|
+
ty @ (multi_lane 64 _)) src addr lane_imm)
|
1924
|
+
(vec_store_lane_rev ty src addr lane_imm))
|
1925
|
+
|
1926
|
+
;; On z14, use vec_extract_lane followed by a little-endian store from GPR.
|
1927
|
+
(rule (vec_store_lane_little (and (vxrs_ext2_disabled)
|
1928
|
+
ty @ (multi_lane 16 _)) src addr lane_imm)
|
1929
|
+
(storerev16 (vec_extract_lane ty src lane_imm (zero_reg)) addr))
|
1930
|
+
(rule (vec_store_lane_little (and (vxrs_ext2_disabled)
|
1931
|
+
ty @ (multi_lane 32 _)) src addr lane_imm)
|
1932
|
+
(storerev32 (vec_extract_lane ty src lane_imm (zero_reg)) addr))
|
1933
|
+
(rule (vec_store_lane_little (and (vxrs_ext2_disabled)
|
1934
|
+
ty @ (multi_lane 64 _)) src addr lane_imm)
|
1935
|
+
(storerev64 (vec_extract_lane ty src lane_imm (zero_reg)) addr))
|
1936
|
+
|
1937
|
+
|
1938
|
+
;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1939
|
+
|
1940
|
+
;; Load replicated value from general-purpose register.
|
1941
|
+
(rule 1 (lower (has_type ty (splat x @ (value_type in_ty))))
|
1942
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
1943
|
+
(vec_replicate_lane ty (vec_insert_lane_undef ty x 0 (zero_reg)) 0))
|
1944
|
+
|
1945
|
+
;; Load replicated value from floating-point register.
|
1946
|
+
(rule 0 (lower (has_type ty (splat
|
1947
|
+
x @ (value_type (ty_scalar_float _)))))
|
1948
|
+
(vec_replicate_lane ty x 0))
|
1949
|
+
|
1950
|
+
;; Load replicated value from vector lane.
|
1951
|
+
(rule 2 (lower (has_type ty (splat (extractlane x (u8_from_uimm8 idx)))))
|
1952
|
+
(vec_replicate_lane ty x (be_lane_idx ty idx)))
|
1953
|
+
|
1954
|
+
;; Load replicated 16-bit immediate value.
|
1955
|
+
(rule 3 (lower (has_type ty (splat (i16_from_value x))))
|
1956
|
+
(vec_imm_replicate ty x))
|
1957
|
+
|
1958
|
+
;; Load replicated value from big-endian memory.
|
1959
|
+
(rule 4 (lower (has_type ty (splat (sinkable_load x))))
|
1960
|
+
(vec_load_replicate ty (sink_load x)))
|
1961
|
+
|
1962
|
+
;; Load replicated value from little-endian memory.
|
1963
|
+
(rule 5 (lower (has_type ty (splat (sinkable_load_little x))))
|
1964
|
+
(vec_load_replicate_little ty (sink_load x)))
|
1965
|
+
|
1966
|
+
|
1967
|
+
;; Helper to implement a generic little-endian variant of vec_load_replicate
|
1968
|
+
(decl vec_load_replicate_little (Type MemArg) Reg)
|
1969
|
+
|
1970
|
+
;; 8-byte little-endian loads can be performed via a normal load.
|
1971
|
+
(rule (vec_load_replicate_little ty @ (multi_lane 8 _) addr)
|
1972
|
+
(vec_load_replicate ty addr))
|
1973
|
+
|
1974
|
+
;; On z15, we have instructions to perform little-endian loads.
|
1975
|
+
(rule 1 (vec_load_replicate_little (and (vxrs_ext2_enabled)
|
1976
|
+
ty @ (multi_lane 16 _)) addr)
|
1977
|
+
(vec_load_replicate_rev ty addr))
|
1978
|
+
(rule 1 (vec_load_replicate_little (and (vxrs_ext2_enabled)
|
1979
|
+
ty @ (multi_lane 32 _)) addr)
|
1980
|
+
(vec_load_replicate_rev ty addr))
|
1981
|
+
(rule 1 (vec_load_replicate_little (and (vxrs_ext2_enabled)
|
1982
|
+
ty @ (multi_lane 64 _)) addr)
|
1983
|
+
(vec_load_replicate_rev ty addr))
|
1984
|
+
|
1985
|
+
;; On z14, use a little-endian load (via GPR) and replicate.
|
1986
|
+
(rule (vec_load_replicate_little (and (vxrs_ext2_disabled)
|
1987
|
+
ty @ (multi_lane 16 _)) addr)
|
1988
|
+
(vec_replicate_lane ty (vec_load_lane_little_undef ty addr 0) 0))
|
1989
|
+
(rule (vec_load_replicate_little (and (vxrs_ext2_disabled)
|
1990
|
+
ty @ (multi_lane 32 _)) addr)
|
1991
|
+
(vec_replicate_lane ty (vec_load_lane_little_undef ty addr 0) 0))
|
1992
|
+
(rule (vec_load_replicate_little (and (vxrs_ext2_disabled)
|
1993
|
+
ty @ (multi_lane 64 _)) addr)
|
1994
|
+
(vec_replicate_lane ty (vec_load_lane_little_undef ty addr 0) 0))
|
1995
|
+
|
1996
|
+
|
1997
|
+
;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1998
|
+
|
1999
|
+
;; Load scalar value from general-purpose register.
|
2000
|
+
(rule 1 (lower (has_type ty (scalar_to_vector
|
2001
|
+
x @ (value_type in_ty))))
|
2002
|
+
(if (ty_int_ref_scalar_64 in_ty))
|
2003
|
+
(vec_insert_lane ty (vec_imm ty 0) x (be_lane_idx ty 0) (zero_reg)))
|
2004
|
+
|
2005
|
+
;; Load scalar value from floating-point register.
|
2006
|
+
(rule 0 (lower (has_type ty (scalar_to_vector
|
2007
|
+
x @ (value_type (ty_scalar_float _)))))
|
2008
|
+
(vec_move_lane_and_zero ty (be_lane_idx ty 0) x 0))
|
2009
|
+
|
2010
|
+
;; Load scalar value from vector lane.
|
2011
|
+
(rule 2 (lower (has_type ty (scalar_to_vector
|
2012
|
+
(extractlane x (u8_from_uimm8 idx)))))
|
2013
|
+
(vec_move_lane_and_zero ty (be_lane_idx ty 0) x (be_lane_idx ty idx)))
|
2014
|
+
|
2015
|
+
;; Load scalar 16-bit immediate value.
|
2016
|
+
(rule 3 (lower (has_type ty (scalar_to_vector (i16_from_value x))))
|
2017
|
+
(vec_insert_lane_imm ty (vec_imm ty 0) x (be_lane_idx ty 0)))
|
2018
|
+
|
2019
|
+
;; Load scalar value from big-endian memory.
|
2020
|
+
(rule 4 (lower (has_type ty (scalar_to_vector (sinkable_load x))))
|
2021
|
+
(vec_load_lane ty (vec_imm ty 0) (sink_load x) (be_lane_idx ty 0)))
|
2022
|
+
|
2023
|
+
;; Load scalar value lane from little-endian memory.
|
2024
|
+
(rule 5 (lower (has_type ty (scalar_to_vector (sinkable_load_little x))))
|
2025
|
+
(vec_load_lane_little ty (vec_imm ty 0) (sink_load x) (be_lane_idx ty 0)))
|
2026
|
+
|
2027
|
+
|
2028
|
+
;; Helper to extract one lane from a vector and insert it into a zero vector.
|
2029
|
+
(decl vec_move_lane_and_zero (Type u8 Reg u8) Reg)
|
2030
|
+
|
2031
|
+
;; For 64-bit elements we always use VPDI.
|
2032
|
+
(rule (vec_move_lane_and_zero ty @ (multi_lane 64 _) 0 src src_idx)
|
2033
|
+
(vec_permute_dw_imm ty src src_idx (vec_imm ty 0) 0))
|
2034
|
+
(rule (vec_move_lane_and_zero ty @ (multi_lane 64 _) 1 src src_idx)
|
2035
|
+
(vec_permute_dw_imm ty (vec_imm ty 0) 0 src src_idx))
|
2036
|
+
|
2037
|
+
;; If source and destination index are the same, simply mask to this lane.
|
2038
|
+
(rule -1 (vec_move_lane_and_zero ty idx src idx)
|
2039
|
+
(vec_and ty src
|
2040
|
+
(vec_imm_byte_mask ty (lane_byte_mask ty idx))))
|
2041
|
+
|
2042
|
+
;; Otherwise replicate source first and then mask to the lane.
|
2043
|
+
(rule -2 (vec_move_lane_and_zero ty dst_idx src src_idx)
|
2044
|
+
(vec_and ty (vec_replicate_lane ty src src_idx)
|
2045
|
+
(vec_imm_byte_mask ty (lane_byte_mask ty dst_idx))))
|
2046
|
+
|
2047
|
+
|
2048
|
+
;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2049
|
+
|
2050
|
+
;; General case: use vec_permute and then mask off zero lanes.
|
2051
|
+
(rule -2 (lower (shuffle x y (shuffle_mask permute_mask and_mask)))
|
2052
|
+
(vec_and $I8X16 (vec_imm_byte_mask $I8X16 and_mask)
|
2053
|
+
(vec_permute $I8X16 x y (vec_imm $I8X16 permute_mask))))
|
2054
|
+
|
2055
|
+
;; If the pattern has no zero lanes, just a vec_permute suffices.
|
2056
|
+
(rule -1 (lower (shuffle x y (shuffle_mask permute_mask 65535)))
|
2057
|
+
(vec_permute $I8X16 x y (vec_imm $I8X16 permute_mask)))
|
2058
|
+
|
2059
|
+
;; Special patterns that can be implemented via MERGE HIGH.
|
2060
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 4 5 6 7 16 17 18 19 20 21 22 23) 65535)))
|
2061
|
+
(vec_merge_high $I64X2 x y))
|
2062
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 16 17 18 19 4 5 6 7 20 21 22 23) 65535)))
|
2063
|
+
(vec_merge_high $I32X4 x y))
|
2064
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 16 17 2 3 18 19 4 5 20 21 6 7 22 23) 65535)))
|
2065
|
+
(vec_merge_high $I16X8 x y))
|
2066
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 16 1 17 2 18 3 19 4 20 5 21 6 22 7 23) 65535)))
|
2067
|
+
(vec_merge_high $I8X16 x y))
|
2068
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 20 21 22 23 0 1 2 3 4 5 6 7) 65535)))
|
2069
|
+
(vec_merge_high $I64X2 y x))
|
2070
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 0 1 2 3 20 21 22 23 4 5 6 7) 65535)))
|
2071
|
+
(vec_merge_high $I32X4 y x))
|
2072
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 0 1 18 19 2 3 20 21 4 5 22 23 6 7) 65535)))
|
2073
|
+
(vec_merge_high $I16X8 y x))
|
2074
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 0 17 1 18 2 19 3 20 4 21 5 22 6 23 7) 65535)))
|
2075
|
+
(vec_merge_high $I8X16 y x))
|
2076
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7) 65535)))
|
2077
|
+
(vec_merge_high $I64X2 x x))
|
2078
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 0 1 2 3 4 5 6 7 4 5 6 7) 65535)))
|
2079
|
+
(vec_merge_high $I32X4 x x))
|
2080
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 0 1 2 3 2 3 4 5 4 5 6 7 6 7) 65535)))
|
2081
|
+
(vec_merge_high $I16X8 x x))
|
2082
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7) 65535)))
|
2083
|
+
(vec_merge_high $I8X16 x x))
|
2084
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 20 21 22 23 16 17 18 19 20 21 22 23) 65535)))
|
2085
|
+
(vec_merge_high $I64X2 y y))
|
2086
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 16 17 18 19 20 21 22 23 20 21 22 23) 65535)))
|
2087
|
+
(vec_merge_high $I32X4 y y))
|
2088
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 16 17 18 19 18 19 20 21 20 21 22 23 22 23) 65535)))
|
2089
|
+
(vec_merge_high $I16X8 y y))
|
2090
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23) 65535)))
|
2091
|
+
(vec_merge_high $I8X16 y y))
|
2092
|
+
|
2093
|
+
;; Special patterns that can be implemented via MERGE LOW.
|
2094
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 12 13 14 15 24 25 26 27 28 29 30 31) 65535)))
|
2095
|
+
(vec_merge_low $I64X2 x y))
|
2096
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 24 25 26 27 12 13 14 15 28 29 30 31) 65535)))
|
2097
|
+
(vec_merge_low $I32X4 x y))
|
2098
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 24 25 10 11 26 27 12 13 28 29 14 15 30 31) 65535)))
|
2099
|
+
(vec_merge_low $I16X8 x y))
|
2100
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 24 9 25 10 26 11 27 12 28 13 29 14 30 15 31) 65535)))
|
2101
|
+
(vec_merge_low $I8X16 x y))
|
2102
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 28 29 30 31 8 9 10 11 12 13 14 15) 65535)))
|
2103
|
+
(vec_merge_low $I64X2 y x))
|
2104
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 8 9 10 11 28 29 30 31 12 13 14 15) 65535)))
|
2105
|
+
(vec_merge_low $I32X4 y x))
|
2106
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 8 9 26 27 10 11 28 29 12 13 30 31 14 15) 65535)))
|
2107
|
+
(vec_merge_low $I16X8 y x))
|
2108
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 8 25 9 26 10 27 11 28 12 29 13 30 14 31 15) 65535)))
|
2109
|
+
(vec_merge_low $I8X16 y x))
|
2110
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 12 13 14 15 8 9 10 11 12 13 14 15) 65535)))
|
2111
|
+
(vec_merge_low $I64X2 x x))
|
2112
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 8 9 10 11 12 13 14 15 12 13 14 15) 65535)))
|
2113
|
+
(vec_merge_low $I32X4 x x))
|
2114
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 8 9 10 11 10 11 12 13 12 13 14 15 14 15) 65535)))
|
2115
|
+
(vec_merge_low $I16X8 x x))
|
2116
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15) 65535)))
|
2117
|
+
(vec_merge_low $I8X16 x x))
|
2118
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 28 29 30 31 24 25 26 27 28 29 30 31) 65535)))
|
2119
|
+
(vec_merge_low $I64X2 y y))
|
2120
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 24 25 26 27 28 29 30 31 28 29 30 31) 65535)))
|
2121
|
+
(vec_merge_low $I32X4 y y))
|
2122
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 24 25 26 27 26 27 28 29 28 29 30 31 30 31) 65535)))
|
2123
|
+
(vec_merge_low $I16X8 y y))
|
2124
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31) 65535)))
|
2125
|
+
(vec_merge_low $I8X16 y y))
|
2126
|
+
|
2127
|
+
;; Special patterns that can be implemented via PACK.
|
2128
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 4 5 6 7 12 13 14 15 20 21 22 23 28 29 30 31) 65535)))
|
2129
|
+
(vec_pack $I64X2 x y))
|
2130
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 2 3 6 7 10 11 14 15 18 19 22 23 26 27 30 31) 65535)))
|
2131
|
+
(vec_pack $I32X4 x y))
|
2132
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31) 65535)))
|
2133
|
+
(vec_pack $I16X8 x y))
|
2134
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 20 21 22 23 28 29 30 31 4 5 6 7 12 13 14 15) 65535)))
|
2135
|
+
(vec_pack $I64X2 y x))
|
2136
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 18 19 22 23 26 27 30 31 2 3 6 7 10 11 14 15) 65535)))
|
2137
|
+
(vec_pack $I32X4 y x))
|
2138
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 17 19 21 23 25 27 29 31 1 3 5 7 9 11 13 15) 65535)))
|
2139
|
+
(vec_pack $I16X8 y x))
|
2140
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 4 5 6 7 12 13 14 15 4 5 6 7 12 13 14 15) 65535)))
|
2141
|
+
(vec_pack $I64X2 x x))
|
2142
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 2 3 6 7 10 11 14 15 2 3 6 7 10 11 14 15) 65535)))
|
2143
|
+
(vec_pack $I32X4 x x))
|
2144
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 1 3 5 7 9 11 13 15 1 3 5 7 9 11 13 15) 65535)))
|
2145
|
+
(vec_pack $I16X8 x x))
|
2146
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 20 21 22 23 28 29 30 31 20 21 22 23 28 29 30 31) 65535)))
|
2147
|
+
(vec_pack $I64X2 y y))
|
2148
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 18 19 22 23 26 27 30 31 18 19 22 23 26 27 30 31) 65535)))
|
2149
|
+
(vec_pack $I32X4 y y))
|
2150
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 17 19 21 23 25 27 29 31 17 19 21 23 25 27 29 31) 65535)))
|
2151
|
+
(vec_pack $I16X8 y y))
|
2152
|
+
|
2153
|
+
;; Special patterns that can be implemented via UNPACK HIGH.
|
2154
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ _ _ 0 1 2 3 _ _ _ _ 4 5 6 7) 3855)))
|
2155
|
+
(vec_unpacku_high $I32X4 x))
|
2156
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ 0 1 _ _ 2 3 _ _ 4 5 _ _ 6 7) 13107)))
|
2157
|
+
(vec_unpacku_high $I16X8 x))
|
2158
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ 0 _ 1 _ 2 _ 3 _ 4 _ 5 _ 6 _ 7) 21845)))
|
2159
|
+
(vec_unpacku_high $I8X16 x))
|
2160
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ _ _ 16 17 18 19 _ _ _ _ 20 21 22 23) 3855)))
|
2161
|
+
(vec_unpacku_high $I32X4 y))
|
2162
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ 16 17 _ _ 18 19 _ _ 20 21 _ _ 22 23) 13107)))
|
2163
|
+
(vec_unpacku_high $I16X8 y))
|
2164
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ 16 _ 17 _ 18 _ 19 _ 20 _ 21 _ 22 _ 23) 21845)))
|
2165
|
+
(vec_unpacku_high $I8X16 y))
|
2166
|
+
|
2167
|
+
;; Special patterns that can be implemented via UNPACK LOW.
|
2168
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ _ _ 8 9 10 11 _ _ _ _ 12 13 14 15) 3855)))
|
2169
|
+
(vec_unpacku_low $I32X4 x))
|
2170
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ 8 9 _ _ 10 11 _ _ 12 13 _ _ 14 15) 13107)))
|
2171
|
+
(vec_unpacku_low $I16X8 x))
|
2172
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ 8 _ 9 _ 10 _ 11 _ 12 _ 13 _ 14 _ 15) 21845)))
|
2173
|
+
(vec_unpacku_low $I8X16 x))
|
2174
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ _ _ 24 25 26 27 _ _ _ _ 28 29 30 31) 3855)))
|
2175
|
+
(vec_unpacku_low $I32X4 y))
|
2176
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ _ 24 25 _ _ 26 27 _ _ 28 29 _ _ 30 31) 13107)))
|
2177
|
+
(vec_unpacku_low $I16X8 y))
|
2178
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 _ 24 _ 25 _ 26 _ 27 _ 28 _ 29 _ 30 _ 31) 21845)))
|
2179
|
+
(vec_unpacku_low $I8X16 y))
|
2180
|
+
|
2181
|
+
;; Special patterns that can be implemented via PERMUTE DOUBLEWORD IMMEDIATE.
|
2182
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 4 5 6 7 24 25 26 27 28 29 30 31) 65535)))
|
2183
|
+
(vec_permute_dw_imm $I8X16 x 0 y 1))
|
2184
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23) 65535)))
|
2185
|
+
(vec_permute_dw_imm $I8X16 x 1 y 0))
|
2186
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 20 21 22 23 8 9 10 11 12 13 14 15) 65535)))
|
2187
|
+
(vec_permute_dw_imm $I8X16 y 0 x 1))
|
2188
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 28 29 30 31 0 1 2 3 4 5 6 7) 65535)))
|
2189
|
+
(vec_permute_dw_imm $I8X16 y 1 x 0))
|
2190
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) 65535)))
|
2191
|
+
(vec_permute_dw_imm $I8X16 x 0 x 1))
|
2192
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 8 9 10 11 12 13 14 15 0 1 2 3 4 5 6 7) 65535)))
|
2193
|
+
(vec_permute_dw_imm $I8X16 x 1 x 0))
|
2194
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31) 65535)))
|
2195
|
+
(vec_permute_dw_imm $I8X16 y 0 y 1))
|
2196
|
+
(rule (lower (shuffle x y (shuffle_mask (imm8x16 24 25 26 27 28 29 30 31 16 17 18 19 20 21 22 23) 65535)))
|
2197
|
+
(vec_permute_dw_imm $I8X16 y 1 y 0))
|
2198
|
+
|
2199
|
+
|
2200
|
+
;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2201
|
+
|
2202
|
+
;; When using big-endian lane order, the lane mask is mostly correct, but we
|
2203
|
+
;; need to handle mask elements outside the range 0..15 by zeroing the lane.
|
2204
|
+
;;
|
2205
|
+
;; To do so efficiently, we compute:
|
2206
|
+
;; permute-lane-element := umin (16, swizzle-lane-element)
|
2207
|
+
;; and pass a zero vector as second operand to the permute instruction.
|
2208
|
+
|
2209
|
+
(rule 1 (lower (has_type (ty_vec128 ty) (swizzle x y)))
|
2210
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2211
|
+
(vec_permute ty x (vec_imm ty 0)
|
2212
|
+
(vec_umin $I8X16 (vec_imm_splat $I8X16 16) y)))
|
2213
|
+
|
2214
|
+
;; When using little-endian lane order, in addition to zeroing (as above),
|
2215
|
+
;; we need to convert from little-endian to big-endian lane numbering.
|
2216
|
+
;;
|
2217
|
+
;; To do so efficiently, we compute:
|
2218
|
+
;; permute-lane-element := umax (239, ~ swizzle-lane-element)
|
2219
|
+
;; which has the following effect:
|
2220
|
+
;; elements 0 .. 15 --> 255 .. 240 (i.e. 31 .. 16 mod 32)
|
2221
|
+
;; everything else --> 239 (i.e. 15 mod 32)
|
2222
|
+
;;
|
2223
|
+
;; Then, we can use a single permute instruction with
|
2224
|
+
;; a zero vector as first operand (covering lane 15)
|
2225
|
+
;; the input vector as second operand (covering lanes 16 .. 31)
|
2226
|
+
;; to implement the required swizzle semantics.
|
2227
|
+
|
2228
|
+
(rule (lower (has_type (ty_vec128 ty) (swizzle x y)))
|
2229
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2230
|
+
(vec_permute ty (vec_imm ty 0) x
|
2231
|
+
(vec_umax $I8X16 (vec_imm_splat $I8X16 239)
|
2232
|
+
(vec_not $I8X16 y))))
|
2233
|
+
|
2234
|
+
|
2235
|
+
;;;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2236
|
+
|
2237
|
+
;; Load the address of a stack slot.
|
2238
|
+
(rule (lower (has_type ty (stack_addr stack_slot offset)))
|
2239
|
+
(stack_addr_impl ty stack_slot offset))
|
2240
|
+
|
2241
|
+
|
2242
|
+
;;;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2243
|
+
|
2244
|
+
;; Load the address of a function, target reachable via PC-relative instruction.
|
2245
|
+
(rule 1 (lower (func_addr (func_ref_data _ name (reloc_distance_near))))
|
2246
|
+
(load_addr (memarg_symbol name 0 (memflags_trusted))))
|
2247
|
+
|
2248
|
+
;; Load the address of a function, general case.
|
2249
|
+
(rule (lower (func_addr (func_ref_data _ name _)))
|
2250
|
+
(load_symbol_reloc (SymbolReloc.Absolute name 0)))
|
2251
|
+
|
2252
|
+
|
2253
|
+
;;;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2254
|
+
|
2255
|
+
;; Load the address of a symbol, target reachable via PC-relative instruction.
|
2256
|
+
(rule 1 (lower (symbol_value (symbol_value_data name (reloc_distance_near)
|
2257
|
+
off)))
|
2258
|
+
(if-let offset (memarg_symbol_offset off))
|
2259
|
+
(load_addr (memarg_symbol name offset (memflags_trusted))))
|
2260
|
+
|
2261
|
+
;; Load the address of a symbol, general case.
|
2262
|
+
(rule (lower (symbol_value (symbol_value_data name _ offset)))
|
2263
|
+
(load_symbol_reloc (SymbolReloc.Absolute name offset)))
|
2264
|
+
|
2265
|
+
|
2266
|
+
;;;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2267
|
+
|
2268
|
+
;; Load the address of a TLS symbol (ELF general-dynamic model).
|
2269
|
+
(rule (lower (tls_value (symbol_value_data name _ 0)))
|
2270
|
+
(if (tls_model_is_elf_gd))
|
2271
|
+
(let ((symbol SymbolReloc (SymbolReloc.TlsGd name))
|
2272
|
+
(got Reg (load_addr (memarg_got)))
|
2273
|
+
(got_offset Reg (load_symbol_reloc symbol))
|
2274
|
+
(tls_offset Reg (lib_call_tls_get_offset got got_offset symbol)))
|
2275
|
+
(add_reg $I64 tls_offset (thread_pointer))))
|
2276
|
+
|
2277
|
+
;; Helper to perform a call to the __tls_get_offset library routine.
|
2278
|
+
(decl lib_call_tls_get_offset (Reg Reg SymbolReloc) Reg)
|
2279
|
+
(rule (lib_call_tls_get_offset got got_offset symbol)
|
2280
|
+
(let ((tls_offset WritableReg (temp_writable_reg $I64))
|
2281
|
+
(libcall LibCallInfo (lib_call_info_tls_get_offset tls_offset got got_offset symbol))
|
2282
|
+
(_ Unit (lib_accumulate_outgoing_args_size libcall))
|
2283
|
+
(_ InstOutput (side_effect (lib_call libcall))))
|
2284
|
+
tls_offset))
|
2285
|
+
|
2286
|
+
;; Helper to extract the current thread pointer from %a0/%a1.
|
2287
|
+
(decl thread_pointer () Reg)
|
2288
|
+
(rule (thread_pointer)
|
2289
|
+
(insert_ar (lshl_imm $I64 (load_ar 0) 32) 1))
|
2290
|
+
|
2291
|
+
|
2292
|
+
;;;; Rules for `load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2293
|
+
|
2294
|
+
;; Load 8-bit integers.
|
2295
|
+
(rule (lower (has_type $I8 (load flags addr offset)))
|
2296
|
+
(zext32_mem $I8 (lower_address flags addr offset)))
|
2297
|
+
|
2298
|
+
;; Load 16-bit big-endian integers.
|
2299
|
+
(rule (lower (has_type $I16 (load flags @ (bigendian) addr offset)))
|
2300
|
+
(zext32_mem $I16 (lower_address flags addr offset)))
|
2301
|
+
|
2302
|
+
;; Load 16-bit little-endian integers.
|
2303
|
+
(rule -1 (lower (has_type $I16 (load flags @ (littleendian) addr offset)))
|
2304
|
+
(loadrev16 (lower_address flags addr offset)))
|
2305
|
+
|
2306
|
+
;; Load 32-bit big-endian integers.
|
2307
|
+
(rule (lower (has_type $I32 (load flags @ (bigendian) addr offset)))
|
2308
|
+
(load32 (lower_address flags addr offset)))
|
2309
|
+
|
2310
|
+
;; Load 32-bit little-endian integers.
|
2311
|
+
(rule -1 (lower (has_type $I32 (load flags @ (littleendian) addr offset)))
|
2312
|
+
(loadrev32 (lower_address flags addr offset)))
|
2313
|
+
|
2314
|
+
;; Load 64-bit big-endian integers.
|
2315
|
+
(rule (lower (has_type $I64 (load flags @ (bigendian) addr offset)))
|
2316
|
+
(load64 (lower_address flags addr offset)))
|
2317
|
+
|
2318
|
+
;; Load 64-bit little-endian integers.
|
2319
|
+
(rule -1 (lower (has_type $I64 (load flags @ (littleendian) addr offset)))
|
2320
|
+
(loadrev64 (lower_address flags addr offset)))
|
2321
|
+
|
2322
|
+
;; Load 64-bit big-endian references.
|
2323
|
+
(rule (lower (has_type $R64 (load flags @ (bigendian) addr offset)))
|
2324
|
+
(load64 (lower_address flags addr offset)))
|
2325
|
+
|
2326
|
+
;; Load 64-bit little-endian references.
|
2327
|
+
(rule -1 (lower (has_type $R64 (load flags @ (littleendian) addr offset)))
|
2328
|
+
(loadrev64 (lower_address flags addr offset)))
|
2329
|
+
|
2330
|
+
;; Load 32-bit big-endian floating-point values (as vector lane).
|
2331
|
+
(rule (lower (has_type $F32 (load flags @ (bigendian) addr offset)))
|
2332
|
+
(vec_load_lane_undef $F32X4 (lower_address flags addr offset) 0))
|
2333
|
+
|
2334
|
+
;; Load 32-bit little-endian floating-point values (as vector lane).
|
2335
|
+
(rule -1 (lower (has_type $F32 (load flags @ (littleendian) addr offset)))
|
2336
|
+
(vec_load_lane_little_undef $F32X4 (lower_address flags addr offset) 0))
|
2337
|
+
|
2338
|
+
;; Load 64-bit big-endian floating-point values (as vector lane).
|
2339
|
+
(rule (lower (has_type $F64 (load flags @ (bigendian) addr offset)))
|
2340
|
+
(vec_load_lane_undef $F64X2 (lower_address flags addr offset) 0))
|
2341
|
+
|
2342
|
+
;; Load 64-bit little-endian floating-point values (as vector lane).
|
2343
|
+
(rule -1 (lower (has_type $F64 (load flags @ (littleendian) addr offset)))
|
2344
|
+
(vec_load_lane_little_undef $F64X2 (lower_address flags addr offset) 0))
|
2345
|
+
|
2346
|
+
;; Load 128-bit big-endian vector values, BE lane order - direct load.
|
2347
|
+
(rule 4 (lower (has_type (vr128_ty ty) (load flags @ (bigendian) addr offset)))
|
2348
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2349
|
+
(vec_load ty (lower_address flags addr offset)))
|
2350
|
+
|
2351
|
+
;; Load 128-bit little-endian vector values, BE lane order - byte-reversed load.
|
2352
|
+
(rule 3 (lower (has_type (vr128_ty ty) (load flags @ (littleendian) addr offset)))
|
2353
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2354
|
+
(vec_load_byte_rev ty flags addr offset))
|
2355
|
+
|
2356
|
+
;; Load 128-bit big-endian vector values, LE lane order - element-reversed load.
|
2357
|
+
(rule 2 (lower (has_type (vr128_ty ty) (load flags @ (bigendian) addr offset)))
|
2358
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2359
|
+
(vec_load_elt_rev ty flags addr offset))
|
2360
|
+
|
2361
|
+
;; Load 128-bit little-endian vector values, LE lane order - fully-reversed load.
|
2362
|
+
(rule 1 (lower (has_type (vr128_ty ty) (load flags @ (littleendian) addr offset)))
|
2363
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2364
|
+
(vec_load_full_rev ty flags addr offset))
|
2365
|
+
|
2366
|
+
|
2367
|
+
;; Helper to perform a 128-bit full-vector byte-reversed load.
|
2368
|
+
(decl vec_load_full_rev (Type MemFlags Value Offset32) Reg)
|
2369
|
+
|
2370
|
+
;; Full-vector byte-reversed load via single instruction on z15.
|
2371
|
+
(rule 1 (vec_load_full_rev (and (vxrs_ext2_enabled) (vr128_ty ty)) flags addr offset)
|
2372
|
+
(vec_loadrev ty (lower_address flags addr offset)))
|
2373
|
+
|
2374
|
+
;; Full-vector byte-reversed load via GPRs on z14.
|
2375
|
+
(rule (vec_load_full_rev (and (vxrs_ext2_disabled) (vr128_ty ty)) flags addr offset)
|
2376
|
+
(let ((lo_addr MemArg (lower_address_bias flags addr offset 0))
|
2377
|
+
(hi_addr MemArg (lower_address_bias flags addr offset 8))
|
2378
|
+
(lo_val Reg (loadrev64 lo_addr))
|
2379
|
+
(hi_val Reg (loadrev64 hi_addr)))
|
2380
|
+
(mov_to_vec128 ty hi_val lo_val)))
|
2381
|
+
|
2382
|
+
|
2383
|
+
;; Helper to perform an element-wise byte-reversed load.
|
2384
|
+
(decl vec_load_byte_rev (Type MemFlags Value Offset32) Reg)
|
2385
|
+
|
2386
|
+
;; Element-wise byte-reversed 1x128-bit load is a full byte-reversed load.
|
2387
|
+
(rule -1 (vec_load_byte_rev $I128 flags addr offset)
|
2388
|
+
(vec_load_full_rev $I128 flags addr offset))
|
2389
|
+
|
2390
|
+
;; Element-wise byte-reversed 16x8-bit load is a direct load.
|
2391
|
+
(rule (vec_load_byte_rev ty @ (multi_lane 8 16) flags addr offset)
|
2392
|
+
(vec_load ty (lower_address flags addr offset)))
|
2393
|
+
|
2394
|
+
;; Element-wise byte-reversed load via single instruction on z15.
|
2395
|
+
(rule 1 (vec_load_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 64 2))
|
2396
|
+
flags addr offset)
|
2397
|
+
(vec_load_byte64rev ty (lower_address flags addr offset)))
|
2398
|
+
(rule 1 (vec_load_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 32 4))
|
2399
|
+
flags addr offset)
|
2400
|
+
(vec_load_byte32rev ty (lower_address flags addr offset)))
|
2401
|
+
(rule 1 (vec_load_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 16 8))
|
2402
|
+
flags addr offset)
|
2403
|
+
(vec_load_byte16rev ty (lower_address flags addr offset)))
|
2404
|
+
|
2405
|
+
;; Element-wise byte-reversed load as element-swapped byte-reversed load on z14.
|
2406
|
+
(rule (vec_load_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 64 2))
|
2407
|
+
flags addr offset)
|
2408
|
+
(vec_elt_rev ty (vec_load_full_rev ty flags addr offset)))
|
2409
|
+
(rule (vec_load_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 32 4))
|
2410
|
+
flags addr offset)
|
2411
|
+
(vec_elt_rev ty (vec_load_full_rev ty flags addr offset)))
|
2412
|
+
(rule (vec_load_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 16 8))
|
2413
|
+
flags addr offset)
|
2414
|
+
(vec_elt_rev ty (vec_load_full_rev ty flags addr offset)))
|
2415
|
+
|
2416
|
+
|
2417
|
+
;; Helper to perform an element-reversed load.
|
2418
|
+
(decl vec_load_elt_rev (Type MemFlags Value Offset32) Reg)
|
2419
|
+
|
2420
|
+
;; Element-reversed 1x128-bit load is a direct load.
|
2421
|
+
;; For 1x128-bit types, this is a direct load.
|
2422
|
+
(rule -1 (vec_load_elt_rev $I128 flags addr offset)
|
2423
|
+
(vec_load $I128 (lower_address flags addr offset)))
|
2424
|
+
|
2425
|
+
;; Element-reversed 16x8-bit load is a full byte-reversed load.
|
2426
|
+
(rule (vec_load_elt_rev ty @ (multi_lane 8 16) flags addr offset)
|
2427
|
+
(vec_load_full_rev ty flags addr offset))
|
2428
|
+
|
2429
|
+
;; Element-reversed load via single instruction on z15.
|
2430
|
+
(rule 1 (vec_load_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 64 2))
|
2431
|
+
flags addr offset)
|
2432
|
+
(vec_load_elt64rev ty (lower_address flags addr offset)))
|
2433
|
+
(rule 1 (vec_load_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 32 4))
|
2434
|
+
flags addr offset)
|
2435
|
+
(vec_load_elt32rev ty (lower_address flags addr offset)))
|
2436
|
+
(rule 1 (vec_load_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 16 8))
|
2437
|
+
flags addr offset)
|
2438
|
+
(vec_load_elt16rev ty (lower_address flags addr offset)))
|
2439
|
+
|
2440
|
+
;; Element-reversed load as element-swapped direct load on z14.
|
2441
|
+
(rule (vec_load_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 64 2))
|
2442
|
+
flags addr offset)
|
2443
|
+
(vec_elt_rev ty (vec_load ty (lower_address flags addr offset))))
|
2444
|
+
(rule (vec_load_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 32 4))
|
2445
|
+
flags addr offset)
|
2446
|
+
(vec_elt_rev ty (vec_load ty (lower_address flags addr offset))))
|
2447
|
+
(rule (vec_load_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 16 8))
|
2448
|
+
flags addr offset)
|
2449
|
+
(vec_elt_rev ty (vec_load ty (lower_address flags addr offset))))
|
2450
|
+
|
2451
|
+
|
2452
|
+
;;;; Rules for `uload8` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2453
|
+
|
2454
|
+
;; 16- or 32-bit target types.
|
2455
|
+
(rule (lower (has_type (gpr32_ty _ty) (uload8 flags addr offset)))
|
2456
|
+
(zext32_mem $I8 (lower_address flags addr offset)))
|
2457
|
+
|
2458
|
+
;; 64-bit target types.
|
2459
|
+
(rule 1 (lower (has_type (gpr64_ty _ty) (uload8 flags addr offset)))
|
2460
|
+
(zext64_mem $I8 (lower_address flags addr offset)))
|
2461
|
+
|
2462
|
+
|
2463
|
+
;;;; Rules for `sload8` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2464
|
+
|
2465
|
+
;; 16- or 32-bit target types.
|
2466
|
+
(rule (lower (has_type (gpr32_ty _ty) (sload8 flags addr offset)))
|
2467
|
+
(sext32_mem $I8 (lower_address flags addr offset)))
|
2468
|
+
|
2469
|
+
;; 64-bit target types.
|
2470
|
+
(rule 1 (lower (has_type (gpr64_ty _ty) (sload8 flags addr offset)))
|
2471
|
+
(sext64_mem $I8 (lower_address flags addr offset)))
|
2472
|
+
|
2473
|
+
|
2474
|
+
;;;; Rules for `uload16` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2475
|
+
|
2476
|
+
;; 32-bit target type, big-endian source value.
|
2477
|
+
(rule 3 (lower (has_type (gpr32_ty _ty)
|
2478
|
+
(uload16 flags @ (bigendian) addr offset)))
|
2479
|
+
(zext32_mem $I16 (lower_address flags addr offset)))
|
2480
|
+
|
2481
|
+
;; 32-bit target type, little-endian source value (via explicit extension).
|
2482
|
+
(rule 1 (lower (has_type (gpr32_ty _ty)
|
2483
|
+
(uload16 flags @ (littleendian) addr offset)))
|
2484
|
+
(let ((reg16 Reg (loadrev16 (lower_address flags addr offset))))
|
2485
|
+
(zext32_reg $I16 reg16)))
|
2486
|
+
|
2487
|
+
;; 64-bit target type, big-endian source value.
|
2488
|
+
(rule 4 (lower (has_type (gpr64_ty _ty)
|
2489
|
+
(uload16 flags @ (bigendian) addr offset)))
|
2490
|
+
(zext64_mem $I16 (lower_address flags addr offset)))
|
2491
|
+
|
2492
|
+
;; 64-bit target type, little-endian source value (via explicit extension).
|
2493
|
+
(rule 2 (lower (has_type (gpr64_ty _ty)
|
2494
|
+
(uload16 flags @ (littleendian) addr offset)))
|
2495
|
+
(let ((reg16 Reg (loadrev16 (lower_address flags addr offset))))
|
2496
|
+
(zext64_reg $I16 reg16)))
|
2497
|
+
|
2498
|
+
|
2499
|
+
;;;; Rules for `sload16` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2500
|
+
|
2501
|
+
;; 32-bit target type, big-endian source value.
|
2502
|
+
(rule 2 (lower (has_type (gpr32_ty _ty)
|
2503
|
+
(sload16 flags @ (bigendian) addr offset)))
|
2504
|
+
(sext32_mem $I16 (lower_address flags addr offset)))
|
2505
|
+
|
2506
|
+
;; 32-bit target type, little-endian source value (via explicit extension).
|
2507
|
+
(rule 0 (lower (has_type (gpr32_ty _ty)
|
2508
|
+
(sload16 flags @ (littleendian) addr offset)))
|
2509
|
+
(let ((reg16 Reg (loadrev16 (lower_address flags addr offset))))
|
2510
|
+
(sext32_reg $I16 reg16)))
|
2511
|
+
|
2512
|
+
;; 64-bit target type, big-endian source value.
|
2513
|
+
(rule 3 (lower (has_type (gpr64_ty _ty)
|
2514
|
+
(sload16 flags @ (bigendian) addr offset)))
|
2515
|
+
(sext64_mem $I16 (lower_address flags addr offset)))
|
2516
|
+
|
2517
|
+
;; 64-bit target type, little-endian source value (via explicit extension).
|
2518
|
+
(rule 1 (lower (has_type (gpr64_ty _ty)
|
2519
|
+
(sload16 flags @ (littleendian) addr offset)))
|
2520
|
+
(let ((reg16 Reg (loadrev16 (lower_address flags addr offset))))
|
2521
|
+
(sext64_reg $I16 reg16)))
|
2522
|
+
|
2523
|
+
|
2524
|
+
;;;; Rules for `uload32` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2525
|
+
|
2526
|
+
;; 64-bit target type, big-endian source value.
|
2527
|
+
(rule 1 (lower (has_type (gpr64_ty _ty)
|
2528
|
+
(uload32 flags @ (bigendian) addr offset)))
|
2529
|
+
(zext64_mem $I32 (lower_address flags addr offset)))
|
2530
|
+
|
2531
|
+
;; 64-bit target type, little-endian source value (via explicit extension).
|
2532
|
+
(rule (lower (has_type (gpr64_ty _ty)
|
2533
|
+
(uload32 flags @ (littleendian) addr offset)))
|
2534
|
+
(let ((reg32 Reg (loadrev32 (lower_address flags addr offset))))
|
2535
|
+
(zext64_reg $I32 reg32)))
|
2536
|
+
|
2537
|
+
|
2538
|
+
;;;; Rules for `sload32` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2539
|
+
|
2540
|
+
;; 64-bit target type, big-endian source value.
|
2541
|
+
(rule 1 (lower (has_type (gpr64_ty _ty)
|
2542
|
+
(sload32 flags @ (bigendian) addr offset)))
|
2543
|
+
(sext64_mem $I32 (lower_address flags addr offset)))
|
2544
|
+
|
2545
|
+
;; 64-bit target type, little-endian source value (via explicit extension).
|
2546
|
+
(rule (lower (has_type (gpr64_ty _ty)
|
2547
|
+
(sload32 flags @ (littleendian) addr offset)))
|
2548
|
+
(let ((reg32 Reg (loadrev32 (lower_address flags addr offset))))
|
2549
|
+
(sext64_reg $I32 reg32)))
|
2550
|
+
|
2551
|
+
|
2552
|
+
;;;; Rules for `uloadNxM` and `sloadNxM` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2553
|
+
|
2554
|
+
;; Unsigned 8->16 bit extension.
|
2555
|
+
(rule (lower (has_type $I16X8 (uload8x8 flags addr offset)))
|
2556
|
+
(vec_unpacku_high $I8X16 (load_v64 $I8X16 flags addr offset)))
|
2557
|
+
|
2558
|
+
;; Signed 8->16 bit extension.
|
2559
|
+
(rule (lower (has_type $I16X8 (sload8x8 flags addr offset)))
|
2560
|
+
(vec_unpacks_high $I8X16 (load_v64 $I8X16 flags addr offset)))
|
2561
|
+
|
2562
|
+
;; Unsigned 16->32 bit extension.
|
2563
|
+
(rule (lower (has_type $I32X4 (uload16x4 flags addr offset)))
|
2564
|
+
(vec_unpacku_high $I16X8 (load_v64 $I16X8 flags addr offset)))
|
2565
|
+
|
2566
|
+
;; Signed 16->32 bit extension.
|
2567
|
+
(rule (lower (has_type $I32X4 (sload16x4 flags addr offset)))
|
2568
|
+
(vec_unpacks_high $I16X8 (load_v64 $I16X8 flags addr offset)))
|
2569
|
+
|
2570
|
+
;; Unsigned 32->64 bit extension.
|
2571
|
+
(rule (lower (has_type $I64X2 (uload32x2 flags addr offset)))
|
2572
|
+
(vec_unpacku_high $I32X4 (load_v64 $I32X4 flags addr offset)))
|
2573
|
+
|
2574
|
+
;; Signed 32->64 bit extension.
|
2575
|
+
(rule (lower (has_type $I64X2 (sload32x2 flags addr offset)))
|
2576
|
+
(vec_unpacks_high $I32X4 (load_v64 $I32X4 flags addr offset)))
|
2577
|
+
|
2578
|
+
|
2579
|
+
;; Helper to load a 64-bit half-size vector from memory.
|
2580
|
+
(decl load_v64 (Type MemFlags Value Offset32) Reg)
|
2581
|
+
|
2582
|
+
;; Any big-endian source value, BE lane order.
|
2583
|
+
(rule -1 (load_v64 _ flags @ (bigendian) addr offset)
|
2584
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2585
|
+
(vec_load_lane_undef $I64X2 (lower_address flags addr offset) 0))
|
2586
|
+
|
2587
|
+
;; Any little-endian source value, LE lane order.
|
2588
|
+
(rule -2 (load_v64 _ flags @ (littleendian) addr offset)
|
2589
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2590
|
+
(vec_load_lane_little_undef $I64X2 (lower_address flags addr offset) 0))
|
2591
|
+
|
2592
|
+
;; Big-endian or little-endian 8x8-bit source value, BE lane order.
|
2593
|
+
(rule (load_v64 (multi_lane 8 16) flags addr offset)
|
2594
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2595
|
+
(vec_load_lane_undef $I64X2 (lower_address flags addr offset) 0))
|
2596
|
+
|
2597
|
+
;; Big-endian or little-endian 8x8-bit source value, LE lane order.
|
2598
|
+
(rule 1 (load_v64 (multi_lane 8 16) flags addr offset)
|
2599
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2600
|
+
(vec_load_lane_little_undef $I64X2 (lower_address flags addr offset) 0))
|
2601
|
+
|
2602
|
+
;; Little-endian 4x16-bit source value, BE lane order.
|
2603
|
+
(rule (load_v64 (multi_lane 16 8) flags @ (littleendian) addr offset)
|
2604
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2605
|
+
(vec_rot_imm $I16X8
|
2606
|
+
(vec_load_lane_undef $I64X2 (lower_address flags addr offset) 0) 8))
|
2607
|
+
|
2608
|
+
;; Big-endian 4x16-bit source value, LE lane order.
|
2609
|
+
(rule 1 (load_v64 (multi_lane 16 8) flags @ (bigendian) addr offset)
|
2610
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2611
|
+
(vec_rot_imm $I16X8
|
2612
|
+
(vec_load_lane_little_undef $I64X2 (lower_address flags addr offset) 0) 8))
|
2613
|
+
|
2614
|
+
;; Little-endian 2x32-bit source value, BE lane order.
|
2615
|
+
(rule (load_v64 (multi_lane 32 4) flags @ (littleendian) addr offset)
|
2616
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2617
|
+
(vec_rot_imm $I64X2
|
2618
|
+
(vec_load_lane_little_undef $I64X2 (lower_address flags addr offset) 0) 32))
|
2619
|
+
|
2620
|
+
;; Big-endian 2x32-bit source value, LE lane order.
|
2621
|
+
(rule 1 (load_v64 (multi_lane 32 4) flags @ (bigendian) addr offset)
|
2622
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2623
|
+
(vec_rot_imm $I64X2
|
2624
|
+
(vec_load_lane_undef $I64X2 (lower_address flags addr offset) 0) 32))
|
2625
|
+
|
2626
|
+
|
2627
|
+
;;;; Rules for `store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2628
|
+
|
2629
|
+
;; The actual store logic for integer types is identical for the `store`,
|
2630
|
+
;; `istoreNN`, and `atomic_store` instructions, so we share common helpers.
|
2631
|
+
|
2632
|
+
;; Store 8-bit integer type, main lowering entry point.
|
2633
|
+
(rule (lower (store flags val @ (value_type $I8) addr offset))
|
2634
|
+
(side_effect (istore8_impl flags val addr offset)))
|
2635
|
+
|
2636
|
+
;; Store 16-bit integer type, main lowering entry point.
|
2637
|
+
(rule (lower (store flags val @ (value_type $I16) addr offset))
|
2638
|
+
(side_effect (istore16_impl flags val addr offset)))
|
2639
|
+
|
2640
|
+
;; Store 32-bit integer type, main lowering entry point.
|
2641
|
+
(rule (lower (store flags val @ (value_type $I32) addr offset))
|
2642
|
+
(side_effect (istore32_impl flags val addr offset)))
|
2643
|
+
|
2644
|
+
;; Store 64-bit integer type, main lowering entry point.
|
2645
|
+
(rule (lower (store flags val @ (value_type $I64) addr offset))
|
2646
|
+
(side_effect (istore64_impl flags val addr offset)))
|
2647
|
+
|
2648
|
+
;; Store 64-bit reference type, main lowering entry point.
|
2649
|
+
(rule (lower (store flags val @ (value_type $R64) addr offset))
|
2650
|
+
(side_effect (istore64_impl flags val addr offset)))
|
2651
|
+
|
2652
|
+
;; Store 32-bit big-endian floating-point type (as vector lane).
|
2653
|
+
(rule -1 (lower (store flags @ (bigendian)
|
2654
|
+
val @ (value_type $F32) addr offset))
|
2655
|
+
(side_effect (vec_store_lane $F32X4 val
|
2656
|
+
(lower_address flags addr offset) 0)))
|
2657
|
+
|
2658
|
+
;; Store 32-bit little-endian floating-point type (as vector lane).
|
2659
|
+
(rule (lower (store flags @ (littleendian)
|
2660
|
+
val @ (value_type $F32) addr offset))
|
2661
|
+
(side_effect (vec_store_lane_little $F32X4 val
|
2662
|
+
(lower_address flags addr offset) 0)))
|
2663
|
+
|
2664
|
+
;; Store 64-bit big-endian floating-point type (as vector lane).
|
2665
|
+
(rule -1 (lower (store flags @ (bigendian)
|
2666
|
+
val @ (value_type $F64) addr offset))
|
2667
|
+
(side_effect (vec_store_lane $F64X2 val
|
2668
|
+
(lower_address flags addr offset) 0)))
|
2669
|
+
|
2670
|
+
;; Store 64-bit little-endian floating-point type (as vector lane).
|
2671
|
+
(rule (lower (store flags @ (littleendian)
|
2672
|
+
val @ (value_type $F64) addr offset))
|
2673
|
+
(side_effect (vec_store_lane_little $F64X2 val
|
2674
|
+
(lower_address flags addr offset) 0)))
|
2675
|
+
|
2676
|
+
;; Store 128-bit big-endian vector type, BE lane order - direct store.
|
2677
|
+
(rule 4 (lower (store flags @ (bigendian)
|
2678
|
+
val @ (value_type (vr128_ty ty)) addr offset))
|
2679
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2680
|
+
(side_effect (vec_store val (lower_address flags addr offset))))
|
2681
|
+
|
2682
|
+
;; Store 128-bit little-endian vector type, BE lane order - byte-reversed store.
|
2683
|
+
(rule 3 (lower (store flags @ (littleendian)
|
2684
|
+
val @ (value_type (vr128_ty ty)) addr offset))
|
2685
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
2686
|
+
(side_effect (vec_store_byte_rev ty val flags addr offset)))
|
2687
|
+
|
2688
|
+
;; Store 128-bit big-endian vector type, LE lane order - element-reversed store.
|
2689
|
+
(rule 2 (lower (store flags @ (bigendian)
|
2690
|
+
val @ (value_type (vr128_ty ty)) addr offset))
|
2691
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2692
|
+
(side_effect (vec_store_elt_rev ty val flags addr offset)))
|
2693
|
+
|
2694
|
+
;; Store 128-bit little-endian vector type, LE lane order - fully-reversed store.
|
2695
|
+
(rule 1 (lower (store flags @ (littleendian)
|
2696
|
+
val @ (value_type (vr128_ty ty)) addr offset))
|
2697
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
2698
|
+
(side_effect (vec_store_full_rev ty val flags addr offset)))
|
2699
|
+
|
2700
|
+
|
2701
|
+
;; Helper to perform a 128-bit full-vector byte-reversed store.
|
2702
|
+
(decl vec_store_full_rev (Type Reg MemFlags Value Offset32) SideEffectNoResult)
|
2703
|
+
|
2704
|
+
;; Full-vector byte-reversed store via single instruction on z15.
|
2705
|
+
(rule 1 (vec_store_full_rev (vxrs_ext2_enabled) val flags addr offset)
|
2706
|
+
(vec_storerev val (lower_address flags addr offset)))
|
2707
|
+
|
2708
|
+
;; Full-vector byte-reversed store via GPRs on z14.
|
2709
|
+
(rule (vec_store_full_rev (vxrs_ext2_disabled) val flags addr offset)
|
2710
|
+
(let ((lo_addr MemArg (lower_address_bias flags addr offset 0))
|
2711
|
+
(hi_addr MemArg (lower_address_bias flags addr offset 8))
|
2712
|
+
(lo_val Reg (vec_extract_lane $I64X2 val 1 (zero_reg)))
|
2713
|
+
(hi_val Reg (vec_extract_lane $I64X2 val 0 (zero_reg))))
|
2714
|
+
(side_effect_concat (storerev64 lo_val lo_addr)
|
2715
|
+
(storerev64 hi_val hi_addr))))
|
2716
|
+
|
2717
|
+
|
2718
|
+
;; Helper to perform an element-wise byte-reversed store.
|
2719
|
+
(decl vec_store_byte_rev (Type Reg MemFlags Value Offset32) SideEffectNoResult)
|
2720
|
+
|
2721
|
+
;; Element-wise byte-reversed 1x128-bit store is a full byte-reversed store.
|
2722
|
+
(rule -1 (vec_store_byte_rev $I128 val flags addr offset)
|
2723
|
+
(vec_store_full_rev $I128 val flags addr offset))
|
2724
|
+
|
2725
|
+
;; Element-wise byte-reversed 16x8-bit store is a direct store.
|
2726
|
+
(rule (vec_store_byte_rev (multi_lane 8 16) val flags addr offset)
|
2727
|
+
(vec_store val (lower_address flags addr offset)))
|
2728
|
+
|
2729
|
+
;; Element-wise byte-reversed store via single instruction on z15.
|
2730
|
+
(rule 1 (vec_store_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 64 2))
|
2731
|
+
val flags addr offset)
|
2732
|
+
(vec_store_byte64rev val (lower_address flags addr offset)))
|
2733
|
+
(rule 1 (vec_store_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 32 4))
|
2734
|
+
val flags addr offset)
|
2735
|
+
(vec_store_byte32rev val (lower_address flags addr offset)))
|
2736
|
+
(rule 1 (vec_store_byte_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 16 8))
|
2737
|
+
val flags addr offset)
|
2738
|
+
(vec_store_byte16rev val (lower_address flags addr offset)))
|
2739
|
+
|
2740
|
+
;; Element-wise byte-reversed load as element-swapped byte-reversed store on z14.
|
2741
|
+
(rule (vec_store_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 64 2))
|
2742
|
+
val flags addr offset)
|
2743
|
+
(vec_store_full_rev ty (vec_elt_rev ty val) flags addr offset))
|
2744
|
+
(rule (vec_store_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 32 4))
|
2745
|
+
val flags addr offset)
|
2746
|
+
(vec_store_full_rev ty (vec_elt_rev ty val) flags addr offset))
|
2747
|
+
(rule (vec_store_byte_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 16 8))
|
2748
|
+
val flags addr offset)
|
2749
|
+
(vec_store_full_rev ty (vec_elt_rev ty val) flags addr offset))
|
2750
|
+
|
2751
|
+
|
2752
|
+
;; Helper to perform an element-reversed store.
|
2753
|
+
(decl vec_store_elt_rev (Type Reg MemFlags Value Offset32) SideEffectNoResult)
|
2754
|
+
|
2755
|
+
;; Element-reversed 1x128-bit store is a direct store.
|
2756
|
+
(rule -1 (vec_store_elt_rev $I128 val flags addr offset)
|
2757
|
+
(vec_store val (lower_address flags addr offset)))
|
2758
|
+
|
2759
|
+
;; Element-reversed 16x8-bit store is a full byte-reversed store.
|
2760
|
+
(rule (vec_store_elt_rev ty @ (multi_lane 8 16) val flags addr offset)
|
2761
|
+
(vec_store_full_rev ty val flags addr offset))
|
2762
|
+
|
2763
|
+
;; Element-reversed store via single instruction on z15.
|
2764
|
+
(rule 1 (vec_store_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 64 2))
|
2765
|
+
val flags addr offset)
|
2766
|
+
(vec_store_elt64rev val (lower_address flags addr offset)))
|
2767
|
+
(rule 1 (vec_store_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 32 4))
|
2768
|
+
val flags addr offset)
|
2769
|
+
(vec_store_elt32rev val (lower_address flags addr offset)))
|
2770
|
+
(rule 1 (vec_store_elt_rev (and (vxrs_ext2_enabled) ty @ (multi_lane 16 8))
|
2771
|
+
val flags addr offset)
|
2772
|
+
(vec_store_elt16rev val (lower_address flags addr offset)))
|
2773
|
+
|
2774
|
+
;; Element-reversed store as element-swapped direct store on z14.
|
2775
|
+
(rule (vec_store_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 64 2))
|
2776
|
+
val flags addr offset)
|
2777
|
+
(vec_store (vec_elt_rev ty val) (lower_address flags addr offset)))
|
2778
|
+
(rule (vec_store_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 32 4))
|
2779
|
+
val flags addr offset)
|
2780
|
+
(vec_store (vec_elt_rev ty val) (lower_address flags addr offset)))
|
2781
|
+
(rule (vec_store_elt_rev (and (vxrs_ext2_disabled) ty @ (multi_lane 16 8))
|
2782
|
+
val flags addr offset)
|
2783
|
+
(vec_store (vec_elt_rev ty val) (lower_address flags addr offset)))
|
2784
|
+
|
2785
|
+
|
2786
|
+
;;;; Rules for 8-bit integer stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2787
|
+
|
2788
|
+
;; Main `istore8` lowering entry point, dispatching to the helper.
|
2789
|
+
(rule (lower (istore8 flags val addr offset))
|
2790
|
+
(side_effect (istore8_impl flags val addr offset)))
|
2791
|
+
|
2792
|
+
;; Helper to store 8-bit integer types.
|
2793
|
+
(decl istore8_impl (MemFlags Value Value Offset32) SideEffectNoResult)
|
2794
|
+
|
2795
|
+
;; Store 8-bit integer types, register input.
|
2796
|
+
(rule (istore8_impl flags val addr offset)
|
2797
|
+
(store8 (put_in_reg val) (lower_address flags addr offset)))
|
2798
|
+
|
2799
|
+
;; Store 8-bit integer types, immediate input.
|
2800
|
+
(rule 1 (istore8_impl flags (u8_from_value imm) addr offset)
|
2801
|
+
(store8_imm imm (lower_address flags addr offset)))
|
2802
|
+
|
2803
|
+
|
2804
|
+
;;;; Rules for 16-bit integer stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2805
|
+
|
2806
|
+
;; Main `istore16` lowering entry point, dispatching to the helper.
|
2807
|
+
(rule (lower (istore16 flags val addr offset))
|
2808
|
+
(side_effect (istore16_impl flags val addr offset)))
|
2809
|
+
|
2810
|
+
;; Helper to store 16-bit integer types.
|
2811
|
+
(decl istore16_impl (MemFlags Value Value Offset32) SideEffectNoResult)
|
2812
|
+
|
2813
|
+
;; Store 16-bit big-endian integer types, register input.
|
2814
|
+
(rule 2 (istore16_impl flags @ (bigendian) val addr offset)
|
2815
|
+
(store16 (put_in_reg val) (lower_address flags addr offset)))
|
2816
|
+
|
2817
|
+
;; Store 16-bit little-endian integer types, register input.
|
2818
|
+
(rule 0 (istore16_impl flags @ (littleendian) val addr offset)
|
2819
|
+
(storerev16 (put_in_reg val) (lower_address flags addr offset)))
|
2820
|
+
|
2821
|
+
;; Store 16-bit big-endian integer types, immediate input.
|
2822
|
+
(rule 3 (istore16_impl flags @ (bigendian) (i16_from_value imm) addr offset)
|
2823
|
+
(store16_imm imm (lower_address flags addr offset)))
|
2824
|
+
|
2825
|
+
;; Store 16-bit little-endian integer types, immediate input.
|
2826
|
+
(rule 1 (istore16_impl flags @ (littleendian) (i16_from_swapped_value imm) addr offset)
|
2827
|
+
(store16_imm imm (lower_address flags addr offset)))
|
2828
|
+
|
2829
|
+
|
2830
|
+
;;;; Rules for 32-bit integer stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2831
|
+
|
2832
|
+
;; Main `istore32` lowering entry point, dispatching to the helper.
|
2833
|
+
(rule (lower (istore32 flags val addr offset))
|
2834
|
+
(side_effect (istore32_impl flags val addr offset)))
|
2835
|
+
|
2836
|
+
;; Helper to store 32-bit integer types.
|
2837
|
+
(decl istore32_impl (MemFlags Value Value Offset32) SideEffectNoResult)
|
2838
|
+
|
2839
|
+
;; Store 32-bit big-endian integer types, register input.
|
2840
|
+
(rule 1 (istore32_impl flags @ (bigendian) val addr offset)
|
2841
|
+
(store32 (put_in_reg val) (lower_address flags addr offset)))
|
2842
|
+
|
2843
|
+
;; Store 32-bit big-endian integer types, immediate input.
|
2844
|
+
(rule 2 (istore32_impl flags @ (bigendian) (i16_from_value imm) addr offset)
|
2845
|
+
(store32_simm16 imm (lower_address flags addr offset)))
|
2846
|
+
|
2847
|
+
;; Store 32-bit little-endian integer types.
|
2848
|
+
(rule 0 (istore32_impl flags @ (littleendian) val addr offset)
|
2849
|
+
(storerev32 (put_in_reg val) (lower_address flags addr offset)))
|
2850
|
+
|
2851
|
+
|
2852
|
+
;;;; Rules for 64-bit integer stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2853
|
+
|
2854
|
+
;; Helper to store 64-bit integer types.
|
2855
|
+
(decl istore64_impl (MemFlags Value Value Offset32) SideEffectNoResult)
|
2856
|
+
|
2857
|
+
;; Store 64-bit big-endian integer types, register input.
|
2858
|
+
(rule 1 (istore64_impl flags @ (bigendian) val addr offset)
|
2859
|
+
(store64 (put_in_reg val) (lower_address flags addr offset)))
|
2860
|
+
|
2861
|
+
;; Store 64-bit big-endian integer types, immediate input.
|
2862
|
+
(rule 2 (istore64_impl flags @ (bigendian) (i16_from_value imm) addr offset)
|
2863
|
+
(store64_simm16 imm (lower_address flags addr offset)))
|
2864
|
+
|
2865
|
+
;; Store 64-bit little-endian integer types.
|
2866
|
+
(rule 0 (istore64_impl flags @ (littleendian) val addr offset)
|
2867
|
+
(storerev64 (put_in_reg val) (lower_address flags addr offset)))
|
2868
|
+
|
2869
|
+
|
2870
|
+
;;;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2871
|
+
|
2872
|
+
;; Atomic operations that do not require a compare-and-swap loop.
|
2873
|
+
|
2874
|
+
;; Atomic AND for 32/64-bit big-endian types, using a single instruction.
|
2875
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty)
|
2876
|
+
(atomic_rmw flags @ (bigendian) (AtomicRmwOp.And) addr src)))
|
2877
|
+
(atomic_rmw_and ty (put_in_reg src)
|
2878
|
+
(lower_address flags addr (zero_offset))))
|
2879
|
+
|
2880
|
+
;; Atomic AND for 32/64-bit big-endian types, using byte-swapped input/output.
|
2881
|
+
(rule (lower (has_type (ty_32_or_64 ty)
|
2882
|
+
(atomic_rmw flags @ (littleendian) (AtomicRmwOp.And) addr src)))
|
2883
|
+
(bswap_reg ty (atomic_rmw_and ty (bswap_reg ty (put_in_reg src))
|
2884
|
+
(lower_address flags addr (zero_offset)))))
|
2885
|
+
|
2886
|
+
;; Atomic OR for 32/64-bit big-endian types, using a single instruction.
|
2887
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty)
|
2888
|
+
(atomic_rmw flags @ (bigendian) (AtomicRmwOp.Or) addr src)))
|
2889
|
+
(atomic_rmw_or ty (put_in_reg src)
|
2890
|
+
(lower_address flags addr (zero_offset))))
|
2891
|
+
|
2892
|
+
;; Atomic OR for 32/64-bit little-endian types, using byte-swapped input/output.
|
2893
|
+
(rule (lower (has_type (ty_32_or_64 ty)
|
2894
|
+
(atomic_rmw flags @ (littleendian) (AtomicRmwOp.Or) addr src)))
|
2895
|
+
(bswap_reg ty (atomic_rmw_or ty (bswap_reg ty (put_in_reg src))
|
2896
|
+
(lower_address flags addr (zero_offset)))))
|
2897
|
+
|
2898
|
+
;; Atomic XOR for 32/64-bit big-endian types, using a single instruction.
|
2899
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty)
|
2900
|
+
(atomic_rmw flags @ (bigendian) (AtomicRmwOp.Xor) addr src)))
|
2901
|
+
(atomic_rmw_xor ty (put_in_reg src)
|
2902
|
+
(lower_address flags addr (zero_offset))))
|
2903
|
+
|
2904
|
+
;; Atomic XOR for 32/64-bit little-endian types, using byte-swapped input/output.
|
2905
|
+
(rule (lower (has_type (ty_32_or_64 ty)
|
2906
|
+
(atomic_rmw flags @ (littleendian) (AtomicRmwOp.Xor) addr src)))
|
2907
|
+
(bswap_reg ty (atomic_rmw_xor ty (bswap_reg ty (put_in_reg src))
|
2908
|
+
(lower_address flags addr (zero_offset)))))
|
2909
|
+
|
2910
|
+
;; Atomic ADD for 32/64-bit big-endian types, using a single instruction.
|
2911
|
+
(rule (lower (has_type (ty_32_or_64 ty)
|
2912
|
+
(atomic_rmw flags @ (bigendian) (AtomicRmwOp.Add) addr src)))
|
2913
|
+
(atomic_rmw_add ty (put_in_reg src)
|
2914
|
+
(lower_address flags addr (zero_offset))))
|
2915
|
+
|
2916
|
+
;; Atomic SUB for 32/64-bit big-endian types, using atomic ADD with negated input.
|
2917
|
+
(rule (lower (has_type (ty_32_or_64 ty)
|
2918
|
+
(atomic_rmw flags @ (bigendian) (AtomicRmwOp.Sub) addr src)))
|
2919
|
+
(atomic_rmw_add ty (neg_reg ty (put_in_reg src))
|
2920
|
+
(lower_address flags addr (zero_offset))))
|
2921
|
+
|
2922
|
+
|
2923
|
+
;; Atomic operations that require a compare-and-swap loop.
|
2924
|
+
|
2925
|
+
;; Operations for 32/64-bit types can use a fullword compare-and-swap loop.
|
2926
|
+
(rule -1 (lower (has_type (ty_32_or_64 ty) (atomic_rmw flags op addr src)))
|
2927
|
+
(let ((src_reg Reg (put_in_reg src))
|
2928
|
+
(addr_reg Reg (put_in_reg addr))
|
2929
|
+
;; Create body of compare-and-swap loop.
|
2930
|
+
(ib VecMInstBuilder (inst_builder_new))
|
2931
|
+
(val0 Reg (writable_reg_to_reg (casloop_val_reg)))
|
2932
|
+
(val1 Reg (atomic_rmw_body ib ty flags op
|
2933
|
+
(casloop_tmp_reg) val0 src_reg)))
|
2934
|
+
;; Emit compare-and-swap loop and extract final result.
|
2935
|
+
(casloop ib ty flags addr_reg val1)))
|
2936
|
+
|
2937
|
+
;; Operations for 8/16-bit types must operate on the surrounding aligned word.
|
2938
|
+
(rule -2 (lower (has_type (ty_8_or_16 ty) (atomic_rmw flags op addr src)))
|
2939
|
+
(let ((src_reg Reg (put_in_reg src))
|
2940
|
+
(addr_reg Reg (put_in_reg addr))
|
2941
|
+
;; Prepare access to surrounding aligned word.
|
2942
|
+
(bitshift Reg (casloop_bitshift addr_reg))
|
2943
|
+
(aligned_addr Reg (casloop_aligned_addr addr_reg))
|
2944
|
+
;; Create body of compare-and-swap loop.
|
2945
|
+
(ib VecMInstBuilder (inst_builder_new))
|
2946
|
+
(val0 Reg (writable_reg_to_reg (casloop_val_reg)))
|
2947
|
+
(val1 Reg (casloop_rotate_in ib ty flags bitshift val0))
|
2948
|
+
(val2 Reg (atomic_rmw_body ib ty flags op
|
2949
|
+
(casloop_tmp_reg) val1 src_reg))
|
2950
|
+
(val3 Reg (casloop_rotate_out ib ty flags bitshift val2)))
|
2951
|
+
;; Emit compare-and-swap loop and extract final result.
|
2952
|
+
(casloop_subword ib ty flags aligned_addr bitshift val3)))
|
2953
|
+
|
2954
|
+
;; Loop bodies for atomic read-modify-write operations.
|
2955
|
+
(decl atomic_rmw_body (VecMInstBuilder Type MemFlags AtomicRmwOp
|
2956
|
+
WritableReg Reg Reg) Reg)
|
2957
|
+
|
2958
|
+
;; Loop bodies for 32-/64-bit atomic XCHG operations.
|
2959
|
+
;; Simply use the source (possibly byte-swapped) as new target value.
|
2960
|
+
(rule 2 (atomic_rmw_body ib (ty_32_or_64 ty) (bigendian)
|
2961
|
+
(AtomicRmwOp.Xchg) tmp val src)
|
2962
|
+
src)
|
2963
|
+
(rule 1 (atomic_rmw_body ib (ty_32_or_64 ty) (littleendian)
|
2964
|
+
(AtomicRmwOp.Xchg) tmp val src)
|
2965
|
+
(bswap_reg ty src))
|
2966
|
+
|
2967
|
+
;; Loop bodies for 32-/64-bit atomic NAND operations.
|
2968
|
+
;; On z15 this can use the NN(G)RK instruction. On z14, perform an And
|
2969
|
+
;; operation and invert the result. In the little-endian case, we can
|
2970
|
+
;; simply byte-swap the source operand.
|
2971
|
+
(rule 4 (atomic_rmw_body ib (and (mie2_enabled) (ty_32_or_64 ty)) (bigendian)
|
2972
|
+
(AtomicRmwOp.Nand) tmp val src)
|
2973
|
+
(push_alu_reg ib (aluop_not_and ty) tmp val src))
|
2974
|
+
(rule 3 (atomic_rmw_body ib (and (mie2_enabled) (ty_32_or_64 ty)) (littleendian)
|
2975
|
+
(AtomicRmwOp.Nand) tmp val src)
|
2976
|
+
(push_alu_reg ib (aluop_not_and ty) tmp val (bswap_reg ty src)))
|
2977
|
+
(rule 2 (atomic_rmw_body ib (and (mie2_disabled) (ty_32_or_64 ty)) (bigendian)
|
2978
|
+
(AtomicRmwOp.Nand) tmp val src)
|
2979
|
+
(push_not_reg ib ty tmp
|
2980
|
+
(push_alu_reg ib (aluop_and ty) tmp val src)))
|
2981
|
+
(rule 1 (atomic_rmw_body ib (and (mie2_disabled) (ty_32_or_64 ty)) (littleendian)
|
2982
|
+
(AtomicRmwOp.Nand) tmp val src)
|
2983
|
+
(push_not_reg ib ty tmp
|
2984
|
+
(push_alu_reg ib (aluop_and ty) tmp val (bswap_reg ty src))))
|
2985
|
+
|
2986
|
+
;; Loop bodies for 8-/16-bit atomic bit operations.
|
2987
|
+
;; These use the "rotate-then-<op>-selected bits" family of instructions.
|
2988
|
+
;; For the Nand operation, we again perform And and invert the result.
|
2989
|
+
(rule (atomic_rmw_body ib (ty_8_or_16 ty) flags (AtomicRmwOp.Xchg) tmp val src)
|
2990
|
+
(atomic_rmw_body_rxsbg ib ty flags (RxSBGOp.Insert) tmp val src))
|
2991
|
+
(rule (atomic_rmw_body ib (ty_8_or_16 ty) flags (AtomicRmwOp.And) tmp val src)
|
2992
|
+
(atomic_rmw_body_rxsbg ib ty flags (RxSBGOp.And) tmp val src))
|
2993
|
+
(rule (atomic_rmw_body ib (ty_8_or_16 ty) flags (AtomicRmwOp.Or) tmp val src)
|
2994
|
+
(atomic_rmw_body_rxsbg ib ty flags (RxSBGOp.Or) tmp val src))
|
2995
|
+
(rule (atomic_rmw_body ib (ty_8_or_16 ty) flags (AtomicRmwOp.Xor) tmp val src)
|
2996
|
+
(atomic_rmw_body_rxsbg ib ty flags (RxSBGOp.Xor) tmp val src))
|
2997
|
+
(rule (atomic_rmw_body ib (ty_8_or_16 ty) flags (AtomicRmwOp.Nand) tmp val src)
|
2998
|
+
(atomic_rmw_body_invert ib ty flags tmp
|
2999
|
+
(atomic_rmw_body_rxsbg ib ty flags (RxSBGOp.And) tmp val src)))
|
3000
|
+
|
3001
|
+
;; RxSBG subword operation.
|
3002
|
+
(decl atomic_rmw_body_rxsbg (VecMInstBuilder Type MemFlags RxSBGOp
|
3003
|
+
WritableReg Reg Reg) Reg)
|
3004
|
+
;; 8-bit case: use the low byte of "src" and the high byte of "val".
|
3005
|
+
(rule (atomic_rmw_body_rxsbg ib $I8 _ op tmp val src)
|
3006
|
+
(push_rxsbg ib op tmp val src 32 40 24))
|
3007
|
+
;; 16-bit big-endian case: use the low two bytes of "src" and the
|
3008
|
+
;; high two bytes of "val".
|
3009
|
+
(rule 1 (atomic_rmw_body_rxsbg ib $I16 (bigendian) op tmp val src)
|
3010
|
+
(push_rxsbg ib op tmp val src 32 48 16))
|
3011
|
+
;; 16-bit little-endian case: use the low two bytes of "src", byte-swapped
|
3012
|
+
;; so they end up in the high two bytes, and the low two bytes of "val".
|
3013
|
+
(rule (atomic_rmw_body_rxsbg ib $I16 (littleendian) op tmp val src)
|
3014
|
+
(push_rxsbg ib op tmp val (bswap_reg $I32 src) 48 64 -16))
|
3015
|
+
|
3016
|
+
;; Invert a subword.
|
3017
|
+
(decl atomic_rmw_body_invert (VecMInstBuilder Type MemFlags WritableReg Reg) Reg)
|
3018
|
+
;; 8-bit case: invert the high byte.
|
3019
|
+
(rule (atomic_rmw_body_invert ib $I8 _ tmp val)
|
3020
|
+
(push_xor_uimm32shifted ib $I32 tmp val (uimm32shifted 0xff000000 0)))
|
3021
|
+
;; 16-bit big-endian case: invert the two high bytes.
|
3022
|
+
(rule 1 (atomic_rmw_body_invert ib $I16 (bigendian) tmp val)
|
3023
|
+
(push_xor_uimm32shifted ib $I32 tmp val (uimm32shifted 0xffff0000 0)))
|
3024
|
+
;; 16-bit little-endian case: invert the two low bytes.
|
3025
|
+
(rule (atomic_rmw_body_invert ib $I16 (littleendian) tmp val)
|
3026
|
+
(push_xor_uimm32shifted ib $I32 tmp val (uimm32shifted 0xffff 0)))
|
3027
|
+
|
3028
|
+
;; Loop bodies for atomic ADD/SUB operations.
|
3029
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Add) tmp val src)
|
3030
|
+
(atomic_rmw_body_addsub ib ty flags (aluop_add (ty_ext32 ty)) tmp val src))
|
3031
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Sub) tmp val src)
|
3032
|
+
(atomic_rmw_body_addsub ib ty flags (aluop_sub (ty_ext32 ty)) tmp val src))
|
3033
|
+
|
3034
|
+
;; Addition or subtraction operation.
|
3035
|
+
(decl atomic_rmw_body_addsub (VecMInstBuilder Type MemFlags ALUOp
|
3036
|
+
WritableReg Reg Reg) Reg)
|
3037
|
+
;; 32/64-bit big-endian case: just a regular add/sub operation.
|
3038
|
+
(rule 2 (atomic_rmw_body_addsub ib (ty_32_or_64 ty) (bigendian) op tmp val src)
|
3039
|
+
(push_alu_reg ib op tmp val src))
|
3040
|
+
;; 32/64-bit little-endian case: byte-swap the value loaded from memory before
|
3041
|
+
;; and after performing the operation in native endianness.
|
3042
|
+
(rule 1 (atomic_rmw_body_addsub ib (ty_32_or_64 ty) (littleendian) op tmp val src)
|
3043
|
+
(let ((val_swapped Reg (push_bswap_reg ib ty tmp val))
|
3044
|
+
(res_swapped Reg (push_alu_reg ib op tmp val_swapped src)))
|
3045
|
+
(push_bswap_reg ib ty tmp res_swapped)))
|
3046
|
+
;; 8-bit case: perform a 32-bit addition of the source value shifted by 24 bits
|
3047
|
+
;; to the memory value, which contains the target in its high byte.
|
3048
|
+
(rule (atomic_rmw_body_addsub ib $I8 _ op tmp val src)
|
3049
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 24)))
|
3050
|
+
(push_alu_reg ib op tmp val src_shifted)))
|
3051
|
+
;; 16-bit big-endian case: similar, just shift the source by 16 bits.
|
3052
|
+
(rule 3 (atomic_rmw_body_addsub ib $I16 (bigendian) op tmp val src)
|
3053
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 16)))
|
3054
|
+
(push_alu_reg ib op tmp val src_shifted)))
|
3055
|
+
;; 16-bit little-endian case: the same, but in addition we need to byte-swap
|
3056
|
+
;; the memory value before and after the operation. Since the value was placed
|
3057
|
+
;; in the low two bytes by our standard rotation, we can use a 32-bit byte-swap
|
3058
|
+
;; and the native-endian value will end up in the high bytes where we need it
|
3059
|
+
;; to perform the operation.
|
3060
|
+
(rule (atomic_rmw_body_addsub ib $I16 (littleendian) op tmp val src)
|
3061
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 16))
|
3062
|
+
(val_swapped Reg (push_bswap_reg ib $I32 tmp val))
|
3063
|
+
(res_swapped Reg (push_alu_reg ib op tmp val_swapped src_shifted)))
|
3064
|
+
(push_bswap_reg ib $I32 tmp res_swapped)))
|
3065
|
+
|
3066
|
+
;; Loop bodies for atomic MIN/MAX operations.
|
3067
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Smin) tmp val src)
|
3068
|
+
(atomic_rmw_body_minmax ib ty flags (cmpop_cmps (ty_ext32 ty))
|
3069
|
+
(intcc_as_cond (IntCC.SignedLessThan)) tmp val src))
|
3070
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Smax) tmp val src)
|
3071
|
+
(atomic_rmw_body_minmax ib ty flags (cmpop_cmps (ty_ext32 ty))
|
3072
|
+
(intcc_as_cond (IntCC.SignedGreaterThan)) tmp val src))
|
3073
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Umin) tmp val src)
|
3074
|
+
(atomic_rmw_body_minmax ib ty flags (cmpop_cmpu (ty_ext32 ty))
|
3075
|
+
(intcc_as_cond (IntCC.UnsignedLessThan)) tmp val src))
|
3076
|
+
(rule (atomic_rmw_body ib ty flags (AtomicRmwOp.Umax) tmp val src)
|
3077
|
+
(atomic_rmw_body_minmax ib ty flags (cmpop_cmpu (ty_ext32 ty))
|
3078
|
+
(intcc_as_cond (IntCC.UnsignedGreaterThan)) tmp val src))
|
3079
|
+
|
3080
|
+
;; Minimum or maximum operation.
|
3081
|
+
(decl atomic_rmw_body_minmax (VecMInstBuilder Type MemFlags CmpOp Cond
|
3082
|
+
WritableReg Reg Reg) Reg)
|
3083
|
+
;; 32/64-bit big-endian case: just a comparison followed by a conditional
|
3084
|
+
;; break out of the loop if the memory value does not need to change.
|
3085
|
+
;; If it does need to change, the new value is simply the source operand.
|
3086
|
+
(rule 2 (atomic_rmw_body_minmax ib (ty_32_or_64 ty) (bigendian)
|
3087
|
+
op cond tmp val src)
|
3088
|
+
(let ((_ Reg (push_break_if ib (cmp_rr op src val) (invert_cond cond))))
|
3089
|
+
src))
|
3090
|
+
;; 32/64-bit little-endian case: similar, but we need to byte-swap the
|
3091
|
+
;; memory value before the comparison. If we need to store the new value,
|
3092
|
+
;; it also needs to be byte-swapped.
|
3093
|
+
(rule 1 (atomic_rmw_body_minmax ib (ty_32_or_64 ty) (littleendian)
|
3094
|
+
op cond tmp val src)
|
3095
|
+
(let ((val_swapped Reg (push_bswap_reg ib ty tmp val))
|
3096
|
+
(_ Reg (push_break_if ib (cmp_rr op src val_swapped)
|
3097
|
+
(invert_cond cond))))
|
3098
|
+
(push_bswap_reg ib ty tmp src)))
|
3099
|
+
;; 8-bit case: compare the memory value (which contains the target in the
|
3100
|
+
;; high byte) with the source operand shifted by 24 bits. Note that in
|
3101
|
+
;; the case where the high bytes are equal, the comparison may succeed
|
3102
|
+
;; or fail depending on the unrelated low bits of the memory value, and
|
3103
|
+
;; so we either may or may not perform the update. But it would be an
|
3104
|
+
;; update with the same value in any case, so this does not matter.
|
3105
|
+
(rule (atomic_rmw_body_minmax ib $I8 _ op cond tmp val src)
|
3106
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 24))
|
3107
|
+
(_ Reg (push_break_if ib (cmp_rr op src_shifted val)
|
3108
|
+
(invert_cond cond))))
|
3109
|
+
(push_rxsbg ib (RxSBGOp.Insert) tmp val src_shifted 32 40 0)))
|
3110
|
+
;; 16-bit big-endian case: similar, just shift the source by 16 bits.
|
3111
|
+
(rule 3 (atomic_rmw_body_minmax ib $I16 (bigendian) op cond tmp val src)
|
3112
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 16))
|
3113
|
+
(_ Reg (push_break_if ib (cmp_rr op src_shifted val)
|
3114
|
+
(invert_cond cond))))
|
3115
|
+
(push_rxsbg ib (RxSBGOp.Insert) tmp val src_shifted 32 48 0)))
|
3116
|
+
;; 16-bit little-endian case: similar, but in addition byte-swap the
|
3117
|
+
;; memory value before and after the operation, like for _addsub_.
|
3118
|
+
(rule (atomic_rmw_body_minmax ib $I16 (littleendian) op cond tmp val src)
|
3119
|
+
(let ((src_shifted Reg (lshl_imm $I32 src 16))
|
3120
|
+
(val_swapped Reg (push_bswap_reg ib $I32 tmp val))
|
3121
|
+
(_ Reg (push_break_if ib (cmp_rr op src_shifted val_swapped)
|
3122
|
+
(invert_cond cond)))
|
3123
|
+
(res_swapped Reg (push_rxsbg ib (RxSBGOp.Insert)
|
3124
|
+
tmp val_swapped src_shifted 32 48 0)))
|
3125
|
+
(push_bswap_reg ib $I32 tmp res_swapped)))
|
3126
|
+
|
3127
|
+
|
3128
|
+
;;;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3129
|
+
|
3130
|
+
;; 32/64-bit big-endian atomic compare-and-swap instruction.
|
3131
|
+
(rule 2 (lower (has_type (ty_32_or_64 ty)
|
3132
|
+
(atomic_cas flags @ (bigendian) addr src1 src2)))
|
3133
|
+
(atomic_cas_impl ty (put_in_reg src1) (put_in_reg src2)
|
3134
|
+
(lower_address flags addr (zero_offset))))
|
3135
|
+
|
3136
|
+
;; 32/64-bit little-endian atomic compare-and-swap instruction.
|
3137
|
+
;; Implemented by byte-swapping old/new inputs and the output.
|
3138
|
+
(rule 1 (lower (has_type (ty_32_or_64 ty)
|
3139
|
+
(atomic_cas flags @ (littleendian) addr src1 src2)))
|
3140
|
+
(bswap_reg ty (atomic_cas_impl ty (bswap_reg ty (put_in_reg src1))
|
3141
|
+
(bswap_reg ty (put_in_reg src2))
|
3142
|
+
(lower_address flags addr (zero_offset)))))
|
3143
|
+
|
3144
|
+
;; 8/16-bit atomic compare-and-swap implemented via loop.
|
3145
|
+
(rule (lower (has_type (ty_8_or_16 ty) (atomic_cas flags addr src1 src2)))
|
3146
|
+
(let ((src1_reg Reg (put_in_reg src1))
|
3147
|
+
(src2_reg Reg (put_in_reg src2))
|
3148
|
+
(addr_reg Reg (put_in_reg addr))
|
3149
|
+
;; Prepare access to the surrounding aligned word.
|
3150
|
+
(bitshift Reg (casloop_bitshift addr_reg))
|
3151
|
+
(aligned_addr Reg (casloop_aligned_addr addr_reg))
|
3152
|
+
;; Create body of compare-and-swap loop.
|
3153
|
+
(ib VecMInstBuilder (inst_builder_new))
|
3154
|
+
(val0 Reg (writable_reg_to_reg (casloop_val_reg)))
|
3155
|
+
(val1 Reg (casloop_rotate_in ib ty flags bitshift val0))
|
3156
|
+
(val2 Reg (atomic_cas_body ib ty flags
|
3157
|
+
(casloop_tmp_reg) val1 src1_reg src2_reg))
|
3158
|
+
(val3 Reg (casloop_rotate_out ib ty flags bitshift val2)))
|
3159
|
+
;; Emit compare-and-swap loop and extract final result.
|
3160
|
+
(casloop_subword ib ty flags aligned_addr bitshift val3)))
|
3161
|
+
|
3162
|
+
;; Emit loop body instructions to perform a subword compare-and-swap.
|
3163
|
+
(decl atomic_cas_body (VecMInstBuilder Type MemFlags
|
3164
|
+
WritableReg Reg Reg Reg) Reg)
|
3165
|
+
|
3166
|
+
;; 8-bit case: "val" contains the value loaded from memory in the high byte.
|
3167
|
+
;; Compare with the comparison value in the low byte of "src1". If unequal,
|
3168
|
+
;; break out of the loop, otherwise replace the target byte in "val" with
|
3169
|
+
;; the low byte of "src2".
|
3170
|
+
(rule (atomic_cas_body ib $I8 _ tmp val src1 src2)
|
3171
|
+
(let ((_ Reg (push_break_if ib (rxsbg_test (RxSBGOp.Xor) val src1 32 40 24)
|
3172
|
+
(intcc_as_cond (IntCC.NotEqual)))))
|
3173
|
+
(push_rxsbg ib (RxSBGOp.Insert) tmp val src2 32 40 24)))
|
3174
|
+
|
3175
|
+
;; 16-bit big-endian case: Same as above, except with values in the high
|
3176
|
+
;; two bytes of "val" and low two bytes of "src1" and "src2".
|
3177
|
+
(rule 1 (atomic_cas_body ib $I16 (bigendian) tmp val src1 src2)
|
3178
|
+
(let ((_ Reg (push_break_if ib (rxsbg_test (RxSBGOp.Xor) val src1 32 48 16)
|
3179
|
+
(intcc_as_cond (IntCC.NotEqual)))))
|
3180
|
+
(push_rxsbg ib (RxSBGOp.Insert) tmp val src2 32 48 16)))
|
3181
|
+
|
3182
|
+
;; 16-bit little-endian case: "val" here contains a little-endian value in the
|
3183
|
+
;; *low* two bytes. "src1" and "src2" contain native (i.e. big-endian) values
|
3184
|
+
;; in their low two bytes. Perform the operation in little-endian mode by
|
3185
|
+
;; byte-swapping "src1" and "src" ahead of the loop. Note that this is a
|
3186
|
+
;; 32-bit operation so the little-endian 16-bit values end up in the *high*
|
3187
|
+
;; two bytes of the swapped values.
|
3188
|
+
(rule (atomic_cas_body ib $I16 (littleendian) tmp val src1 src2)
|
3189
|
+
(let ((src1_swapped Reg (bswap_reg $I32 src1))
|
3190
|
+
(src2_swapped Reg (bswap_reg $I32 src2))
|
3191
|
+
(_ Reg (push_break_if ib
|
3192
|
+
(rxsbg_test (RxSBGOp.Xor) val src1_swapped 48 64 -16)
|
3193
|
+
(intcc_as_cond (IntCC.NotEqual)))))
|
3194
|
+
(push_rxsbg ib (RxSBGOp.Insert) tmp val src2_swapped 48 64 -16)))
|
3195
|
+
|
3196
|
+
|
3197
|
+
;;;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3198
|
+
|
3199
|
+
;; Atomic loads can be implemented via regular loads on this platform.
|
3200
|
+
|
3201
|
+
;; 8-bit atomic load.
|
3202
|
+
(rule (lower (has_type $I8 (atomic_load flags addr)))
|
3203
|
+
(zext32_mem $I8 (lower_address flags addr (zero_offset))))
|
3204
|
+
|
3205
|
+
;; 16-bit big-endian atomic load.
|
3206
|
+
(rule 1 (lower (has_type $I16 (atomic_load flags @ (bigendian) addr)))
|
3207
|
+
(zext32_mem $I16 (lower_address flags addr (zero_offset))))
|
3208
|
+
|
3209
|
+
;; 16-bit little-endian atomic load.
|
3210
|
+
(rule (lower (has_type $I16 (atomic_load flags @ (littleendian) addr)))
|
3211
|
+
(loadrev16 (lower_address flags addr (zero_offset))))
|
3212
|
+
|
3213
|
+
;; 32-bit big-endian atomic load.
|
3214
|
+
(rule 1 (lower (has_type $I32 (atomic_load flags @ (bigendian) addr)))
|
3215
|
+
(load32 (lower_address flags addr (zero_offset))))
|
3216
|
+
|
3217
|
+
;; 32-bit little-endian atomic load.
|
3218
|
+
(rule (lower (has_type $I32 (atomic_load flags @ (littleendian) addr)))
|
3219
|
+
(loadrev32 (lower_address flags addr (zero_offset))))
|
3220
|
+
|
3221
|
+
;; 64-bit big-endian atomic load.
|
3222
|
+
(rule 1 (lower (has_type $I64 (atomic_load flags @ (bigendian) addr)))
|
3223
|
+
(load64 (lower_address flags addr (zero_offset))))
|
3224
|
+
|
3225
|
+
;; 64-bit little-endian atomic load.
|
3226
|
+
(rule (lower (has_type $I64 (atomic_load flags @ (littleendian) addr)))
|
3227
|
+
(loadrev64 (lower_address flags addr (zero_offset))))
|
3228
|
+
|
3229
|
+
|
3230
|
+
;;;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3231
|
+
|
3232
|
+
;; Atomic stores can be implemented via regular stores followed by a fence.
|
3233
|
+
(decl atomic_store_impl (SideEffectNoResult) InstOutput)
|
3234
|
+
(rule (atomic_store_impl store)
|
3235
|
+
(let ((_ InstOutput (side_effect store)))
|
3236
|
+
(side_effect (fence_impl))))
|
3237
|
+
|
3238
|
+
;; 8-bit atomic store.
|
3239
|
+
(rule (lower (atomic_store flags val @ (value_type $I8) addr))
|
3240
|
+
(atomic_store_impl (istore8_impl flags val addr (zero_offset))))
|
3241
|
+
|
3242
|
+
;; 16-bit atomic store.
|
3243
|
+
(rule (lower (atomic_store flags val @ (value_type $I16) addr))
|
3244
|
+
(atomic_store_impl (istore16_impl flags val addr (zero_offset))))
|
3245
|
+
|
3246
|
+
;; 32-bit atomic store.
|
3247
|
+
(rule (lower (atomic_store flags val @ (value_type $I32) addr))
|
3248
|
+
(atomic_store_impl (istore32_impl flags val addr (zero_offset))))
|
3249
|
+
|
3250
|
+
;; 64-bit atomic store.
|
3251
|
+
(rule (lower (atomic_store flags val @ (value_type $I64) addr))
|
3252
|
+
(atomic_store_impl (istore64_impl flags val addr (zero_offset))))
|
3253
|
+
|
3254
|
+
|
3255
|
+
;;;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3256
|
+
|
3257
|
+
;; Fence to ensure sequential consistency.
|
3258
|
+
(rule (lower (fence))
|
3259
|
+
(side_effect (fence_impl)))
|
3260
|
+
|
3261
|
+
|
3262
|
+
;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3263
|
+
|
3264
|
+
;; We want to optimize the typical use of `icmp` (generating an integer 0/1
|
3265
|
+
;; result) followed by some user, like a `select` or a conditional branch.
|
3266
|
+
;; Instead of first generating the integer result and later testing it again,
|
3267
|
+
;; we want to sink the comparison to be performed at the site of use.
|
3268
|
+
;;
|
3269
|
+
;; To enable this, we provide generic helpers that return a `ProducesBool`
|
3270
|
+
;; encapsulating the comparison in question, which can be used by all the
|
3271
|
+
;; above scenarios.
|
3272
|
+
;;
|
3273
|
+
;; N.B. There are specific considerations when sinking a memory load into a
|
3274
|
+
;; comparison. When emitting an `icmp` directly, this can of course be done
|
3275
|
+
;; as usual. However, when we use the `ProducesBool` elsewhere, we need to
|
3276
|
+
;; consider *three* instructions: the load, the `icmp`, and the final user
|
3277
|
+
;; (e.g. a conditional branch). The only way to safely sink the load would
|
3278
|
+
;; be to sink it direct into the final user, which is only possible if there
|
3279
|
+
;; is no *other* user of the `icmp` result. This is not currently being
|
3280
|
+
;; verified by the `SinkableInst` logic, so to be safe we do not perform this
|
3281
|
+
;; optimization at all.
|
3282
|
+
;;
|
3283
|
+
;; The generic `icmp_val` helper therefore has a flag indicating whether
|
3284
|
+
;; it is being invoked in a context where it is safe to sink memory loads
|
3285
|
+
;; (e.g. when directly emitting an `icmp`), or whether it is not (e.g. when
|
3286
|
+
;; sinking the `icmp` result into a conditional branch or select).
|
3287
|
+
|
3288
|
+
;; Main `icmp` entry point. Generate a `ProducesBool` capturing the
|
3289
|
+
;; integer comparison and immediately lower it to a 0/1 integer result.
|
3290
|
+
;; In this case, it is safe to sink memory loads.
|
3291
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (icmp int_cc x y)))
|
3292
|
+
(lower_bool ty (icmp_val $true int_cc x y)))
|
3293
|
+
|
3294
|
+
|
3295
|
+
;; Return a `ProducesBool` to implement any integer comparison.
|
3296
|
+
;; The first argument is a flag to indicate whether it is safe to sink
|
3297
|
+
;; memory loads as discussed above.
|
3298
|
+
(decl icmp_val (bool IntCC Value Value) ProducesBool)
|
3299
|
+
|
3300
|
+
;; Dispatch for signed comparisons.
|
3301
|
+
(rule -1 (icmp_val allow_mem int_cc @ (signed) x @ (value_type (fits_in_64 _)) y)
|
3302
|
+
(bool (icmps_val allow_mem x y) (intcc_as_cond int_cc)))
|
3303
|
+
;; Dispatch for unsigned comparisons.
|
3304
|
+
(rule -2 (icmp_val allow_mem int_cc @ (unsigned) x @ (value_type (fits_in_64 _)) y)
|
3305
|
+
(bool (icmpu_val allow_mem x y) (intcc_as_cond int_cc)))
|
3306
|
+
|
3307
|
+
|
3308
|
+
;; Return a `ProducesBool` to implement signed integer comparisons.
|
3309
|
+
(decl icmps_val (bool Value Value) ProducesFlags)
|
3310
|
+
|
3311
|
+
;; Compare (signed) two registers.
|
3312
|
+
(rule 0 (icmps_val _ x @ (value_type (fits_in_64 ty)) y)
|
3313
|
+
(icmps_reg (ty_ext32 ty) (put_in_reg_sext32 x) (put_in_reg_sext32 y)))
|
3314
|
+
|
3315
|
+
;; Compare (signed) a register and a sign-extended register.
|
3316
|
+
(rule 3 (icmps_val _ x @ (value_type (fits_in_64 ty)) (sext32_value y))
|
3317
|
+
(icmps_reg_sext32 ty x y))
|
3318
|
+
|
3319
|
+
;; Compare (signed) a register and an immediate.
|
3320
|
+
(rule 2 (icmps_val _ x @ (value_type (fits_in_64 ty)) (i16_from_value y))
|
3321
|
+
(icmps_simm16 (ty_ext32 ty) (put_in_reg_sext32 x) y))
|
3322
|
+
(rule 1 (icmps_val _ x @ (value_type (fits_in_64 ty)) (i32_from_value y))
|
3323
|
+
(icmps_simm32 (ty_ext32 ty) (put_in_reg_sext32 x) y))
|
3324
|
+
|
3325
|
+
;; Compare (signed) a register and memory (32/64-bit types).
|
3326
|
+
(rule 4 (icmps_val $true x @ (value_type (fits_in_64 ty)) (sinkable_load_32_64 y))
|
3327
|
+
(icmps_mem ty x (sink_load y)))
|
3328
|
+
|
3329
|
+
;; Compare (signed) a register and memory (16-bit types).
|
3330
|
+
(rule 5 (icmps_val $true x @ (value_type (fits_in_64 ty)) (sinkable_load_16 y))
|
3331
|
+
(icmps_mem_sext16 (ty_ext32 ty) (put_in_reg_sext32 x) (sink_load y)))
|
3332
|
+
|
3333
|
+
;; Compare (signed) a register and sign-extended memory.
|
3334
|
+
(rule 4 (icmps_val $true x @ (value_type (fits_in_64 ty)) (sinkable_sload16 y))
|
3335
|
+
(icmps_mem_sext16 ty x (sink_sload16 y)))
|
3336
|
+
(rule 4 (icmps_val $true x @ (value_type (fits_in_64 ty)) (sinkable_sload32 y))
|
3337
|
+
(icmps_mem_sext32 ty x (sink_sload32 y)))
|
3338
|
+
|
3339
|
+
|
3340
|
+
;; Return a `ProducesBool` to implement unsigned integer comparisons.
|
3341
|
+
(decl icmpu_val (bool Value Value) ProducesFlags)
|
3342
|
+
|
3343
|
+
;; Compare (unsigned) two registers.
|
3344
|
+
(rule (icmpu_val _ x @ (value_type (fits_in_64 ty)) y)
|
3345
|
+
(icmpu_reg (ty_ext32 ty) (put_in_reg_zext32 x) (put_in_reg_zext32 y)))
|
3346
|
+
|
3347
|
+
;; Compare (unsigned) a register and a sign-extended register.
|
3348
|
+
(rule 1 (icmpu_val _ x @ (value_type (fits_in_64 ty)) (zext32_value y))
|
3349
|
+
(icmpu_reg_zext32 ty x y))
|
3350
|
+
|
3351
|
+
;; Compare (unsigned) a register and an immediate.
|
3352
|
+
(rule 2 (icmpu_val _ x @ (value_type (fits_in_64 ty)) (u32_from_value y))
|
3353
|
+
(icmpu_uimm32 (ty_ext32 ty) (put_in_reg_zext32 x) y))
|
3354
|
+
|
3355
|
+
;; Compare (unsigned) a register and memory (32/64-bit types).
|
3356
|
+
(rule 4 (icmpu_val $true x @ (value_type (fits_in_64 ty)) (sinkable_load_32_64 y))
|
3357
|
+
(icmpu_mem ty x (sink_load y)))
|
3358
|
+
|
3359
|
+
;; Compare (unsigned) a register and memory (16-bit types).
|
3360
|
+
;; Note that the ISA only provides instructions with a PC-relative memory
|
3361
|
+
;; address here, so we need to check whether the sinkable load matches this.
|
3362
|
+
(rule 3 (icmpu_val $true x @ (value_type (fits_in_64 ty))
|
3363
|
+
(sinkable_load_16 ld))
|
3364
|
+
(if-let y (load_sym ld))
|
3365
|
+
(icmpu_mem_zext16 (ty_ext32 ty) (put_in_reg_zext32 x) (sink_load y)))
|
3366
|
+
|
3367
|
+
;; Compare (unsigned) a register and zero-extended memory.
|
3368
|
+
;; Note that the ISA only provides instructions with a PC-relative memory
|
3369
|
+
;; address here, so we need to check whether the sinkable load matches this.
|
3370
|
+
(rule 3 (icmpu_val $true x @ (value_type (fits_in_64 ty))
|
3371
|
+
(sinkable_uload16 ld))
|
3372
|
+
(if-let y (uload16_sym ld))
|
3373
|
+
(icmpu_mem_zext16 ty x (sink_uload16 y)))
|
3374
|
+
(rule 3 (icmpu_val $true x @ (value_type (fits_in_64 ty)) (sinkable_uload32 y))
|
3375
|
+
(icmpu_mem_zext32 ty x (sink_uload32 y)))
|
3376
|
+
|
3377
|
+
|
3378
|
+
;; Compare 128-bit integers for equality.
|
3379
|
+
;; Implemented via element-wise comparison using the all-element true CC flag.
|
3380
|
+
(rule (icmp_val _ (IntCC.Equal) x @ (value_type (vr128_ty _)) y)
|
3381
|
+
(bool (vec_cmpeqs $I64X2 x y)
|
3382
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3383
|
+
(rule (icmp_val _ (IntCC.NotEqual) x @ (value_type (vr128_ty _)) y)
|
3384
|
+
(bool (vec_cmpeqs $I64X2 x y)
|
3385
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3386
|
+
|
3387
|
+
;; Compare (signed) 128-bit integers for relational inequality.
|
3388
|
+
;; Implemented via synthetic instruction using VECG and VCHLGS.
|
3389
|
+
(rule (icmp_val _ (IntCC.SignedGreaterThan) x @ (value_type (vr128_ty ty)) y)
|
3390
|
+
(vec_int128_scmphi x y))
|
3391
|
+
(rule (icmp_val _ (IntCC.SignedLessThan) x @ (value_type (vr128_ty ty)) y)
|
3392
|
+
(vec_int128_scmphi y x))
|
3393
|
+
(rule (icmp_val _ (IntCC.SignedGreaterThanOrEqual) x @ (value_type (vr128_ty ty)) y)
|
3394
|
+
(invert_bool (vec_int128_scmphi y x)))
|
3395
|
+
(rule (icmp_val _ (IntCC.SignedLessThanOrEqual) x @ (value_type (vr128_ty ty)) y)
|
3396
|
+
(invert_bool (vec_int128_scmphi x y)))
|
3397
|
+
|
3398
|
+
;; Compare (unsigned) 128-bit integers for relational inequality.
|
3399
|
+
;; Implemented via synthetic instruction using VECLG and VCHLGS.
|
3400
|
+
(rule (icmp_val _ (IntCC.UnsignedGreaterThan) x @ (value_type (vr128_ty ty)) y)
|
3401
|
+
(vec_int128_ucmphi x y))
|
3402
|
+
(rule (icmp_val _ (IntCC.UnsignedLessThan) x @ (value_type (vr128_ty ty)) y)
|
3403
|
+
(vec_int128_ucmphi y x))
|
3404
|
+
(rule (icmp_val _ (IntCC.UnsignedGreaterThanOrEqual) x @ (value_type (vr128_ty ty)) y)
|
3405
|
+
(invert_bool (vec_int128_ucmphi y x)))
|
3406
|
+
(rule (icmp_val _ (IntCC.UnsignedLessThanOrEqual) x @ (value_type (vr128_ty ty)) y)
|
3407
|
+
(invert_bool (vec_int128_ucmphi x y)))
|
3408
|
+
|
3409
|
+
|
3410
|
+
;; Vector `icmp` produces a boolean vector.
|
3411
|
+
;; We need to handle the various IntCC flags separately here.
|
3412
|
+
|
3413
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.Equal) x y)))
|
3414
|
+
(vec_cmpeq ty x y))
|
3415
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.NotEqual) x y)))
|
3416
|
+
(vec_not ty (vec_cmpeq ty x y)))
|
3417
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.SignedGreaterThan) x y)))
|
3418
|
+
(vec_cmph ty x y))
|
3419
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.SignedLessThanOrEqual) x y)))
|
3420
|
+
(vec_not ty (vec_cmph ty x y)))
|
3421
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.SignedLessThan) x y)))
|
3422
|
+
(vec_cmph ty y x))
|
3423
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.SignedGreaterThanOrEqual) x y)))
|
3424
|
+
(vec_not ty (vec_cmph ty y x)))
|
3425
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.UnsignedGreaterThan) x y)))
|
3426
|
+
(vec_cmphl ty x y))
|
3427
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.UnsignedLessThanOrEqual) x y)))
|
3428
|
+
(vec_not ty (vec_cmphl ty x y)))
|
3429
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.UnsignedLessThan) x y)))
|
3430
|
+
(vec_cmphl ty y x))
|
3431
|
+
(rule (lower (has_type (ty_vec128 ty) (icmp (IntCC.UnsignedGreaterThanOrEqual) x y)))
|
3432
|
+
(vec_not ty (vec_cmphl ty y x)))
|
3433
|
+
|
3434
|
+
|
3435
|
+
;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3436
|
+
|
3437
|
+
;; Main `fcmp` entry point. Generate a `ProducesBool` capturing the
|
3438
|
+
;; integer comparison and immediately lower it to a 0/1 integer result.
|
3439
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (fcmp float_cc x y)))
|
3440
|
+
(lower_bool ty (fcmp_val float_cc x y)))
|
3441
|
+
|
3442
|
+
;; Return a `ProducesBool` to implement any floating-point comparison.
|
3443
|
+
(decl fcmp_val (FloatCC Value Value) ProducesBool)
|
3444
|
+
(rule (fcmp_val float_cc x @ (value_type ty) y)
|
3445
|
+
(bool (fcmp_reg ty x y)
|
3446
|
+
(floatcc_as_cond float_cc)))
|
3447
|
+
|
3448
|
+
;; Vector `fcmp` produces a boolean vector.
|
3449
|
+
;; We need to handle the various FloatCC flags separately here.
|
3450
|
+
|
3451
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.Equal) x y)))
|
3452
|
+
(vec_fcmpeq ty x y))
|
3453
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.NotEqual) x y)))
|
3454
|
+
(vec_not ty (vec_fcmpeq ty x y)))
|
3455
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.GreaterThan) x y)))
|
3456
|
+
(vec_fcmph ty x y))
|
3457
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.UnorderedOrLessThanOrEqual) x y)))
|
3458
|
+
(vec_not ty (vec_fcmph ty x y)))
|
3459
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.GreaterThanOrEqual) x y)))
|
3460
|
+
(vec_fcmphe ty x y))
|
3461
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.UnorderedOrLessThan) x y)))
|
3462
|
+
(vec_not ty (vec_fcmphe ty x y)))
|
3463
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.LessThan) x y)))
|
3464
|
+
(vec_fcmph ty y x))
|
3465
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) x y)))
|
3466
|
+
(vec_not ty (vec_fcmph ty y x)))
|
3467
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.LessThanOrEqual) x y)))
|
3468
|
+
(vec_fcmphe ty y x))
|
3469
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.UnorderedOrGreaterThan) x y)))
|
3470
|
+
(vec_not ty (vec_fcmphe ty y x)))
|
3471
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.Ordered) x y)))
|
3472
|
+
(vec_or ty (vec_fcmphe ty x y) (vec_fcmphe ty y x)))
|
3473
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.Unordered) x y)))
|
3474
|
+
(vec_not_or ty (vec_fcmphe ty x y) (vec_fcmphe ty y x)))
|
3475
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.OrderedNotEqual) x y)))
|
3476
|
+
(vec_or ty (vec_fcmph ty x y) (vec_fcmph ty y x)))
|
3477
|
+
(rule (lower (has_type (ty_vec128 ty) (fcmp (FloatCC.UnorderedOrEqual) x y)))
|
3478
|
+
(vec_not_or ty (vec_fcmph ty x y) (vec_fcmph ty y x)))
|
3479
|
+
|
3480
|
+
|
3481
|
+
;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3482
|
+
|
3483
|
+
;; Main `vall_true` entry point. Generate a `ProducesBool` capturing the
|
3484
|
+
;; comparison and immediately lower it to a 0/1 integer result.
|
3485
|
+
(rule (lower (has_type (fits_in_64 ty) (vall_true x)))
|
3486
|
+
(lower_bool ty (vall_true_val x)))
|
3487
|
+
|
3488
|
+
;; Return a `ProducesBool` to implement `vall_true`.
|
3489
|
+
(decl vall_true_val (Value) ProducesBool)
|
3490
|
+
(rule -1 (vall_true_val x @ (value_type ty))
|
3491
|
+
(bool (vec_cmpeqs ty x (vec_imm ty 0))
|
3492
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3493
|
+
|
3494
|
+
;; Short-circuit `vall_true` on the result of a `icmp`.
|
3495
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.Equal) x y)))
|
3496
|
+
(bool (vec_cmpeqs ty x y)
|
3497
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3498
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.NotEqual) x y)))
|
3499
|
+
(bool (vec_cmpeqs ty x y)
|
3500
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3501
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.SignedGreaterThan) x y)))
|
3502
|
+
(bool (vec_cmphs ty x y)
|
3503
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3504
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.SignedLessThanOrEqual) x y)))
|
3505
|
+
(bool (vec_cmphs ty x y)
|
3506
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3507
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.SignedLessThan) x y)))
|
3508
|
+
(bool (vec_cmphs ty y x)
|
3509
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3510
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.SignedGreaterThanOrEqual) x y)))
|
3511
|
+
(bool (vec_cmphs ty y x)
|
3512
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3513
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.UnsignedGreaterThan) x y)))
|
3514
|
+
(bool (vec_cmphls ty x y)
|
3515
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3516
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.UnsignedLessThanOrEqual) x y)))
|
3517
|
+
(bool (vec_cmphls ty x y)
|
3518
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3519
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.UnsignedLessThan) x y)))
|
3520
|
+
(bool (vec_cmphls ty y x)
|
3521
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3522
|
+
(rule (vall_true_val (has_type ty (icmp (IntCC.UnsignedGreaterThanOrEqual) x y)))
|
3523
|
+
(bool (vec_cmphls ty y x)
|
3524
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3525
|
+
|
3526
|
+
;; Short-circuit `vall_true` on the result of a `fcmp` where possible.
|
3527
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.Equal) x y)))
|
3528
|
+
(bool (vec_fcmpeqs ty x y)
|
3529
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3530
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.NotEqual) x y)))
|
3531
|
+
(bool (vec_fcmpeqs ty x y)
|
3532
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3533
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.GreaterThan) x y)))
|
3534
|
+
(bool (vec_fcmphs ty x y)
|
3535
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3536
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.UnorderedOrLessThanOrEqual) x y)))
|
3537
|
+
(bool (vec_fcmphs ty x y)
|
3538
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3539
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.GreaterThanOrEqual) x y)))
|
3540
|
+
(bool (vec_fcmphes ty x y)
|
3541
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3542
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.UnorderedOrLessThan) x y)))
|
3543
|
+
(bool (vec_fcmphes ty x y)
|
3544
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3545
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.LessThan) x y)))
|
3546
|
+
(bool (vec_fcmphs ty y x)
|
3547
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3548
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) x y)))
|
3549
|
+
(bool (vec_fcmphs ty y x)
|
3550
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3551
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.LessThanOrEqual) x y)))
|
3552
|
+
(bool (vec_fcmphes ty y x)
|
3553
|
+
(floatcc_as_cond (FloatCC.Equal))))
|
3554
|
+
(rule (vall_true_val (has_type ty (fcmp (FloatCC.UnorderedOrGreaterThan) x y)))
|
3555
|
+
(bool (vec_fcmphes ty y x)
|
3556
|
+
(floatcc_as_cond (FloatCC.Unordered))))
|
3557
|
+
|
3558
|
+
|
3559
|
+
;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3560
|
+
|
3561
|
+
;; Main `vany_true` entry point. Generate a `ProducesBool` capturing the
|
3562
|
+
;; comparison and immediately lower it to a 0/1 integer result.
|
3563
|
+
(rule (lower (has_type (fits_in_64 ty) (vany_true x)))
|
3564
|
+
(lower_bool ty (vany_true_val x)))
|
3565
|
+
|
3566
|
+
;; Return a `ProducesBool` to implement `vany_true`.
|
3567
|
+
(decl vany_true_val (Value) ProducesBool)
|
3568
|
+
(rule -1 (vany_true_val x @ (value_type ty))
|
3569
|
+
(bool (vec_cmpeqs ty x (vec_imm ty 0))
|
3570
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3571
|
+
|
3572
|
+
;; Short-circuit `vany_true` on the result of a `icmp`.
|
3573
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.Equal) x y)))
|
3574
|
+
(bool (vec_cmpeqs ty x y)
|
3575
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3576
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.NotEqual) x y)))
|
3577
|
+
(bool (vec_cmpeqs ty x y)
|
3578
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3579
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.SignedGreaterThan) x y)))
|
3580
|
+
(bool (vec_cmphs ty x y)
|
3581
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3582
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.SignedLessThanOrEqual) x y)))
|
3583
|
+
(bool (vec_cmphs ty x y)
|
3584
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3585
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.SignedLessThan) x y)))
|
3586
|
+
(bool (vec_cmphs ty y x)
|
3587
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3588
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.SignedGreaterThanOrEqual) x y)))
|
3589
|
+
(bool (vec_cmphs ty y x)
|
3590
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3591
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.UnsignedGreaterThan) x y)))
|
3592
|
+
(bool (vec_cmphls ty x y)
|
3593
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3594
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.UnsignedLessThanOrEqual) x y)))
|
3595
|
+
(bool (vec_cmphls ty x y)
|
3596
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3597
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.UnsignedLessThan) x y)))
|
3598
|
+
(bool (vec_cmphls ty y x)
|
3599
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3600
|
+
(rule (vany_true_val (has_type ty (icmp (IntCC.UnsignedGreaterThanOrEqual) x y)))
|
3601
|
+
(bool (vec_cmphls ty y x)
|
3602
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3603
|
+
|
3604
|
+
;; Short-circuit `vany_true` on the result of a `fcmp` where possible.
|
3605
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.Equal) x y)))
|
3606
|
+
(bool (vec_fcmpeqs ty x y)
|
3607
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3608
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.NotEqual) x y)))
|
3609
|
+
(bool (vec_fcmpeqs ty x y)
|
3610
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3611
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.GreaterThan) x y)))
|
3612
|
+
(bool (vec_fcmphs ty x y)
|
3613
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3614
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.UnorderedOrLessThanOrEqual) x y)))
|
3615
|
+
(bool (vec_fcmphs ty x y)
|
3616
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3617
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.GreaterThanOrEqual) x y)))
|
3618
|
+
(bool (vec_fcmphes ty x y)
|
3619
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3620
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.UnorderedOrLessThan) x y)))
|
3621
|
+
(bool (vec_fcmphes ty x y)
|
3622
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3623
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.LessThan) x y)))
|
3624
|
+
(bool (vec_fcmphs ty y x)
|
3625
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3626
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) x y)))
|
3627
|
+
(bool (vec_fcmphs ty y x)
|
3628
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3629
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.LessThanOrEqual) x y)))
|
3630
|
+
(bool (vec_fcmphes ty y x)
|
3631
|
+
(floatcc_as_cond (FloatCC.Ordered))))
|
3632
|
+
(rule (vany_true_val (has_type ty (fcmp (FloatCC.UnorderedOrGreaterThan) x y)))
|
3633
|
+
(bool (vec_fcmphes ty y x)
|
3634
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3635
|
+
|
3636
|
+
|
3637
|
+
;;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3638
|
+
|
3639
|
+
(rule (lower (vhigh_bits x @ (value_type (multi_lane 8 16))))
|
3640
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
3641
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 0 8 16 24 32 40 48 56
|
3642
|
+
64 72 80 88 96 104 112 120))))
|
3643
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3644
|
+
(rule 1 (lower (vhigh_bits x @ (value_type (multi_lane 8 16))))
|
3645
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
3646
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 120 112 104 96 88 80 72 64
|
3647
|
+
56 48 40 32 24 16 8 0))))
|
3648
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3649
|
+
|
3650
|
+
(rule (lower (vhigh_bits x @ (value_type (multi_lane 16 8))))
|
3651
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
3652
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3653
|
+
0 16 32 48 64 80 96 112))))
|
3654
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3655
|
+
(rule 1 (lower (vhigh_bits x @ (value_type (multi_lane 16 8))))
|
3656
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
3657
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3658
|
+
112 96 80 64 48 32 16 0))))
|
3659
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3660
|
+
|
3661
|
+
(rule (lower (vhigh_bits x @ (value_type (multi_lane 32 4))))
|
3662
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
3663
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3664
|
+
128 128 128 128 0 32 64 96))))
|
3665
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3666
|
+
(rule 1 (lower (vhigh_bits x @ (value_type (multi_lane 32 4))))
|
3667
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
3668
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3669
|
+
128 128 128 128 96 64 32 0))))
|
3670
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3671
|
+
|
3672
|
+
(rule (lower (vhigh_bits x @ (value_type (multi_lane 64 2))))
|
3673
|
+
(if-let (LaneOrder.LittleEndian) (lane_order))
|
3674
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3675
|
+
128 128 128 128 128 128 0 64))))
|
3676
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3677
|
+
(rule 1 (lower (vhigh_bits x @ (value_type (multi_lane 64 2))))
|
3678
|
+
(if-let (LaneOrder.BigEndian) (lane_order))
|
3679
|
+
(let ((mask Reg (vec_imm $I8X16 (imm8x16 128 128 128 128 128 128 128 128
|
3680
|
+
128 128 128 128 128 128 64 0))))
|
3681
|
+
(vec_extract_lane $I64X2 (vec_bitpermute x mask) 0 (zero_reg))))
|
3682
|
+
|
3683
|
+
|
3684
|
+
;;;; Rules for `is_null` and `is_invalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3685
|
+
|
3686
|
+
;; Null references are represented by the constant value 0.
|
3687
|
+
(rule (lower (has_type $I8 (is_null x @ (value_type $R64))))
|
3688
|
+
(lower_bool $I8 (bool (icmps_simm16 $I64 x 0)
|
3689
|
+
(intcc_as_cond (IntCC.Equal)))))
|
3690
|
+
|
3691
|
+
|
3692
|
+
;; Invalid references are represented by the constant value -1.
|
3693
|
+
(rule (lower (has_type $I8 (is_invalid x @ (value_type $R64))))
|
3694
|
+
(lower_bool $I8 (bool (icmps_simm16 $I64 x -1)
|
3695
|
+
(intcc_as_cond (IntCC.Equal)))))
|
3696
|
+
|
3697
|
+
|
3698
|
+
;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3699
|
+
|
3700
|
+
;; Return a `ProducesBool` to capture the fact that the input value is nonzero.
|
3701
|
+
;; In the common case where that input is the result of an `icmp` or `fcmp`
|
3702
|
+
;; instruction, directly use that compare. Note that it is not safe to sink
|
3703
|
+
;; memory loads here, see the `icmp` comment.
|
3704
|
+
(decl value_nonzero (Value) ProducesBool)
|
3705
|
+
(rule (value_nonzero (icmp int_cc x y)) (icmp_val $false int_cc x y))
|
3706
|
+
(rule (value_nonzero (fcmp float_cc x y)) (fcmp_val float_cc x y))
|
3707
|
+
(rule -1 (value_nonzero val @ (value_type (gpr32_ty ty)))
|
3708
|
+
(bool (icmps_simm16 $I32 (put_in_reg_sext32 val) 0)
|
3709
|
+
(intcc_as_cond (IntCC.NotEqual))))
|
3710
|
+
(rule -2 (value_nonzero val @ (value_type (gpr64_ty ty)))
|
3711
|
+
(bool (icmps_simm16 $I64 (put_in_reg val) 0)
|
3712
|
+
(intcc_as_cond (IntCC.NotEqual))))
|
3713
|
+
(rule -3 (value_nonzero val @ (value_type (vr128_ty ty)))
|
3714
|
+
(bool (vec_cmpeqs $I64X2 val (vec_imm $I64X2 0))
|
3715
|
+
(floatcc_as_cond (FloatCC.NotEqual))))
|
3716
|
+
|
3717
|
+
;; Main `select` entry point. Lower the `value_nonzero` result.
|
3718
|
+
(rule (lower (has_type ty (select val_cond val_true val_false)))
|
3719
|
+
(select_bool_reg ty (value_nonzero val_cond)
|
3720
|
+
(put_in_reg val_true) (put_in_reg val_false)))
|
3721
|
+
|
3722
|
+
|
3723
|
+
;;;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3724
|
+
|
3725
|
+
;; We need to guarantee a conditional move instruction. But on this platform
|
3726
|
+
;; this is already the best way to implement select in general, so the
|
3727
|
+
;; implementation of `select_spectre_guard` is identical to `select`.
|
3728
|
+
(rule (lower (has_type ty (select_spectre_guard
|
3729
|
+
val_cond val_true val_false)))
|
3730
|
+
(select_bool_reg ty (value_nonzero val_cond)
|
3731
|
+
(put_in_reg val_true) (put_in_reg val_false)))
|
3732
|
+
|
3733
|
+
|
3734
|
+
;;;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3735
|
+
|
3736
|
+
;; Unconditional branch. The target is found as first (and only) element in
|
3737
|
+
;; the list of the current block's branch targets passed as `targets`.
|
3738
|
+
(rule (lower_branch (jump _) targets)
|
3739
|
+
(emit_side_effect (jump_impl (vec_element targets 0))))
|
3740
|
+
|
3741
|
+
|
3742
|
+
;;;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3743
|
+
|
3744
|
+
;; Jump table. `targets` contains the default target followed by the
|
3745
|
+
;; list of branch targets per index value.
|
3746
|
+
(rule (lower_branch (br_table val_idx _) targets)
|
3747
|
+
(let ((idx Reg (put_in_reg_zext64 val_idx))
|
3748
|
+
;; Bounds-check the index and branch to default.
|
3749
|
+
;; This is an internal branch that is not a terminator insn.
|
3750
|
+
;; Instead, the default target is listed a potential target
|
3751
|
+
;; in the final JTSequence, which is the block terminator.
|
3752
|
+
(cond ProducesBool
|
3753
|
+
(bool (icmpu_uimm32 $I64 idx (vec_length_minus1 targets))
|
3754
|
+
(intcc_as_cond (IntCC.UnsignedGreaterThanOrEqual))))
|
3755
|
+
(_ Unit (emit_side_effect (oneway_cond_br_bool cond
|
3756
|
+
(vec_element targets 0)))))
|
3757
|
+
;; Scale the index by the element size, and then emit the
|
3758
|
+
;; compound instruction that does:
|
3759
|
+
;;
|
3760
|
+
;; larl %r1, <jt-base>
|
3761
|
+
;; agf %r1, 0(%r1, %rScaledIndex)
|
3762
|
+
;; br %r1
|
3763
|
+
;; [jt entries]
|
3764
|
+
;;
|
3765
|
+
;; This must be *one* instruction in the vcode because
|
3766
|
+
;; we cannot allow regalloc to insert any spills/fills
|
3767
|
+
;; in the middle of the sequence; otherwise, the LARL's
|
3768
|
+
;; PC-rel offset to the jumptable would be incorrect.
|
3769
|
+
;; (The alternative is to introduce a relocation pass
|
3770
|
+
;; for inlined jumptables, which is much worse, IMHO.)
|
3771
|
+
(emit_side_effect (jt_sequence (lshl_imm $I64 idx 2) targets))))
|
3772
|
+
|
3773
|
+
|
3774
|
+
;;;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3775
|
+
|
3776
|
+
;; Two-way conditional branch on nonzero. `targets` contains:
|
3777
|
+
;; - element 0: target if the condition is true (i.e. value is nonzero)
|
3778
|
+
;; - element 1: target if the condition is false (i.e. value is zero)
|
3779
|
+
(rule (lower_branch (brif val_cond _ _) targets)
|
3780
|
+
(emit_side_effect (cond_br_bool (value_nonzero val_cond)
|
3781
|
+
(vec_element targets 0)
|
3782
|
+
(vec_element targets 1))))
|
3783
|
+
|
3784
|
+
|
3785
|
+
;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3786
|
+
|
3787
|
+
(rule (lower (trap trap_code))
|
3788
|
+
(side_effect (trap_impl trap_code)))
|
3789
|
+
|
3790
|
+
|
3791
|
+
;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3792
|
+
|
3793
|
+
(rule (lower (resumable_trap trap_code))
|
3794
|
+
(side_effect (trap_impl trap_code)))
|
3795
|
+
|
3796
|
+
|
3797
|
+
;;;; Rules for `trapz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3798
|
+
|
3799
|
+
(rule (lower (trapz val trap_code))
|
3800
|
+
(side_effect (trap_if_bool (invert_bool (value_nonzero val)) trap_code)))
|
3801
|
+
|
3802
|
+
|
3803
|
+
;;;; Rules for `trapnz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3804
|
+
|
3805
|
+
(rule (lower (trapnz val trap_code))
|
3806
|
+
(side_effect (trap_if_bool (value_nonzero val) trap_code)))
|
3807
|
+
|
3808
|
+
|
3809
|
+
;;;; Rules for `resumable_trapnz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3810
|
+
|
3811
|
+
(rule (lower (resumable_trapnz val trap_code))
|
3812
|
+
(side_effect (trap_if_bool (value_nonzero val) trap_code)))
|
3813
|
+
|
3814
|
+
|
3815
|
+
;;;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3816
|
+
|
3817
|
+
(rule (lower (debugtrap))
|
3818
|
+
(side_effect (debugtrap_impl)))
|
3819
|
+
|
3820
|
+
;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3821
|
+
|
3822
|
+
;; UaddOverflowTrap is implemented via a ADD LOGICAL instruction, which sets the
|
3823
|
+
;; the condition code as follows:
|
3824
|
+
;; 0 Result zero; no carry
|
3825
|
+
;; 1 Result not zero; no carry
|
3826
|
+
;; 2 Result zero; carry
|
3827
|
+
;; 3 Result not zero; carry
|
3828
|
+
;; This means "carry" corresponds to condition code 2 or 3, i.e.
|
3829
|
+
;; a condition mask of 2 | 1.
|
3830
|
+
;;
|
3831
|
+
;; As this does not match any of the encodings used with a normal integer
|
3832
|
+
;; comparsion, this cannot be represented by any IntCC value. We need to
|
3833
|
+
;; remap the IntCC::UnsignedGreaterThan value that we have here as result
|
3834
|
+
;; of the unsigned_add_overflow_condition call to the correct mask.
|
3835
|
+
|
3836
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (uadd_overflow_trap x y tc)))
|
3837
|
+
(with_flags
|
3838
|
+
(add_logical_reg_with_flags_paired ty x y)
|
3839
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3840
|
+
|
3841
|
+
;; Add a register an a zero-extended register.
|
3842
|
+
(rule 4 (lower (has_type (fits_in_64 ty)
|
3843
|
+
(uadd_overflow_trap x (zext32_value y) tc)))
|
3844
|
+
(with_flags
|
3845
|
+
(add_logical_reg_zext32_with_flags_paired ty x y)
|
3846
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3847
|
+
(rule 8 (lower (has_type (fits_in_64 ty)
|
3848
|
+
(uadd_overflow_trap (zext32_value x) y tc)))
|
3849
|
+
(with_flags
|
3850
|
+
(add_logical_reg_zext32_with_flags_paired ty y x)
|
3851
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3852
|
+
|
3853
|
+
;; Add a register and an immediate
|
3854
|
+
(rule 3 (lower (has_type (fits_in_64 ty)
|
3855
|
+
(uadd_overflow_trap x (u32_from_value y) tc)))
|
3856
|
+
(with_flags
|
3857
|
+
(add_logical_zimm32_with_flags_paired ty x y)
|
3858
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3859
|
+
(rule 7 (lower (has_type (fits_in_64 ty)
|
3860
|
+
(uadd_overflow_trap (u32_from_value x) y tc)))
|
3861
|
+
(with_flags
|
3862
|
+
(add_logical_zimm32_with_flags_paired ty y x)
|
3863
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3864
|
+
|
3865
|
+
;; Add a register and memory (32/64-bit types).
|
3866
|
+
(rule 2 (lower (has_type (fits_in_64 ty)
|
3867
|
+
(uadd_overflow_trap x (sinkable_load_32_64 y) tc)))
|
3868
|
+
(with_flags
|
3869
|
+
(add_logical_mem_with_flags_paired ty x (sink_load y))
|
3870
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3871
|
+
(rule 6 (lower (has_type (fits_in_64 ty)
|
3872
|
+
(uadd_overflow_trap (sinkable_load_32_64 x) y tc)))
|
3873
|
+
(with_flags
|
3874
|
+
(add_logical_mem_with_flags_paired ty y (sink_load x))
|
3875
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3876
|
+
|
3877
|
+
;; Add a register and zero-extended memory.
|
3878
|
+
(rule 1 (lower (has_type (fits_in_64 ty)
|
3879
|
+
(uadd_overflow_trap x (sinkable_uload32 y) tc)))
|
3880
|
+
(with_flags
|
3881
|
+
(add_logical_mem_zext32_with_flags_paired ty x (sink_uload32 y))
|
3882
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3883
|
+
(rule 5 (lower (has_type (fits_in_64 ty)
|
3884
|
+
(uadd_overflow_trap (sinkable_uload32 x) y tc)))
|
3885
|
+
(with_flags
|
3886
|
+
(add_logical_mem_zext32_with_flags_paired ty y (sink_uload32 x))
|
3887
|
+
(trap_if_impl (mask_as_cond 3) tc)))
|
3888
|
+
|
3889
|
+
;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3890
|
+
|
3891
|
+
(rule (lower (return args))
|
3892
|
+
(lower_return args))
|
3893
|
+
|
3894
|
+
|
3895
|
+
;;;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
3896
|
+
|
3897
|
+
;; Direct call to an in-range function.
|
3898
|
+
(rule 1 (lower (call (func_ref_data sig_ref name (reloc_distance_near)) args))
|
3899
|
+
(let ((abi Sig (abi_sig sig_ref))
|
3900
|
+
(_ Unit (abi_accumulate_outgoing_args_size abi))
|
3901
|
+
(uses CallArgList (lower_call_args abi (range 0 (abi_num_args abi)) args))
|
3902
|
+
(defs CallRetList (defs_init abi))
|
3903
|
+
(_ InstOutput (side_effect (abi_call abi name uses defs (Opcode.Call)))))
|
3904
|
+
(lower_call_rets abi defs (range (abi_first_ret sig_ref abi)
|
3905
|
+
(abi_num_rets abi)) (output_builder_new))))
|
3906
|
+
|
3907
|
+
;; Direct call to an out-of-range function (implicitly via pointer).
|
3908
|
+
(rule (lower (call (func_ref_data sig_ref name _) args))
|
3909
|
+
(let ((abi Sig (abi_sig sig_ref))
|
3910
|
+
(_ Unit (abi_accumulate_outgoing_args_size abi))
|
3911
|
+
(uses CallArgList (lower_call_args abi (range 0 (abi_num_args abi)) args))
|
3912
|
+
(defs CallRetList (defs_init abi))
|
3913
|
+
(target Reg (load_symbol_reloc (SymbolReloc.Absolute name 0)))
|
3914
|
+
(_ InstOutput (side_effect (abi_call_ind abi target uses defs (Opcode.Call)))))
|
3915
|
+
(lower_call_rets abi defs (range (abi_first_ret sig_ref abi)
|
3916
|
+
(abi_num_rets abi)) (output_builder_new))))
|
3917
|
+
|
3918
|
+
;; Indirect call.
|
3919
|
+
(rule (lower (call_indirect sig_ref ptr args))
|
3920
|
+
(let ((abi Sig (abi_sig sig_ref))
|
3921
|
+
(target Reg (put_in_reg ptr))
|
3922
|
+
(_ Unit (abi_accumulate_outgoing_args_size abi))
|
3923
|
+
(uses CallArgList (lower_call_args abi (range 0 (abi_num_args abi)) args))
|
3924
|
+
(defs CallRetList (defs_init abi))
|
3925
|
+
(_ InstOutput (side_effect (abi_call_ind abi target uses defs (Opcode.CallIndirect)))))
|
3926
|
+
(lower_call_rets abi defs (range (abi_first_ret sig_ref abi)
|
3927
|
+
(abi_num_rets abi)) (output_builder_new))))
|
3928
|
+
|
3929
|
+
;; Lower function arguments.
|
3930
|
+
(decl lower_call_args (Sig Range ValueSlice) CallArgList)
|
3931
|
+
(rule (lower_call_args abi range args)
|
3932
|
+
(let ((uses CallArgListBuilder (args_builder_new))
|
3933
|
+
(_ InstOutput (lower_call_args_buffer abi range args))
|
3934
|
+
(_ InstOutput (lower_call_args_slots abi uses range args))
|
3935
|
+
(_ InstOutput (lower_call_ret_arg abi uses)))
|
3936
|
+
(args_builder_finish uses)))
|
3937
|
+
|
3938
|
+
;; Lower function arguments (part 1): prepare buffer copies.
|
3939
|
+
(decl lower_call_args_buffer (Sig Range ValueSlice) InstOutput)
|
3940
|
+
(rule (lower_call_args_buffer abi (range_empty) _) (output_none))
|
3941
|
+
(rule (lower_call_args_buffer abi (range_unwrap head tail) args)
|
3942
|
+
(let ((_ InstOutput (copy_to_buffer 0 (abi_get_arg abi head)
|
3943
|
+
(value_slice_get args head))))
|
3944
|
+
(lower_call_args_buffer abi tail args)))
|
3945
|
+
|
3946
|
+
;; Lower function arguments (part 2): set up registers / stack slots.
|
3947
|
+
(decl lower_call_args_slots (Sig CallArgListBuilder Range ValueSlice) InstOutput)
|
3948
|
+
(rule (lower_call_args_slots abi _ (range_empty) _) (output_none))
|
3949
|
+
(rule (lower_call_args_slots abi uses (range_unwrap head tail) args)
|
3950
|
+
(let ((_ InstOutput (copy_to_arg uses (abi_lane_order abi)
|
3951
|
+
0 (abi_get_arg abi head)
|
3952
|
+
(value_slice_get args head))))
|
3953
|
+
(lower_call_args_slots abi uses tail args)))
|
3954
|
+
|
3955
|
+
;; Lower function arguments (part 3): implicit return-area pointer.
|
3956
|
+
(decl lower_call_ret_arg (Sig CallArgListBuilder) InstOutput)
|
3957
|
+
(rule (lower_call_ret_arg (abi_no_ret_arg) _) (output_none))
|
3958
|
+
(rule 1 (lower_call_ret_arg abi @ (abi_ret_arg (abi_arg_only_slot slot)) uses)
|
3959
|
+
(let ((mem MemArg (memarg_stack_off (abi_sized_stack_arg_space abi) 0)))
|
3960
|
+
(copy_reg_to_arg_slot uses (abi_lane_order abi) 0 slot (load_addr mem))))
|
3961
|
+
|
3962
|
+
;; Lower function return values by collecting them from registers / stack slots.
|
3963
|
+
(decl lower_call_rets (Sig CallRetList Range InstOutputBuilder) InstOutput)
|
3964
|
+
(rule (lower_call_rets abi _ (range_empty) builder) (output_builder_finish builder))
|
3965
|
+
(rule (lower_call_rets abi defs (range_unwrap head tail) builder)
|
3966
|
+
(let ((ret ValueRegs (copy_from_arg defs (abi_lane_order abi)
|
3967
|
+
(abi_sized_stack_arg_space abi)
|
3968
|
+
(abi_get_ret abi head)))
|
3969
|
+
(_ Unit (output_builder_push builder ret)))
|
3970
|
+
(lower_call_rets abi defs tail builder)))
|
3971
|
+
|
3972
|
+
;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
|
3973
|
+
|
3974
|
+
(rule (lower (get_stack_pointer))
|
3975
|
+
(sp))
|
3976
|
+
|
3977
|
+
(rule (lower (get_frame_pointer))
|
3978
|
+
(load64 (memarg_stack_off 0 0)))
|
3979
|
+
|
3980
|
+
(rule (lower (get_return_address))
|
3981
|
+
;; The return address is 14 pointer-sized slots above the initial SP. So
|
3982
|
+
;; our offset is `14 * 8 = 112`.
|
3983
|
+
(load64 (memarg_initial_sp_offset 112)))
|