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,3544 @@
|
|
1
|
+
//! This module contains the bulk of the interesting code performing the translation between
|
2
|
+
//! WebAssembly and Cranelift IR.
|
3
|
+
//!
|
4
|
+
//! The translation is done in one pass, opcode by opcode. Two main data structures are used during
|
5
|
+
//! code translations: the value stack and the control stack. The value stack mimics the execution
|
6
|
+
//! of the WebAssembly stack machine: each instruction result is pushed onto the stack and
|
7
|
+
//! instruction arguments are popped off the stack. Similarly, when encountering a control flow
|
8
|
+
//! block, it is pushed onto the control stack and popped off when encountering the corresponding
|
9
|
+
//! `End`.
|
10
|
+
//!
|
11
|
+
//! Another data structure, the translation state, records information concerning unreachable code
|
12
|
+
//! status and about if inserting a return at the end of the function is necessary.
|
13
|
+
//!
|
14
|
+
//! Some of the WebAssembly instructions need information about the environment for which they
|
15
|
+
//! are being translated:
|
16
|
+
//!
|
17
|
+
//! - the loads and stores need the memory base address;
|
18
|
+
//! - the `get_global` and `set_global` instructions depend on how the globals are implemented;
|
19
|
+
//! - `memory.size` and `memory.grow` are runtime functions;
|
20
|
+
//! - `call_indirect` has to translate the function index into the address of where this
|
21
|
+
//! is;
|
22
|
+
//!
|
23
|
+
//! That is why `translate_function_body` takes an object having the `WasmRuntime` trait as
|
24
|
+
//! argument.
|
25
|
+
//!
|
26
|
+
//! There is extra complexity associated with translation of 128-bit SIMD instructions.
|
27
|
+
//! Wasm only considers there to be a single 128-bit vector type. But CLIF's type system
|
28
|
+
//! distinguishes different lane configurations, so considers 8X16, 16X8, 32X4 and 64X2 to be
|
29
|
+
//! different types. The result is that, in wasm, it's perfectly OK to take the output of (eg)
|
30
|
+
//! an `add.16x8` and use that as an operand of a `sub.32x4`, without using any cast. But when
|
31
|
+
//! translated into CLIF, that will cause a verifier error due to the apparent type mismatch.
|
32
|
+
//!
|
33
|
+
//! This file works around that problem by liberally inserting `bitcast` instructions in many
|
34
|
+
//! places -- mostly, before the use of vector values, either as arguments to CLIF instructions
|
35
|
+
//! or as block actual parameters. These are no-op casts which nevertheless have different
|
36
|
+
//! input and output types, and are used (mostly) to "convert" 16X8, 32X4 and 64X2-typed vectors
|
37
|
+
//! to the "canonical" type, 8X16. Hence the functions `optionally_bitcast_vector`,
|
38
|
+
//! `bitcast_arguments`, `pop*_with_bitcast`, `canonicalise_then_jump`,
|
39
|
+
//! `canonicalise_then_br{z,nz}`, `is_non_canonical_v128` and `canonicalise_v128_values`.
|
40
|
+
//! Note that the `bitcast*` functions are occasionally used to convert to some type other than
|
41
|
+
//! 8X16, but the `canonicalise*` functions always convert to type 8X16.
|
42
|
+
//!
|
43
|
+
//! Be careful when adding support for new vector instructions. And when adding new jumps, even
|
44
|
+
//! if they are apparently don't have any connection to vectors. Never generate any kind of
|
45
|
+
//! (inter-block) jump directly. Instead use `canonicalise_then_jump` and
|
46
|
+
//! `canonicalise_then_br{z,nz}`.
|
47
|
+
//!
|
48
|
+
//! The use of bitcasts is ugly and inefficient, but currently unavoidable:
|
49
|
+
//!
|
50
|
+
//! * they make the logic in this file fragile: miss out a bitcast for any reason, and there is
|
51
|
+
//! the risk of the system failing in the verifier. At least for debug builds.
|
52
|
+
//!
|
53
|
+
//! * in the new backends, they potentially interfere with pattern matching on CLIF -- the
|
54
|
+
//! patterns need to take into account the presence of bitcast nodes.
|
55
|
+
//!
|
56
|
+
//! * in the new backends, they get translated into machine-level vector-register-copy
|
57
|
+
//! instructions, none of which are actually necessary. We then depend on the register
|
58
|
+
//! allocator to coalesce them all out.
|
59
|
+
//!
|
60
|
+
//! * they increase the total number of CLIF nodes that have to be processed, hence slowing down
|
61
|
+
//! the compilation pipeline. Also, the extra coalescing work generates a slowdown.
|
62
|
+
//!
|
63
|
+
//! A better solution which would avoid all four problems would be to remove the 8X16, 16X8,
|
64
|
+
//! 32X4 and 64X2 types from CLIF and instead have a single V128 type.
|
65
|
+
//!
|
66
|
+
//! For further background see also:
|
67
|
+
//! <https://github.com/bytecodealliance/wasmtime/issues/1147>
|
68
|
+
//! ("Too many raw_bitcasts in SIMD code")
|
69
|
+
//! <https://github.com/bytecodealliance/cranelift/pull/1251>
|
70
|
+
//! ("Add X128 type to represent WebAssembly's V128 type")
|
71
|
+
//! <https://github.com/bytecodealliance/cranelift/pull/1236>
|
72
|
+
//! ("Relax verification to allow I8X16 to act as a default vector type")
|
73
|
+
|
74
|
+
mod bounds_checks;
|
75
|
+
|
76
|
+
use super::{hash_map, HashMap};
|
77
|
+
use crate::environ::{FuncEnvironment, GlobalVariable};
|
78
|
+
use crate::state::{ControlStackFrame, ElseData, FuncTranslationState};
|
79
|
+
use crate::translation_utils::{
|
80
|
+
block_with_params, blocktype_params_results, f32_translation, f64_translation,
|
81
|
+
};
|
82
|
+
use crate::wasm_unsupported;
|
83
|
+
use crate::{FuncIndex, GlobalIndex, MemoryIndex, TableIndex, TypeIndex, WasmResult};
|
84
|
+
use core::{i32, u32};
|
85
|
+
use cranelift_codegen::ir::condcodes::{FloatCC, IntCC};
|
86
|
+
use cranelift_codegen::ir::immediates::Offset32;
|
87
|
+
use cranelift_codegen::ir::types::*;
|
88
|
+
use cranelift_codegen::ir::{
|
89
|
+
self, AtomicRmwOp, ConstantData, InstBuilder, JumpTableData, MemFlags, Value, ValueLabel,
|
90
|
+
};
|
91
|
+
use cranelift_codegen::packed_option::ReservedValue;
|
92
|
+
use cranelift_frontend::{FunctionBuilder, Variable};
|
93
|
+
use itertools::Itertools;
|
94
|
+
use smallvec::SmallVec;
|
95
|
+
use std::convert::TryFrom;
|
96
|
+
use std::vec::Vec;
|
97
|
+
use wasmparser::{FuncValidator, MemArg, Operator, WasmModuleResources};
|
98
|
+
|
99
|
+
/// Given a `Reachability<T>`, unwrap the inner `T` or, when unreachable, set
|
100
|
+
/// `state.reachable = false` and return.
|
101
|
+
///
|
102
|
+
/// Used in combination with calling `prepare_addr` and `prepare_atomic_addr`
|
103
|
+
/// when we can statically determine that a Wasm access will unconditionally
|
104
|
+
/// trap.
|
105
|
+
macro_rules! unwrap_or_return_unreachable_state {
|
106
|
+
($state:ident, $value:expr) => {
|
107
|
+
match $value {
|
108
|
+
Reachability::Reachable(x) => x,
|
109
|
+
Reachability::Unreachable => {
|
110
|
+
$state.reachable = false;
|
111
|
+
return Ok(());
|
112
|
+
}
|
113
|
+
}
|
114
|
+
};
|
115
|
+
}
|
116
|
+
|
117
|
+
// Clippy warns about "align: _" but its important to document that the flags field is ignored
|
118
|
+
#[cfg_attr(
|
119
|
+
feature = "cargo-clippy",
|
120
|
+
allow(clippy::unneeded_field_pattern, clippy::cognitive_complexity)
|
121
|
+
)]
|
122
|
+
/// Translates wasm operators into Cranelift IR instructions.
|
123
|
+
pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
|
124
|
+
validator: &mut FuncValidator<impl WasmModuleResources>,
|
125
|
+
op: &Operator,
|
126
|
+
builder: &mut FunctionBuilder,
|
127
|
+
state: &mut FuncTranslationState,
|
128
|
+
environ: &mut FE,
|
129
|
+
) -> WasmResult<()> {
|
130
|
+
if !state.reachable {
|
131
|
+
translate_unreachable_operator(validator, &op, builder, state, environ)?;
|
132
|
+
return Ok(());
|
133
|
+
}
|
134
|
+
|
135
|
+
// Given that we believe the current block is reachable, the FunctionBuilder ought to agree.
|
136
|
+
debug_assert!(!builder.is_unreachable());
|
137
|
+
|
138
|
+
// This big match treats all Wasm code operators.
|
139
|
+
match op {
|
140
|
+
/********************************** Locals ****************************************
|
141
|
+
* `get_local` and `set_local` are treated as non-SSA variables and will completely
|
142
|
+
* disappear in the Cranelift Code
|
143
|
+
***********************************************************************************/
|
144
|
+
Operator::LocalGet { local_index } => {
|
145
|
+
let val = builder.use_var(Variable::from_u32(*local_index));
|
146
|
+
state.push1(val);
|
147
|
+
let label = ValueLabel::from_u32(*local_index);
|
148
|
+
builder.set_val_label(val, label);
|
149
|
+
}
|
150
|
+
Operator::LocalSet { local_index } => {
|
151
|
+
let mut val = state.pop1();
|
152
|
+
|
153
|
+
// Ensure SIMD values are cast to their default Cranelift type, I8x16.
|
154
|
+
let ty = builder.func.dfg.value_type(val);
|
155
|
+
if ty.is_vector() {
|
156
|
+
val = optionally_bitcast_vector(val, I8X16, builder);
|
157
|
+
}
|
158
|
+
|
159
|
+
builder.def_var(Variable::from_u32(*local_index), val);
|
160
|
+
let label = ValueLabel::from_u32(*local_index);
|
161
|
+
builder.set_val_label(val, label);
|
162
|
+
}
|
163
|
+
Operator::LocalTee { local_index } => {
|
164
|
+
let mut val = state.peek1();
|
165
|
+
|
166
|
+
// Ensure SIMD values are cast to their default Cranelift type, I8x16.
|
167
|
+
let ty = builder.func.dfg.value_type(val);
|
168
|
+
if ty.is_vector() {
|
169
|
+
val = optionally_bitcast_vector(val, I8X16, builder);
|
170
|
+
}
|
171
|
+
|
172
|
+
builder.def_var(Variable::from_u32(*local_index), val);
|
173
|
+
let label = ValueLabel::from_u32(*local_index);
|
174
|
+
builder.set_val_label(val, label);
|
175
|
+
}
|
176
|
+
/********************************** Globals ****************************************
|
177
|
+
* `get_global` and `set_global` are handled by the environment.
|
178
|
+
***********************************************************************************/
|
179
|
+
Operator::GlobalGet { global_index } => {
|
180
|
+
let val = match state.get_global(builder.func, *global_index, environ)? {
|
181
|
+
GlobalVariable::Const(val) => val,
|
182
|
+
GlobalVariable::Memory { gv, offset, ty } => {
|
183
|
+
let addr = builder.ins().global_value(environ.pointer_type(), gv);
|
184
|
+
let mut flags = ir::MemFlags::trusted();
|
185
|
+
// Put globals in the "table" abstract heap category as well.
|
186
|
+
flags.set_table();
|
187
|
+
builder.ins().load(ty, flags, addr, offset)
|
188
|
+
}
|
189
|
+
GlobalVariable::Custom => environ.translate_custom_global_get(
|
190
|
+
builder.cursor(),
|
191
|
+
GlobalIndex::from_u32(*global_index),
|
192
|
+
)?,
|
193
|
+
};
|
194
|
+
state.push1(val);
|
195
|
+
}
|
196
|
+
Operator::GlobalSet { global_index } => {
|
197
|
+
match state.get_global(builder.func, *global_index, environ)? {
|
198
|
+
GlobalVariable::Const(_) => panic!("global #{} is a constant", *global_index),
|
199
|
+
GlobalVariable::Memory { gv, offset, ty } => {
|
200
|
+
let addr = builder.ins().global_value(environ.pointer_type(), gv);
|
201
|
+
let mut flags = ir::MemFlags::trusted();
|
202
|
+
// Put globals in the "table" abstract heap category as well.
|
203
|
+
flags.set_table();
|
204
|
+
let mut val = state.pop1();
|
205
|
+
// Ensure SIMD values are cast to their default Cranelift type, I8x16.
|
206
|
+
if ty.is_vector() {
|
207
|
+
val = optionally_bitcast_vector(val, I8X16, builder);
|
208
|
+
}
|
209
|
+
debug_assert_eq!(ty, builder.func.dfg.value_type(val));
|
210
|
+
builder.ins().store(flags, val, addr, offset);
|
211
|
+
}
|
212
|
+
GlobalVariable::Custom => {
|
213
|
+
let val = state.pop1();
|
214
|
+
environ.translate_custom_global_set(
|
215
|
+
builder.cursor(),
|
216
|
+
GlobalIndex::from_u32(*global_index),
|
217
|
+
val,
|
218
|
+
)?;
|
219
|
+
}
|
220
|
+
}
|
221
|
+
}
|
222
|
+
/********************************* Stack misc ***************************************
|
223
|
+
* `drop`, `nop`, `unreachable` and `select`.
|
224
|
+
***********************************************************************************/
|
225
|
+
Operator::Drop => {
|
226
|
+
state.pop1();
|
227
|
+
}
|
228
|
+
Operator::Select => {
|
229
|
+
let (mut arg1, mut arg2, cond) = state.pop3();
|
230
|
+
if builder.func.dfg.value_type(arg1).is_vector() {
|
231
|
+
arg1 = optionally_bitcast_vector(arg1, I8X16, builder);
|
232
|
+
}
|
233
|
+
if builder.func.dfg.value_type(arg2).is_vector() {
|
234
|
+
arg2 = optionally_bitcast_vector(arg2, I8X16, builder);
|
235
|
+
}
|
236
|
+
state.push1(builder.ins().select(cond, arg1, arg2));
|
237
|
+
}
|
238
|
+
Operator::TypedSelect { ty: _ } => {
|
239
|
+
// We ignore the explicit type parameter as it is only needed for
|
240
|
+
// validation, which we require to have been performed before
|
241
|
+
// translation.
|
242
|
+
let (mut arg1, mut arg2, cond) = state.pop3();
|
243
|
+
if builder.func.dfg.value_type(arg1).is_vector() {
|
244
|
+
arg1 = optionally_bitcast_vector(arg1, I8X16, builder);
|
245
|
+
}
|
246
|
+
if builder.func.dfg.value_type(arg2).is_vector() {
|
247
|
+
arg2 = optionally_bitcast_vector(arg2, I8X16, builder);
|
248
|
+
}
|
249
|
+
state.push1(builder.ins().select(cond, arg1, arg2));
|
250
|
+
}
|
251
|
+
Operator::Nop => {
|
252
|
+
// We do nothing
|
253
|
+
}
|
254
|
+
Operator::Unreachable => {
|
255
|
+
builder.ins().trap(ir::TrapCode::UnreachableCodeReached);
|
256
|
+
state.reachable = false;
|
257
|
+
}
|
258
|
+
/***************************** Control flow blocks **********************************
|
259
|
+
* When starting a control flow block, we create a new `Block` that will hold the code
|
260
|
+
* after the block, and we push a frame on the control stack. Depending on the type
|
261
|
+
* of block, we create a new `Block` for the body of the block with an associated
|
262
|
+
* jump instruction.
|
263
|
+
*
|
264
|
+
* The `End` instruction pops the last control frame from the control stack, seals
|
265
|
+
* the destination block (since `br` instructions targeting it only appear inside the
|
266
|
+
* block and have already been translated) and modify the value stack to use the
|
267
|
+
* possible `Block`'s arguments values.
|
268
|
+
***********************************************************************************/
|
269
|
+
Operator::Block { blockty } => {
|
270
|
+
let (params, results) = blocktype_params_results(validator, *blockty)?;
|
271
|
+
let next = block_with_params(builder, results.clone(), environ)?;
|
272
|
+
state.push_block(next, params.len(), results.len());
|
273
|
+
}
|
274
|
+
Operator::Loop { blockty } => {
|
275
|
+
let (params, results) = blocktype_params_results(validator, *blockty)?;
|
276
|
+
let loop_body = block_with_params(builder, params.clone(), environ)?;
|
277
|
+
let next = block_with_params(builder, results.clone(), environ)?;
|
278
|
+
canonicalise_then_jump(builder, loop_body, state.peekn(params.len()));
|
279
|
+
state.push_loop(loop_body, next, params.len(), results.len());
|
280
|
+
|
281
|
+
// Pop the initial `Block` actuals and replace them with the `Block`'s
|
282
|
+
// params since control flow joins at the top of the loop.
|
283
|
+
state.popn(params.len());
|
284
|
+
state
|
285
|
+
.stack
|
286
|
+
.extend_from_slice(builder.block_params(loop_body));
|
287
|
+
|
288
|
+
builder.switch_to_block(loop_body);
|
289
|
+
environ.translate_loop_header(builder)?;
|
290
|
+
}
|
291
|
+
Operator::If { blockty } => {
|
292
|
+
let val = state.pop1();
|
293
|
+
|
294
|
+
let next_block = builder.create_block();
|
295
|
+
let (params, results) = blocktype_params_results(validator, *blockty)?;
|
296
|
+
let (destination, else_data) = if params.clone().eq(results.clone()) {
|
297
|
+
// It is possible there is no `else` block, so we will only
|
298
|
+
// allocate a block for it if/when we find the `else`. For now,
|
299
|
+
// we if the condition isn't true, then we jump directly to the
|
300
|
+
// destination block following the whole `if...end`. If we do end
|
301
|
+
// up discovering an `else`, then we will allocate a block for it
|
302
|
+
// and go back and patch the jump.
|
303
|
+
let destination = block_with_params(builder, results.clone(), environ)?;
|
304
|
+
let branch_inst = canonicalise_brif(
|
305
|
+
builder,
|
306
|
+
val,
|
307
|
+
next_block,
|
308
|
+
&[],
|
309
|
+
destination,
|
310
|
+
state.peekn(params.len()),
|
311
|
+
);
|
312
|
+
(
|
313
|
+
destination,
|
314
|
+
ElseData::NoElse {
|
315
|
+
branch_inst,
|
316
|
+
placeholder: destination,
|
317
|
+
},
|
318
|
+
)
|
319
|
+
} else {
|
320
|
+
// The `if` type signature is not valid without an `else` block,
|
321
|
+
// so we eagerly allocate the `else` block here.
|
322
|
+
let destination = block_with_params(builder, results.clone(), environ)?;
|
323
|
+
let else_block = block_with_params(builder, params.clone(), environ)?;
|
324
|
+
canonicalise_brif(
|
325
|
+
builder,
|
326
|
+
val,
|
327
|
+
next_block,
|
328
|
+
&[],
|
329
|
+
else_block,
|
330
|
+
state.peekn(params.len()),
|
331
|
+
);
|
332
|
+
builder.seal_block(else_block);
|
333
|
+
(destination, ElseData::WithElse { else_block })
|
334
|
+
};
|
335
|
+
|
336
|
+
builder.seal_block(next_block); // Only predecessor is the current block.
|
337
|
+
builder.switch_to_block(next_block);
|
338
|
+
|
339
|
+
// Here we append an argument to a Block targeted by an argumentless jump instruction
|
340
|
+
// But in fact there are two cases:
|
341
|
+
// - either the If does not have a Else clause, in that case ty = EmptyBlock
|
342
|
+
// and we add nothing;
|
343
|
+
// - either the If have an Else clause, in that case the destination of this jump
|
344
|
+
// instruction will be changed later when we translate the Else operator.
|
345
|
+
state.push_if(
|
346
|
+
destination,
|
347
|
+
else_data,
|
348
|
+
params.len(),
|
349
|
+
results.len(),
|
350
|
+
*blockty,
|
351
|
+
);
|
352
|
+
}
|
353
|
+
Operator::Else => {
|
354
|
+
let i = state.control_stack.len() - 1;
|
355
|
+
match state.control_stack[i] {
|
356
|
+
ControlStackFrame::If {
|
357
|
+
ref else_data,
|
358
|
+
head_is_reachable,
|
359
|
+
ref mut consequent_ends_reachable,
|
360
|
+
num_return_values,
|
361
|
+
blocktype,
|
362
|
+
destination,
|
363
|
+
..
|
364
|
+
} => {
|
365
|
+
// We finished the consequent, so record its final
|
366
|
+
// reachability state.
|
367
|
+
debug_assert!(consequent_ends_reachable.is_none());
|
368
|
+
*consequent_ends_reachable = Some(state.reachable);
|
369
|
+
|
370
|
+
if head_is_reachable {
|
371
|
+
// We have a branch from the head of the `if` to the `else`.
|
372
|
+
state.reachable = true;
|
373
|
+
|
374
|
+
// Ensure we have a block for the `else` block (it may have
|
375
|
+
// already been pre-allocated, see `ElseData` for details).
|
376
|
+
let else_block = match *else_data {
|
377
|
+
ElseData::NoElse {
|
378
|
+
branch_inst,
|
379
|
+
placeholder,
|
380
|
+
} => {
|
381
|
+
let (params, _results) =
|
382
|
+
blocktype_params_results(validator, blocktype)?;
|
383
|
+
debug_assert_eq!(params.len(), num_return_values);
|
384
|
+
let else_block =
|
385
|
+
block_with_params(builder, params.clone(), environ)?;
|
386
|
+
canonicalise_then_jump(
|
387
|
+
builder,
|
388
|
+
destination,
|
389
|
+
state.peekn(params.len()),
|
390
|
+
);
|
391
|
+
state.popn(params.len());
|
392
|
+
|
393
|
+
builder.change_jump_destination(
|
394
|
+
branch_inst,
|
395
|
+
placeholder,
|
396
|
+
else_block,
|
397
|
+
);
|
398
|
+
builder.seal_block(else_block);
|
399
|
+
else_block
|
400
|
+
}
|
401
|
+
ElseData::WithElse { else_block } => {
|
402
|
+
canonicalise_then_jump(
|
403
|
+
builder,
|
404
|
+
destination,
|
405
|
+
state.peekn(num_return_values),
|
406
|
+
);
|
407
|
+
state.popn(num_return_values);
|
408
|
+
else_block
|
409
|
+
}
|
410
|
+
};
|
411
|
+
|
412
|
+
// You might be expecting that we push the parameters for this
|
413
|
+
// `else` block here, something like this:
|
414
|
+
//
|
415
|
+
// state.pushn(&control_stack_frame.params);
|
416
|
+
//
|
417
|
+
// We don't do that because they are already on the top of the stack
|
418
|
+
// for us: we pushed the parameters twice when we saw the initial
|
419
|
+
// `if` so that we wouldn't have to save the parameters in the
|
420
|
+
// `ControlStackFrame` as another `Vec` allocation.
|
421
|
+
|
422
|
+
builder.switch_to_block(else_block);
|
423
|
+
|
424
|
+
// We don't bother updating the control frame's `ElseData`
|
425
|
+
// to `WithElse` because nothing else will read it.
|
426
|
+
}
|
427
|
+
}
|
428
|
+
_ => unreachable!(),
|
429
|
+
}
|
430
|
+
}
|
431
|
+
Operator::End => {
|
432
|
+
let frame = state.control_stack.pop().unwrap();
|
433
|
+
let next_block = frame.following_code();
|
434
|
+
let return_count = frame.num_return_values();
|
435
|
+
let return_args = state.peekn_mut(return_count);
|
436
|
+
|
437
|
+
canonicalise_then_jump(builder, next_block, return_args);
|
438
|
+
// You might expect that if we just finished an `if` block that
|
439
|
+
// didn't have a corresponding `else` block, then we would clean
|
440
|
+
// up our duplicate set of parameters that we pushed earlier
|
441
|
+
// right here. However, we don't have to explicitly do that,
|
442
|
+
// since we truncate the stack back to the original height
|
443
|
+
// below.
|
444
|
+
|
445
|
+
builder.switch_to_block(next_block);
|
446
|
+
builder.seal_block(next_block);
|
447
|
+
|
448
|
+
// If it is a loop we also have to seal the body loop block
|
449
|
+
if let ControlStackFrame::Loop { header, .. } = frame {
|
450
|
+
builder.seal_block(header)
|
451
|
+
}
|
452
|
+
|
453
|
+
frame.truncate_value_stack_to_original_size(&mut state.stack);
|
454
|
+
state
|
455
|
+
.stack
|
456
|
+
.extend_from_slice(builder.block_params(next_block));
|
457
|
+
}
|
458
|
+
/**************************** Branch instructions *********************************
|
459
|
+
* The branch instructions all have as arguments a target nesting level, which
|
460
|
+
* corresponds to how many control stack frames do we have to pop to get the
|
461
|
+
* destination `Block`.
|
462
|
+
*
|
463
|
+
* Once the destination `Block` is found, we sometimes have to declare a certain depth
|
464
|
+
* of the stack unreachable, because some branch instructions are terminator.
|
465
|
+
*
|
466
|
+
* The `br_table` case is much more complicated because Cranelift's `br_table` instruction
|
467
|
+
* does not support jump arguments like all the other branch instructions. That is why, in
|
468
|
+
* the case where we would use jump arguments for every other branch instruction, we
|
469
|
+
* need to split the critical edges leaving the `br_tables` by creating one `Block` per
|
470
|
+
* table destination; the `br_table` will point to these newly created `Blocks` and these
|
471
|
+
* `Block`s contain only a jump instruction pointing to the final destination, this time with
|
472
|
+
* jump arguments.
|
473
|
+
*
|
474
|
+
* This system is also implemented in Cranelift's SSA construction algorithm, because
|
475
|
+
* `use_var` located in a destination `Block` of a `br_table` might trigger the addition
|
476
|
+
* of jump arguments in each predecessor branch instruction, one of which might be a
|
477
|
+
* `br_table`.
|
478
|
+
***********************************************************************************/
|
479
|
+
Operator::Br { relative_depth } => {
|
480
|
+
let i = state.control_stack.len() - 1 - (*relative_depth as usize);
|
481
|
+
let (return_count, br_destination) = {
|
482
|
+
let frame = &mut state.control_stack[i];
|
483
|
+
// We signal that all the code that follows until the next End is unreachable
|
484
|
+
frame.set_branched_to_exit();
|
485
|
+
let return_count = if frame.is_loop() {
|
486
|
+
frame.num_param_values()
|
487
|
+
} else {
|
488
|
+
frame.num_return_values()
|
489
|
+
};
|
490
|
+
(return_count, frame.br_destination())
|
491
|
+
};
|
492
|
+
let destination_args = state.peekn_mut(return_count);
|
493
|
+
canonicalise_then_jump(builder, br_destination, destination_args);
|
494
|
+
state.popn(return_count);
|
495
|
+
state.reachable = false;
|
496
|
+
}
|
497
|
+
Operator::BrIf { relative_depth } => translate_br_if(*relative_depth, builder, state),
|
498
|
+
Operator::BrTable { targets } => {
|
499
|
+
let default = targets.default();
|
500
|
+
let mut min_depth = default;
|
501
|
+
for depth in targets.targets() {
|
502
|
+
let depth = depth?;
|
503
|
+
if depth < min_depth {
|
504
|
+
min_depth = depth;
|
505
|
+
}
|
506
|
+
}
|
507
|
+
let jump_args_count = {
|
508
|
+
let i = state.control_stack.len() - 1 - (min_depth as usize);
|
509
|
+
let min_depth_frame = &state.control_stack[i];
|
510
|
+
if min_depth_frame.is_loop() {
|
511
|
+
min_depth_frame.num_param_values()
|
512
|
+
} else {
|
513
|
+
min_depth_frame.num_return_values()
|
514
|
+
}
|
515
|
+
};
|
516
|
+
let val = state.pop1();
|
517
|
+
let mut data = Vec::with_capacity(targets.len() as usize);
|
518
|
+
if jump_args_count == 0 {
|
519
|
+
// No jump arguments
|
520
|
+
for depth in targets.targets() {
|
521
|
+
let depth = depth?;
|
522
|
+
let block = {
|
523
|
+
let i = state.control_stack.len() - 1 - (depth as usize);
|
524
|
+
let frame = &mut state.control_stack[i];
|
525
|
+
frame.set_branched_to_exit();
|
526
|
+
frame.br_destination()
|
527
|
+
};
|
528
|
+
data.push(builder.func.dfg.block_call(block, &[]));
|
529
|
+
}
|
530
|
+
let block = {
|
531
|
+
let i = state.control_stack.len() - 1 - (default as usize);
|
532
|
+
let frame = &mut state.control_stack[i];
|
533
|
+
frame.set_branched_to_exit();
|
534
|
+
frame.br_destination()
|
535
|
+
};
|
536
|
+
let block = builder.func.dfg.block_call(block, &[]);
|
537
|
+
let jt = builder.create_jump_table(JumpTableData::new(block, &data));
|
538
|
+
builder.ins().br_table(val, jt);
|
539
|
+
} else {
|
540
|
+
// Here we have jump arguments, but Cranelift's br_table doesn't support them
|
541
|
+
// We then proceed to split the edges going out of the br_table
|
542
|
+
let return_count = jump_args_count;
|
543
|
+
let mut dest_block_sequence = vec![];
|
544
|
+
let mut dest_block_map = HashMap::new();
|
545
|
+
for depth in targets.targets() {
|
546
|
+
let depth = depth?;
|
547
|
+
let branch_block = match dest_block_map.entry(depth as usize) {
|
548
|
+
hash_map::Entry::Occupied(entry) => *entry.get(),
|
549
|
+
hash_map::Entry::Vacant(entry) => {
|
550
|
+
let block = builder.create_block();
|
551
|
+
dest_block_sequence.push((depth as usize, block));
|
552
|
+
*entry.insert(block)
|
553
|
+
}
|
554
|
+
};
|
555
|
+
data.push(builder.func.dfg.block_call(branch_block, &[]));
|
556
|
+
}
|
557
|
+
let default_branch_block = match dest_block_map.entry(default as usize) {
|
558
|
+
hash_map::Entry::Occupied(entry) => *entry.get(),
|
559
|
+
hash_map::Entry::Vacant(entry) => {
|
560
|
+
let block = builder.create_block();
|
561
|
+
dest_block_sequence.push((default as usize, block));
|
562
|
+
*entry.insert(block)
|
563
|
+
}
|
564
|
+
};
|
565
|
+
let default_branch_block = builder.func.dfg.block_call(default_branch_block, &[]);
|
566
|
+
let jt = builder.create_jump_table(JumpTableData::new(default_branch_block, &data));
|
567
|
+
builder.ins().br_table(val, jt);
|
568
|
+
for (depth, dest_block) in dest_block_sequence {
|
569
|
+
builder.switch_to_block(dest_block);
|
570
|
+
builder.seal_block(dest_block);
|
571
|
+
let real_dest_block = {
|
572
|
+
let i = state.control_stack.len() - 1 - depth;
|
573
|
+
let frame = &mut state.control_stack[i];
|
574
|
+
frame.set_branched_to_exit();
|
575
|
+
frame.br_destination()
|
576
|
+
};
|
577
|
+
let destination_args = state.peekn_mut(return_count);
|
578
|
+
canonicalise_then_jump(builder, real_dest_block, destination_args);
|
579
|
+
}
|
580
|
+
state.popn(return_count);
|
581
|
+
}
|
582
|
+
state.reachable = false;
|
583
|
+
}
|
584
|
+
Operator::Return => {
|
585
|
+
let return_count = {
|
586
|
+
let frame = &mut state.control_stack[0];
|
587
|
+
frame.num_return_values()
|
588
|
+
};
|
589
|
+
{
|
590
|
+
let return_args = state.peekn_mut(return_count);
|
591
|
+
bitcast_wasm_returns(environ, return_args, builder);
|
592
|
+
builder.ins().return_(return_args);
|
593
|
+
}
|
594
|
+
state.popn(return_count);
|
595
|
+
state.reachable = false;
|
596
|
+
}
|
597
|
+
/********************************** Exception handing **********************************/
|
598
|
+
Operator::Try { .. }
|
599
|
+
| Operator::Catch { .. }
|
600
|
+
| Operator::Throw { .. }
|
601
|
+
| Operator::Rethrow { .. }
|
602
|
+
| Operator::Delegate { .. }
|
603
|
+
| Operator::CatchAll => {
|
604
|
+
return Err(wasm_unsupported!(
|
605
|
+
"proposed exception handling operator {:?}",
|
606
|
+
op
|
607
|
+
));
|
608
|
+
}
|
609
|
+
/************************************ Calls ****************************************
|
610
|
+
* The call instructions pop off their arguments from the stack and append their
|
611
|
+
* return values to it. `call_indirect` needs environment support because there is an
|
612
|
+
* argument referring to an index in the external functions table of the module.
|
613
|
+
************************************************************************************/
|
614
|
+
Operator::Call { function_index } => {
|
615
|
+
let (fref, num_args) = state.get_direct_func(builder.func, *function_index, environ)?;
|
616
|
+
|
617
|
+
// Bitcast any vector arguments to their default type, I8X16, before calling.
|
618
|
+
let args = state.peekn_mut(num_args);
|
619
|
+
bitcast_wasm_params(
|
620
|
+
environ,
|
621
|
+
builder.func.dfg.ext_funcs[fref].signature,
|
622
|
+
args,
|
623
|
+
builder,
|
624
|
+
);
|
625
|
+
|
626
|
+
let call = environ.translate_call(
|
627
|
+
builder.cursor(),
|
628
|
+
FuncIndex::from_u32(*function_index),
|
629
|
+
fref,
|
630
|
+
args,
|
631
|
+
)?;
|
632
|
+
let inst_results = builder.inst_results(call);
|
633
|
+
debug_assert_eq!(
|
634
|
+
inst_results.len(),
|
635
|
+
builder.func.dfg.signatures[builder.func.dfg.ext_funcs[fref].signature]
|
636
|
+
.returns
|
637
|
+
.len(),
|
638
|
+
"translate_call results should match the call signature"
|
639
|
+
);
|
640
|
+
state.popn(num_args);
|
641
|
+
state.pushn(inst_results);
|
642
|
+
}
|
643
|
+
Operator::CallIndirect {
|
644
|
+
type_index,
|
645
|
+
table_index,
|
646
|
+
table_byte: _,
|
647
|
+
} => {
|
648
|
+
// `type_index` is the index of the function's signature and
|
649
|
+
// `table_index` is the index of the table to search the function
|
650
|
+
// in.
|
651
|
+
let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
|
652
|
+
let table = state.get_or_create_table(builder.func, *table_index, environ)?;
|
653
|
+
let callee = state.pop1();
|
654
|
+
|
655
|
+
// Bitcast any vector arguments to their default type, I8X16, before calling.
|
656
|
+
let args = state.peekn_mut(num_args);
|
657
|
+
bitcast_wasm_params(environ, sigref, args, builder);
|
658
|
+
|
659
|
+
let call = environ.translate_call_indirect(
|
660
|
+
builder,
|
661
|
+
TableIndex::from_u32(*table_index),
|
662
|
+
table,
|
663
|
+
TypeIndex::from_u32(*type_index),
|
664
|
+
sigref,
|
665
|
+
callee,
|
666
|
+
state.peekn(num_args),
|
667
|
+
)?;
|
668
|
+
let inst_results = builder.inst_results(call);
|
669
|
+
debug_assert_eq!(
|
670
|
+
inst_results.len(),
|
671
|
+
builder.func.dfg.signatures[sigref].returns.len(),
|
672
|
+
"translate_call_indirect results should match the call signature"
|
673
|
+
);
|
674
|
+
state.popn(num_args);
|
675
|
+
state.pushn(inst_results);
|
676
|
+
}
|
677
|
+
/******************************* Memory management ***********************************
|
678
|
+
* Memory management is handled by environment. It is usually translated into calls to
|
679
|
+
* special functions.
|
680
|
+
************************************************************************************/
|
681
|
+
Operator::MemoryGrow { mem, mem_byte: _ } => {
|
682
|
+
// The WebAssembly MVP only supports one linear memory, but we expect the reserved
|
683
|
+
// argument to be a memory index.
|
684
|
+
let heap_index = MemoryIndex::from_u32(*mem);
|
685
|
+
let heap = state.get_heap(builder.func, *mem, environ)?;
|
686
|
+
let val = state.pop1();
|
687
|
+
state.push1(environ.translate_memory_grow(builder.cursor(), heap_index, heap, val)?)
|
688
|
+
}
|
689
|
+
Operator::MemorySize { mem, mem_byte: _ } => {
|
690
|
+
let heap_index = MemoryIndex::from_u32(*mem);
|
691
|
+
let heap = state.get_heap(builder.func, *mem, environ)?;
|
692
|
+
state.push1(environ.translate_memory_size(builder.cursor(), heap_index, heap)?);
|
693
|
+
}
|
694
|
+
/******************************* Load instructions ***********************************
|
695
|
+
* Wasm specifies an integer alignment flag but we drop it in Cranelift.
|
696
|
+
* The memory base address is provided by the environment.
|
697
|
+
************************************************************************************/
|
698
|
+
Operator::I32Load8U { memarg } => {
|
699
|
+
unwrap_or_return_unreachable_state!(
|
700
|
+
state,
|
701
|
+
translate_load(memarg, ir::Opcode::Uload8, I32, builder, state, environ)?
|
702
|
+
);
|
703
|
+
}
|
704
|
+
Operator::I32Load16U { memarg } => {
|
705
|
+
unwrap_or_return_unreachable_state!(
|
706
|
+
state,
|
707
|
+
translate_load(memarg, ir::Opcode::Uload16, I32, builder, state, environ)?
|
708
|
+
);
|
709
|
+
}
|
710
|
+
Operator::I32Load8S { memarg } => {
|
711
|
+
unwrap_or_return_unreachable_state!(
|
712
|
+
state,
|
713
|
+
translate_load(memarg, ir::Opcode::Sload8, I32, builder, state, environ)?
|
714
|
+
);
|
715
|
+
}
|
716
|
+
Operator::I32Load16S { memarg } => {
|
717
|
+
unwrap_or_return_unreachable_state!(
|
718
|
+
state,
|
719
|
+
translate_load(memarg, ir::Opcode::Sload16, I32, builder, state, environ)?
|
720
|
+
);
|
721
|
+
}
|
722
|
+
Operator::I64Load8U { memarg } => {
|
723
|
+
unwrap_or_return_unreachable_state!(
|
724
|
+
state,
|
725
|
+
translate_load(memarg, ir::Opcode::Uload8, I64, builder, state, environ)?
|
726
|
+
);
|
727
|
+
}
|
728
|
+
Operator::I64Load16U { memarg } => {
|
729
|
+
unwrap_or_return_unreachable_state!(
|
730
|
+
state,
|
731
|
+
translate_load(memarg, ir::Opcode::Uload16, I64, builder, state, environ)?
|
732
|
+
);
|
733
|
+
}
|
734
|
+
Operator::I64Load8S { memarg } => {
|
735
|
+
unwrap_or_return_unreachable_state!(
|
736
|
+
state,
|
737
|
+
translate_load(memarg, ir::Opcode::Sload8, I64, builder, state, environ)?
|
738
|
+
);
|
739
|
+
}
|
740
|
+
Operator::I64Load16S { memarg } => {
|
741
|
+
unwrap_or_return_unreachable_state!(
|
742
|
+
state,
|
743
|
+
translate_load(memarg, ir::Opcode::Sload16, I64, builder, state, environ)?
|
744
|
+
);
|
745
|
+
}
|
746
|
+
Operator::I64Load32S { memarg } => {
|
747
|
+
unwrap_or_return_unreachable_state!(
|
748
|
+
state,
|
749
|
+
translate_load(memarg, ir::Opcode::Sload32, I64, builder, state, environ)?
|
750
|
+
);
|
751
|
+
}
|
752
|
+
Operator::I64Load32U { memarg } => {
|
753
|
+
unwrap_or_return_unreachable_state!(
|
754
|
+
state,
|
755
|
+
translate_load(memarg, ir::Opcode::Uload32, I64, builder, state, environ)?
|
756
|
+
);
|
757
|
+
}
|
758
|
+
Operator::I32Load { memarg } => {
|
759
|
+
unwrap_or_return_unreachable_state!(
|
760
|
+
state,
|
761
|
+
translate_load(memarg, ir::Opcode::Load, I32, builder, state, environ)?
|
762
|
+
);
|
763
|
+
}
|
764
|
+
Operator::F32Load { memarg } => {
|
765
|
+
unwrap_or_return_unreachable_state!(
|
766
|
+
state,
|
767
|
+
translate_load(memarg, ir::Opcode::Load, F32, builder, state, environ)?
|
768
|
+
);
|
769
|
+
}
|
770
|
+
Operator::I64Load { memarg } => {
|
771
|
+
unwrap_or_return_unreachable_state!(
|
772
|
+
state,
|
773
|
+
translate_load(memarg, ir::Opcode::Load, I64, builder, state, environ)?
|
774
|
+
);
|
775
|
+
}
|
776
|
+
Operator::F64Load { memarg } => {
|
777
|
+
unwrap_or_return_unreachable_state!(
|
778
|
+
state,
|
779
|
+
translate_load(memarg, ir::Opcode::Load, F64, builder, state, environ)?
|
780
|
+
);
|
781
|
+
}
|
782
|
+
Operator::V128Load { memarg } => {
|
783
|
+
unwrap_or_return_unreachable_state!(
|
784
|
+
state,
|
785
|
+
translate_load(memarg, ir::Opcode::Load, I8X16, builder, state, environ)?
|
786
|
+
);
|
787
|
+
}
|
788
|
+
Operator::V128Load8x8S { memarg } => {
|
789
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
790
|
+
state,
|
791
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
792
|
+
);
|
793
|
+
let loaded = builder.ins().sload8x8(flags, base, 0);
|
794
|
+
state.push1(loaded);
|
795
|
+
}
|
796
|
+
Operator::V128Load8x8U { memarg } => {
|
797
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
798
|
+
state,
|
799
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
800
|
+
);
|
801
|
+
let loaded = builder.ins().uload8x8(flags, base, 0);
|
802
|
+
state.push1(loaded);
|
803
|
+
}
|
804
|
+
Operator::V128Load16x4S { memarg } => {
|
805
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
806
|
+
state,
|
807
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
808
|
+
);
|
809
|
+
let loaded = builder.ins().sload16x4(flags, base, 0);
|
810
|
+
state.push1(loaded);
|
811
|
+
}
|
812
|
+
Operator::V128Load16x4U { memarg } => {
|
813
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
814
|
+
state,
|
815
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
816
|
+
);
|
817
|
+
let loaded = builder.ins().uload16x4(flags, base, 0);
|
818
|
+
state.push1(loaded);
|
819
|
+
}
|
820
|
+
Operator::V128Load32x2S { memarg } => {
|
821
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
822
|
+
state,
|
823
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
824
|
+
);
|
825
|
+
let loaded = builder.ins().sload32x2(flags, base, 0);
|
826
|
+
state.push1(loaded);
|
827
|
+
}
|
828
|
+
Operator::V128Load32x2U { memarg } => {
|
829
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
830
|
+
state,
|
831
|
+
prepare_addr(memarg, 8, builder, state, environ)?
|
832
|
+
);
|
833
|
+
let loaded = builder.ins().uload32x2(flags, base, 0);
|
834
|
+
state.push1(loaded);
|
835
|
+
}
|
836
|
+
/****************************** Store instructions ***********************************
|
837
|
+
* Wasm specifies an integer alignment flag but we drop it in Cranelift.
|
838
|
+
* The memory base address is provided by the environment.
|
839
|
+
************************************************************************************/
|
840
|
+
Operator::I32Store { memarg }
|
841
|
+
| Operator::I64Store { memarg }
|
842
|
+
| Operator::F32Store { memarg }
|
843
|
+
| Operator::F64Store { memarg } => {
|
844
|
+
translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
|
845
|
+
}
|
846
|
+
Operator::I32Store8 { memarg } | Operator::I64Store8 { memarg } => {
|
847
|
+
translate_store(memarg, ir::Opcode::Istore8, builder, state, environ)?;
|
848
|
+
}
|
849
|
+
Operator::I32Store16 { memarg } | Operator::I64Store16 { memarg } => {
|
850
|
+
translate_store(memarg, ir::Opcode::Istore16, builder, state, environ)?;
|
851
|
+
}
|
852
|
+
Operator::I64Store32 { memarg } => {
|
853
|
+
translate_store(memarg, ir::Opcode::Istore32, builder, state, environ)?;
|
854
|
+
}
|
855
|
+
Operator::V128Store { memarg } => {
|
856
|
+
translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
|
857
|
+
}
|
858
|
+
/****************************** Nullary Operators ************************************/
|
859
|
+
Operator::I32Const { value } => state.push1(builder.ins().iconst(I32, i64::from(*value))),
|
860
|
+
Operator::I64Const { value } => state.push1(builder.ins().iconst(I64, *value)),
|
861
|
+
Operator::F32Const { value } => {
|
862
|
+
state.push1(builder.ins().f32const(f32_translation(*value)));
|
863
|
+
}
|
864
|
+
Operator::F64Const { value } => {
|
865
|
+
state.push1(builder.ins().f64const(f64_translation(*value)));
|
866
|
+
}
|
867
|
+
/******************************* Unary Operators *************************************/
|
868
|
+
Operator::I32Clz | Operator::I64Clz => {
|
869
|
+
let arg = state.pop1();
|
870
|
+
state.push1(builder.ins().clz(arg));
|
871
|
+
}
|
872
|
+
Operator::I32Ctz | Operator::I64Ctz => {
|
873
|
+
let arg = state.pop1();
|
874
|
+
state.push1(builder.ins().ctz(arg));
|
875
|
+
}
|
876
|
+
Operator::I32Popcnt | Operator::I64Popcnt => {
|
877
|
+
let arg = state.pop1();
|
878
|
+
state.push1(builder.ins().popcnt(arg));
|
879
|
+
}
|
880
|
+
Operator::I64ExtendI32S => {
|
881
|
+
let val = state.pop1();
|
882
|
+
state.push1(builder.ins().sextend(I64, val));
|
883
|
+
}
|
884
|
+
Operator::I64ExtendI32U => {
|
885
|
+
let val = state.pop1();
|
886
|
+
state.push1(builder.ins().uextend(I64, val));
|
887
|
+
}
|
888
|
+
Operator::I32WrapI64 => {
|
889
|
+
let val = state.pop1();
|
890
|
+
state.push1(builder.ins().ireduce(I32, val));
|
891
|
+
}
|
892
|
+
Operator::F32Sqrt | Operator::F64Sqrt => {
|
893
|
+
let arg = state.pop1();
|
894
|
+
state.push1(builder.ins().sqrt(arg));
|
895
|
+
}
|
896
|
+
Operator::F32Ceil | Operator::F64Ceil => {
|
897
|
+
let arg = state.pop1();
|
898
|
+
state.push1(builder.ins().ceil(arg));
|
899
|
+
}
|
900
|
+
Operator::F32Floor | Operator::F64Floor => {
|
901
|
+
let arg = state.pop1();
|
902
|
+
state.push1(builder.ins().floor(arg));
|
903
|
+
}
|
904
|
+
Operator::F32Trunc | Operator::F64Trunc => {
|
905
|
+
let arg = state.pop1();
|
906
|
+
state.push1(builder.ins().trunc(arg));
|
907
|
+
}
|
908
|
+
Operator::F32Nearest | Operator::F64Nearest => {
|
909
|
+
let arg = state.pop1();
|
910
|
+
state.push1(builder.ins().nearest(arg));
|
911
|
+
}
|
912
|
+
Operator::F32Abs | Operator::F64Abs => {
|
913
|
+
let val = state.pop1();
|
914
|
+
state.push1(builder.ins().fabs(val));
|
915
|
+
}
|
916
|
+
Operator::F32Neg | Operator::F64Neg => {
|
917
|
+
let arg = state.pop1();
|
918
|
+
state.push1(builder.ins().fneg(arg));
|
919
|
+
}
|
920
|
+
Operator::F64ConvertI64U | Operator::F64ConvertI32U => {
|
921
|
+
let val = state.pop1();
|
922
|
+
state.push1(builder.ins().fcvt_from_uint(F64, val));
|
923
|
+
}
|
924
|
+
Operator::F64ConvertI64S | Operator::F64ConvertI32S => {
|
925
|
+
let val = state.pop1();
|
926
|
+
state.push1(builder.ins().fcvt_from_sint(F64, val));
|
927
|
+
}
|
928
|
+
Operator::F32ConvertI64S | Operator::F32ConvertI32S => {
|
929
|
+
let val = state.pop1();
|
930
|
+
state.push1(builder.ins().fcvt_from_sint(F32, val));
|
931
|
+
}
|
932
|
+
Operator::F32ConvertI64U | Operator::F32ConvertI32U => {
|
933
|
+
let val = state.pop1();
|
934
|
+
state.push1(builder.ins().fcvt_from_uint(F32, val));
|
935
|
+
}
|
936
|
+
Operator::F64PromoteF32 => {
|
937
|
+
let val = state.pop1();
|
938
|
+
state.push1(builder.ins().fpromote(F64, val));
|
939
|
+
}
|
940
|
+
Operator::F32DemoteF64 => {
|
941
|
+
let val = state.pop1();
|
942
|
+
state.push1(builder.ins().fdemote(F32, val));
|
943
|
+
}
|
944
|
+
Operator::I64TruncF64S | Operator::I64TruncF32S => {
|
945
|
+
let val = state.pop1();
|
946
|
+
state.push1(builder.ins().fcvt_to_sint(I64, val));
|
947
|
+
}
|
948
|
+
Operator::I32TruncF64S | Operator::I32TruncF32S => {
|
949
|
+
let val = state.pop1();
|
950
|
+
state.push1(builder.ins().fcvt_to_sint(I32, val));
|
951
|
+
}
|
952
|
+
Operator::I64TruncF64U | Operator::I64TruncF32U => {
|
953
|
+
let val = state.pop1();
|
954
|
+
state.push1(builder.ins().fcvt_to_uint(I64, val));
|
955
|
+
}
|
956
|
+
Operator::I32TruncF64U | Operator::I32TruncF32U => {
|
957
|
+
let val = state.pop1();
|
958
|
+
state.push1(builder.ins().fcvt_to_uint(I32, val));
|
959
|
+
}
|
960
|
+
Operator::I64TruncSatF64S | Operator::I64TruncSatF32S => {
|
961
|
+
let val = state.pop1();
|
962
|
+
state.push1(builder.ins().fcvt_to_sint_sat(I64, val));
|
963
|
+
}
|
964
|
+
Operator::I32TruncSatF64S | Operator::I32TruncSatF32S => {
|
965
|
+
let val = state.pop1();
|
966
|
+
state.push1(builder.ins().fcvt_to_sint_sat(I32, val));
|
967
|
+
}
|
968
|
+
Operator::I64TruncSatF64U | Operator::I64TruncSatF32U => {
|
969
|
+
let val = state.pop1();
|
970
|
+
state.push1(builder.ins().fcvt_to_uint_sat(I64, val));
|
971
|
+
}
|
972
|
+
Operator::I32TruncSatF64U | Operator::I32TruncSatF32U => {
|
973
|
+
let val = state.pop1();
|
974
|
+
state.push1(builder.ins().fcvt_to_uint_sat(I32, val));
|
975
|
+
}
|
976
|
+
Operator::F32ReinterpretI32 => {
|
977
|
+
let val = state.pop1();
|
978
|
+
state.push1(builder.ins().bitcast(F32, MemFlags::new(), val));
|
979
|
+
}
|
980
|
+
Operator::F64ReinterpretI64 => {
|
981
|
+
let val = state.pop1();
|
982
|
+
state.push1(builder.ins().bitcast(F64, MemFlags::new(), val));
|
983
|
+
}
|
984
|
+
Operator::I32ReinterpretF32 => {
|
985
|
+
let val = state.pop1();
|
986
|
+
state.push1(builder.ins().bitcast(I32, MemFlags::new(), val));
|
987
|
+
}
|
988
|
+
Operator::I64ReinterpretF64 => {
|
989
|
+
let val = state.pop1();
|
990
|
+
state.push1(builder.ins().bitcast(I64, MemFlags::new(), val));
|
991
|
+
}
|
992
|
+
Operator::I32Extend8S => {
|
993
|
+
let val = state.pop1();
|
994
|
+
state.push1(builder.ins().ireduce(I8, val));
|
995
|
+
let val = state.pop1();
|
996
|
+
state.push1(builder.ins().sextend(I32, val));
|
997
|
+
}
|
998
|
+
Operator::I32Extend16S => {
|
999
|
+
let val = state.pop1();
|
1000
|
+
state.push1(builder.ins().ireduce(I16, val));
|
1001
|
+
let val = state.pop1();
|
1002
|
+
state.push1(builder.ins().sextend(I32, val));
|
1003
|
+
}
|
1004
|
+
Operator::I64Extend8S => {
|
1005
|
+
let val = state.pop1();
|
1006
|
+
state.push1(builder.ins().ireduce(I8, val));
|
1007
|
+
let val = state.pop1();
|
1008
|
+
state.push1(builder.ins().sextend(I64, val));
|
1009
|
+
}
|
1010
|
+
Operator::I64Extend16S => {
|
1011
|
+
let val = state.pop1();
|
1012
|
+
state.push1(builder.ins().ireduce(I16, val));
|
1013
|
+
let val = state.pop1();
|
1014
|
+
state.push1(builder.ins().sextend(I64, val));
|
1015
|
+
}
|
1016
|
+
Operator::I64Extend32S => {
|
1017
|
+
let val = state.pop1();
|
1018
|
+
state.push1(builder.ins().ireduce(I32, val));
|
1019
|
+
let val = state.pop1();
|
1020
|
+
state.push1(builder.ins().sextend(I64, val));
|
1021
|
+
}
|
1022
|
+
/****************************** Binary Operators ************************************/
|
1023
|
+
Operator::I32Add | Operator::I64Add => {
|
1024
|
+
let (arg1, arg2) = state.pop2();
|
1025
|
+
state.push1(builder.ins().iadd(arg1, arg2));
|
1026
|
+
}
|
1027
|
+
Operator::I32And | Operator::I64And => {
|
1028
|
+
let (arg1, arg2) = state.pop2();
|
1029
|
+
state.push1(builder.ins().band(arg1, arg2));
|
1030
|
+
}
|
1031
|
+
Operator::I32Or | Operator::I64Or => {
|
1032
|
+
let (arg1, arg2) = state.pop2();
|
1033
|
+
state.push1(builder.ins().bor(arg1, arg2));
|
1034
|
+
}
|
1035
|
+
Operator::I32Xor | Operator::I64Xor => {
|
1036
|
+
let (arg1, arg2) = state.pop2();
|
1037
|
+
state.push1(builder.ins().bxor(arg1, arg2));
|
1038
|
+
}
|
1039
|
+
Operator::I32Shl | Operator::I64Shl => {
|
1040
|
+
let (arg1, arg2) = state.pop2();
|
1041
|
+
state.push1(builder.ins().ishl(arg1, arg2));
|
1042
|
+
}
|
1043
|
+
Operator::I32ShrS | Operator::I64ShrS => {
|
1044
|
+
let (arg1, arg2) = state.pop2();
|
1045
|
+
state.push1(builder.ins().sshr(arg1, arg2));
|
1046
|
+
}
|
1047
|
+
Operator::I32ShrU | Operator::I64ShrU => {
|
1048
|
+
let (arg1, arg2) = state.pop2();
|
1049
|
+
state.push1(builder.ins().ushr(arg1, arg2));
|
1050
|
+
}
|
1051
|
+
Operator::I32Rotl | Operator::I64Rotl => {
|
1052
|
+
let (arg1, arg2) = state.pop2();
|
1053
|
+
state.push1(builder.ins().rotl(arg1, arg2));
|
1054
|
+
}
|
1055
|
+
Operator::I32Rotr | Operator::I64Rotr => {
|
1056
|
+
let (arg1, arg2) = state.pop2();
|
1057
|
+
state.push1(builder.ins().rotr(arg1, arg2));
|
1058
|
+
}
|
1059
|
+
Operator::F32Add | Operator::F64Add => {
|
1060
|
+
let (arg1, arg2) = state.pop2();
|
1061
|
+
state.push1(builder.ins().fadd(arg1, arg2));
|
1062
|
+
}
|
1063
|
+
Operator::I32Sub | Operator::I64Sub => {
|
1064
|
+
let (arg1, arg2) = state.pop2();
|
1065
|
+
state.push1(builder.ins().isub(arg1, arg2));
|
1066
|
+
}
|
1067
|
+
Operator::F32Sub | Operator::F64Sub => {
|
1068
|
+
let (arg1, arg2) = state.pop2();
|
1069
|
+
state.push1(builder.ins().fsub(arg1, arg2));
|
1070
|
+
}
|
1071
|
+
Operator::I32Mul | Operator::I64Mul => {
|
1072
|
+
let (arg1, arg2) = state.pop2();
|
1073
|
+
state.push1(builder.ins().imul(arg1, arg2));
|
1074
|
+
}
|
1075
|
+
Operator::F32Mul | Operator::F64Mul => {
|
1076
|
+
let (arg1, arg2) = state.pop2();
|
1077
|
+
state.push1(builder.ins().fmul(arg1, arg2));
|
1078
|
+
}
|
1079
|
+
Operator::F32Div | Operator::F64Div => {
|
1080
|
+
let (arg1, arg2) = state.pop2();
|
1081
|
+
state.push1(builder.ins().fdiv(arg1, arg2));
|
1082
|
+
}
|
1083
|
+
Operator::I32DivS | Operator::I64DivS => {
|
1084
|
+
let (arg1, arg2) = state.pop2();
|
1085
|
+
state.push1(builder.ins().sdiv(arg1, arg2));
|
1086
|
+
}
|
1087
|
+
Operator::I32DivU | Operator::I64DivU => {
|
1088
|
+
let (arg1, arg2) = state.pop2();
|
1089
|
+
state.push1(builder.ins().udiv(arg1, arg2));
|
1090
|
+
}
|
1091
|
+
Operator::I32RemS | Operator::I64RemS => {
|
1092
|
+
let (arg1, arg2) = state.pop2();
|
1093
|
+
state.push1(builder.ins().srem(arg1, arg2));
|
1094
|
+
}
|
1095
|
+
Operator::I32RemU | Operator::I64RemU => {
|
1096
|
+
let (arg1, arg2) = state.pop2();
|
1097
|
+
state.push1(builder.ins().urem(arg1, arg2));
|
1098
|
+
}
|
1099
|
+
Operator::F32Min | Operator::F64Min => {
|
1100
|
+
let (arg1, arg2) = state.pop2();
|
1101
|
+
state.push1(builder.ins().fmin(arg1, arg2));
|
1102
|
+
}
|
1103
|
+
Operator::F32Max | Operator::F64Max => {
|
1104
|
+
let (arg1, arg2) = state.pop2();
|
1105
|
+
state.push1(builder.ins().fmax(arg1, arg2));
|
1106
|
+
}
|
1107
|
+
Operator::F32Copysign | Operator::F64Copysign => {
|
1108
|
+
let (arg1, arg2) = state.pop2();
|
1109
|
+
state.push1(builder.ins().fcopysign(arg1, arg2));
|
1110
|
+
}
|
1111
|
+
/**************************** Comparison Operators **********************************/
|
1112
|
+
Operator::I32LtS | Operator::I64LtS => {
|
1113
|
+
translate_icmp(IntCC::SignedLessThan, builder, state)
|
1114
|
+
}
|
1115
|
+
Operator::I32LtU | Operator::I64LtU => {
|
1116
|
+
translate_icmp(IntCC::UnsignedLessThan, builder, state)
|
1117
|
+
}
|
1118
|
+
Operator::I32LeS | Operator::I64LeS => {
|
1119
|
+
translate_icmp(IntCC::SignedLessThanOrEqual, builder, state)
|
1120
|
+
}
|
1121
|
+
Operator::I32LeU | Operator::I64LeU => {
|
1122
|
+
translate_icmp(IntCC::UnsignedLessThanOrEqual, builder, state)
|
1123
|
+
}
|
1124
|
+
Operator::I32GtS | Operator::I64GtS => {
|
1125
|
+
translate_icmp(IntCC::SignedGreaterThan, builder, state)
|
1126
|
+
}
|
1127
|
+
Operator::I32GtU | Operator::I64GtU => {
|
1128
|
+
translate_icmp(IntCC::UnsignedGreaterThan, builder, state)
|
1129
|
+
}
|
1130
|
+
Operator::I32GeS | Operator::I64GeS => {
|
1131
|
+
translate_icmp(IntCC::SignedGreaterThanOrEqual, builder, state)
|
1132
|
+
}
|
1133
|
+
Operator::I32GeU | Operator::I64GeU => {
|
1134
|
+
translate_icmp(IntCC::UnsignedGreaterThanOrEqual, builder, state)
|
1135
|
+
}
|
1136
|
+
Operator::I32Eqz | Operator::I64Eqz => {
|
1137
|
+
let arg = state.pop1();
|
1138
|
+
let val = builder.ins().icmp_imm(IntCC::Equal, arg, 0);
|
1139
|
+
state.push1(builder.ins().uextend(I32, val));
|
1140
|
+
}
|
1141
|
+
Operator::I32Eq | Operator::I64Eq => translate_icmp(IntCC::Equal, builder, state),
|
1142
|
+
Operator::F32Eq | Operator::F64Eq => translate_fcmp(FloatCC::Equal, builder, state),
|
1143
|
+
Operator::I32Ne | Operator::I64Ne => translate_icmp(IntCC::NotEqual, builder, state),
|
1144
|
+
Operator::F32Ne | Operator::F64Ne => translate_fcmp(FloatCC::NotEqual, builder, state),
|
1145
|
+
Operator::F32Gt | Operator::F64Gt => translate_fcmp(FloatCC::GreaterThan, builder, state),
|
1146
|
+
Operator::F32Ge | Operator::F64Ge => {
|
1147
|
+
translate_fcmp(FloatCC::GreaterThanOrEqual, builder, state)
|
1148
|
+
}
|
1149
|
+
Operator::F32Lt | Operator::F64Lt => translate_fcmp(FloatCC::LessThan, builder, state),
|
1150
|
+
Operator::F32Le | Operator::F64Le => {
|
1151
|
+
translate_fcmp(FloatCC::LessThanOrEqual, builder, state)
|
1152
|
+
}
|
1153
|
+
Operator::RefNull { hty } => {
|
1154
|
+
let hty = environ.convert_heap_type(*hty);
|
1155
|
+
state.push1(environ.translate_ref_null(builder.cursor(), hty)?)
|
1156
|
+
}
|
1157
|
+
Operator::RefIsNull => {
|
1158
|
+
let value = state.pop1();
|
1159
|
+
state.push1(environ.translate_ref_is_null(builder.cursor(), value)?);
|
1160
|
+
}
|
1161
|
+
Operator::RefFunc { function_index } => {
|
1162
|
+
let index = FuncIndex::from_u32(*function_index);
|
1163
|
+
state.push1(environ.translate_ref_func(builder.cursor(), index)?);
|
1164
|
+
}
|
1165
|
+
Operator::MemoryAtomicWait32 { memarg } | Operator::MemoryAtomicWait64 { memarg } => {
|
1166
|
+
// The WebAssembly MVP only supports one linear memory and
|
1167
|
+
// wasmparser will ensure that the memory indices specified are
|
1168
|
+
// zero.
|
1169
|
+
let implied_ty = match op {
|
1170
|
+
Operator::MemoryAtomicWait64 { .. } => I64,
|
1171
|
+
Operator::MemoryAtomicWait32 { .. } => I32,
|
1172
|
+
_ => unreachable!(),
|
1173
|
+
};
|
1174
|
+
let heap_index = MemoryIndex::from_u32(memarg.memory);
|
1175
|
+
let heap = state.get_heap(builder.func, memarg.memory, environ)?;
|
1176
|
+
let timeout = state.pop1(); // 64 (fixed)
|
1177
|
+
let expected = state.pop1(); // 32 or 64 (per the `Ixx` in `IxxAtomicWait`)
|
1178
|
+
assert!(builder.func.dfg.value_type(expected) == implied_ty);
|
1179
|
+
let addr = state.pop1();
|
1180
|
+
let effective_addr = if memarg.offset == 0 {
|
1181
|
+
addr
|
1182
|
+
} else {
|
1183
|
+
let index_type = environ.heaps()[heap].index_type;
|
1184
|
+
let offset = builder.ins().iconst(index_type, memarg.offset as i64);
|
1185
|
+
builder
|
1186
|
+
.ins()
|
1187
|
+
.uadd_overflow_trap(addr, offset, ir::TrapCode::HeapOutOfBounds)
|
1188
|
+
};
|
1189
|
+
// `fn translate_atomic_wait` can inspect the type of `expected` to figure out what
|
1190
|
+
// code it needs to generate, if it wants.
|
1191
|
+
let res = environ.translate_atomic_wait(
|
1192
|
+
builder.cursor(),
|
1193
|
+
heap_index,
|
1194
|
+
heap,
|
1195
|
+
effective_addr,
|
1196
|
+
expected,
|
1197
|
+
timeout,
|
1198
|
+
)?;
|
1199
|
+
state.push1(res);
|
1200
|
+
}
|
1201
|
+
Operator::MemoryAtomicNotify { memarg } => {
|
1202
|
+
let heap_index = MemoryIndex::from_u32(memarg.memory);
|
1203
|
+
let heap = state.get_heap(builder.func, memarg.memory, environ)?;
|
1204
|
+
let count = state.pop1(); // 32 (fixed)
|
1205
|
+
let addr = state.pop1();
|
1206
|
+
let effective_addr = if memarg.offset == 0 {
|
1207
|
+
addr
|
1208
|
+
} else {
|
1209
|
+
let index_type = environ.heaps()[heap].index_type;
|
1210
|
+
let offset = builder.ins().iconst(index_type, memarg.offset as i64);
|
1211
|
+
builder
|
1212
|
+
.ins()
|
1213
|
+
.uadd_overflow_trap(addr, offset, ir::TrapCode::HeapOutOfBounds)
|
1214
|
+
};
|
1215
|
+
let res = environ.translate_atomic_notify(
|
1216
|
+
builder.cursor(),
|
1217
|
+
heap_index,
|
1218
|
+
heap,
|
1219
|
+
effective_addr,
|
1220
|
+
count,
|
1221
|
+
)?;
|
1222
|
+
state.push1(res);
|
1223
|
+
}
|
1224
|
+
Operator::I32AtomicLoad { memarg } => {
|
1225
|
+
translate_atomic_load(I32, I32, memarg, builder, state, environ)?
|
1226
|
+
}
|
1227
|
+
Operator::I64AtomicLoad { memarg } => {
|
1228
|
+
translate_atomic_load(I64, I64, memarg, builder, state, environ)?
|
1229
|
+
}
|
1230
|
+
Operator::I32AtomicLoad8U { memarg } => {
|
1231
|
+
translate_atomic_load(I32, I8, memarg, builder, state, environ)?
|
1232
|
+
}
|
1233
|
+
Operator::I32AtomicLoad16U { memarg } => {
|
1234
|
+
translate_atomic_load(I32, I16, memarg, builder, state, environ)?
|
1235
|
+
}
|
1236
|
+
Operator::I64AtomicLoad8U { memarg } => {
|
1237
|
+
translate_atomic_load(I64, I8, memarg, builder, state, environ)?
|
1238
|
+
}
|
1239
|
+
Operator::I64AtomicLoad16U { memarg } => {
|
1240
|
+
translate_atomic_load(I64, I16, memarg, builder, state, environ)?
|
1241
|
+
}
|
1242
|
+
Operator::I64AtomicLoad32U { memarg } => {
|
1243
|
+
translate_atomic_load(I64, I32, memarg, builder, state, environ)?
|
1244
|
+
}
|
1245
|
+
|
1246
|
+
Operator::I32AtomicStore { memarg } => {
|
1247
|
+
translate_atomic_store(I32, memarg, builder, state, environ)?
|
1248
|
+
}
|
1249
|
+
Operator::I64AtomicStore { memarg } => {
|
1250
|
+
translate_atomic_store(I64, memarg, builder, state, environ)?
|
1251
|
+
}
|
1252
|
+
Operator::I32AtomicStore8 { memarg } => {
|
1253
|
+
translate_atomic_store(I8, memarg, builder, state, environ)?
|
1254
|
+
}
|
1255
|
+
Operator::I32AtomicStore16 { memarg } => {
|
1256
|
+
translate_atomic_store(I16, memarg, builder, state, environ)?
|
1257
|
+
}
|
1258
|
+
Operator::I64AtomicStore8 { memarg } => {
|
1259
|
+
translate_atomic_store(I8, memarg, builder, state, environ)?
|
1260
|
+
}
|
1261
|
+
Operator::I64AtomicStore16 { memarg } => {
|
1262
|
+
translate_atomic_store(I16, memarg, builder, state, environ)?
|
1263
|
+
}
|
1264
|
+
Operator::I64AtomicStore32 { memarg } => {
|
1265
|
+
translate_atomic_store(I32, memarg, builder, state, environ)?
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
Operator::I32AtomicRmwAdd { memarg } => {
|
1269
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1270
|
+
}
|
1271
|
+
Operator::I64AtomicRmwAdd { memarg } => {
|
1272
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1273
|
+
}
|
1274
|
+
Operator::I32AtomicRmw8AddU { memarg } => {
|
1275
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1276
|
+
}
|
1277
|
+
Operator::I32AtomicRmw16AddU { memarg } => {
|
1278
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1279
|
+
}
|
1280
|
+
Operator::I64AtomicRmw8AddU { memarg } => {
|
1281
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1282
|
+
}
|
1283
|
+
Operator::I64AtomicRmw16AddU { memarg } => {
|
1284
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1285
|
+
}
|
1286
|
+
Operator::I64AtomicRmw32AddU { memarg } => {
|
1287
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::Add, memarg, builder, state, environ)?
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
Operator::I32AtomicRmwSub { memarg } => {
|
1291
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1292
|
+
}
|
1293
|
+
Operator::I64AtomicRmwSub { memarg } => {
|
1294
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1295
|
+
}
|
1296
|
+
Operator::I32AtomicRmw8SubU { memarg } => {
|
1297
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1298
|
+
}
|
1299
|
+
Operator::I32AtomicRmw16SubU { memarg } => {
|
1300
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1301
|
+
}
|
1302
|
+
Operator::I64AtomicRmw8SubU { memarg } => {
|
1303
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1304
|
+
}
|
1305
|
+
Operator::I64AtomicRmw16SubU { memarg } => {
|
1306
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1307
|
+
}
|
1308
|
+
Operator::I64AtomicRmw32SubU { memarg } => {
|
1309
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::Sub, memarg, builder, state, environ)?
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
Operator::I32AtomicRmwAnd { memarg } => {
|
1313
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1314
|
+
}
|
1315
|
+
Operator::I64AtomicRmwAnd { memarg } => {
|
1316
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1317
|
+
}
|
1318
|
+
Operator::I32AtomicRmw8AndU { memarg } => {
|
1319
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1320
|
+
}
|
1321
|
+
Operator::I32AtomicRmw16AndU { memarg } => {
|
1322
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1323
|
+
}
|
1324
|
+
Operator::I64AtomicRmw8AndU { memarg } => {
|
1325
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1326
|
+
}
|
1327
|
+
Operator::I64AtomicRmw16AndU { memarg } => {
|
1328
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1329
|
+
}
|
1330
|
+
Operator::I64AtomicRmw32AndU { memarg } => {
|
1331
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::And, memarg, builder, state, environ)?
|
1332
|
+
}
|
1333
|
+
|
1334
|
+
Operator::I32AtomicRmwOr { memarg } => {
|
1335
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1336
|
+
}
|
1337
|
+
Operator::I64AtomicRmwOr { memarg } => {
|
1338
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1339
|
+
}
|
1340
|
+
Operator::I32AtomicRmw8OrU { memarg } => {
|
1341
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1342
|
+
}
|
1343
|
+
Operator::I32AtomicRmw16OrU { memarg } => {
|
1344
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1345
|
+
}
|
1346
|
+
Operator::I64AtomicRmw8OrU { memarg } => {
|
1347
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1348
|
+
}
|
1349
|
+
Operator::I64AtomicRmw16OrU { memarg } => {
|
1350
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1351
|
+
}
|
1352
|
+
Operator::I64AtomicRmw32OrU { memarg } => {
|
1353
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::Or, memarg, builder, state, environ)?
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
Operator::I32AtomicRmwXor { memarg } => {
|
1357
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1358
|
+
}
|
1359
|
+
Operator::I64AtomicRmwXor { memarg } => {
|
1360
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1361
|
+
}
|
1362
|
+
Operator::I32AtomicRmw8XorU { memarg } => {
|
1363
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1364
|
+
}
|
1365
|
+
Operator::I32AtomicRmw16XorU { memarg } => {
|
1366
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1367
|
+
}
|
1368
|
+
Operator::I64AtomicRmw8XorU { memarg } => {
|
1369
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1370
|
+
}
|
1371
|
+
Operator::I64AtomicRmw16XorU { memarg } => {
|
1372
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1373
|
+
}
|
1374
|
+
Operator::I64AtomicRmw32XorU { memarg } => {
|
1375
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::Xor, memarg, builder, state, environ)?
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
Operator::I32AtomicRmwXchg { memarg } => {
|
1379
|
+
translate_atomic_rmw(I32, I32, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1380
|
+
}
|
1381
|
+
Operator::I64AtomicRmwXchg { memarg } => {
|
1382
|
+
translate_atomic_rmw(I64, I64, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1383
|
+
}
|
1384
|
+
Operator::I32AtomicRmw8XchgU { memarg } => {
|
1385
|
+
translate_atomic_rmw(I32, I8, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1386
|
+
}
|
1387
|
+
Operator::I32AtomicRmw16XchgU { memarg } => {
|
1388
|
+
translate_atomic_rmw(I32, I16, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1389
|
+
}
|
1390
|
+
Operator::I64AtomicRmw8XchgU { memarg } => {
|
1391
|
+
translate_atomic_rmw(I64, I8, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1392
|
+
}
|
1393
|
+
Operator::I64AtomicRmw16XchgU { memarg } => {
|
1394
|
+
translate_atomic_rmw(I64, I16, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1395
|
+
}
|
1396
|
+
Operator::I64AtomicRmw32XchgU { memarg } => {
|
1397
|
+
translate_atomic_rmw(I64, I32, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
Operator::I32AtomicRmwCmpxchg { memarg } => {
|
1401
|
+
translate_atomic_cas(I32, I32, memarg, builder, state, environ)?
|
1402
|
+
}
|
1403
|
+
Operator::I64AtomicRmwCmpxchg { memarg } => {
|
1404
|
+
translate_atomic_cas(I64, I64, memarg, builder, state, environ)?
|
1405
|
+
}
|
1406
|
+
Operator::I32AtomicRmw8CmpxchgU { memarg } => {
|
1407
|
+
translate_atomic_cas(I32, I8, memarg, builder, state, environ)?
|
1408
|
+
}
|
1409
|
+
Operator::I32AtomicRmw16CmpxchgU { memarg } => {
|
1410
|
+
translate_atomic_cas(I32, I16, memarg, builder, state, environ)?
|
1411
|
+
}
|
1412
|
+
Operator::I64AtomicRmw8CmpxchgU { memarg } => {
|
1413
|
+
translate_atomic_cas(I64, I8, memarg, builder, state, environ)?
|
1414
|
+
}
|
1415
|
+
Operator::I64AtomicRmw16CmpxchgU { memarg } => {
|
1416
|
+
translate_atomic_cas(I64, I16, memarg, builder, state, environ)?
|
1417
|
+
}
|
1418
|
+
Operator::I64AtomicRmw32CmpxchgU { memarg } => {
|
1419
|
+
translate_atomic_cas(I64, I32, memarg, builder, state, environ)?
|
1420
|
+
}
|
1421
|
+
|
1422
|
+
Operator::AtomicFence { .. } => {
|
1423
|
+
builder.ins().fence();
|
1424
|
+
}
|
1425
|
+
Operator::MemoryCopy { src_mem, dst_mem } => {
|
1426
|
+
let src_index = MemoryIndex::from_u32(*src_mem);
|
1427
|
+
let dst_index = MemoryIndex::from_u32(*dst_mem);
|
1428
|
+
let src_heap = state.get_heap(builder.func, *src_mem, environ)?;
|
1429
|
+
let dst_heap = state.get_heap(builder.func, *dst_mem, environ)?;
|
1430
|
+
let len = state.pop1();
|
1431
|
+
let src_pos = state.pop1();
|
1432
|
+
let dst_pos = state.pop1();
|
1433
|
+
environ.translate_memory_copy(
|
1434
|
+
builder.cursor(),
|
1435
|
+
src_index,
|
1436
|
+
src_heap,
|
1437
|
+
dst_index,
|
1438
|
+
dst_heap,
|
1439
|
+
dst_pos,
|
1440
|
+
src_pos,
|
1441
|
+
len,
|
1442
|
+
)?;
|
1443
|
+
}
|
1444
|
+
Operator::MemoryFill { mem } => {
|
1445
|
+
let heap_index = MemoryIndex::from_u32(*mem);
|
1446
|
+
let heap = state.get_heap(builder.func, *mem, environ)?;
|
1447
|
+
let len = state.pop1();
|
1448
|
+
let val = state.pop1();
|
1449
|
+
let dest = state.pop1();
|
1450
|
+
environ.translate_memory_fill(builder.cursor(), heap_index, heap, dest, val, len)?;
|
1451
|
+
}
|
1452
|
+
Operator::MemoryInit { data_index, mem } => {
|
1453
|
+
let heap_index = MemoryIndex::from_u32(*mem);
|
1454
|
+
let heap = state.get_heap(builder.func, *mem, environ)?;
|
1455
|
+
let len = state.pop1();
|
1456
|
+
let src = state.pop1();
|
1457
|
+
let dest = state.pop1();
|
1458
|
+
environ.translate_memory_init(
|
1459
|
+
builder.cursor(),
|
1460
|
+
heap_index,
|
1461
|
+
heap,
|
1462
|
+
*data_index,
|
1463
|
+
dest,
|
1464
|
+
src,
|
1465
|
+
len,
|
1466
|
+
)?;
|
1467
|
+
}
|
1468
|
+
Operator::DataDrop { data_index } => {
|
1469
|
+
environ.translate_data_drop(builder.cursor(), *data_index)?;
|
1470
|
+
}
|
1471
|
+
Operator::TableSize { table: index } => {
|
1472
|
+
let table = state.get_or_create_table(builder.func, *index, environ)?;
|
1473
|
+
state.push1(environ.translate_table_size(
|
1474
|
+
builder.cursor(),
|
1475
|
+
TableIndex::from_u32(*index),
|
1476
|
+
table,
|
1477
|
+
)?);
|
1478
|
+
}
|
1479
|
+
Operator::TableGrow { table: index } => {
|
1480
|
+
let table_index = TableIndex::from_u32(*index);
|
1481
|
+
let table = state.get_or_create_table(builder.func, *index, environ)?;
|
1482
|
+
let delta = state.pop1();
|
1483
|
+
let init_value = state.pop1();
|
1484
|
+
state.push1(environ.translate_table_grow(
|
1485
|
+
builder.cursor(),
|
1486
|
+
table_index,
|
1487
|
+
table,
|
1488
|
+
delta,
|
1489
|
+
init_value,
|
1490
|
+
)?);
|
1491
|
+
}
|
1492
|
+
Operator::TableGet { table: index } => {
|
1493
|
+
let table_index = TableIndex::from_u32(*index);
|
1494
|
+
let table = state.get_or_create_table(builder.func, *index, environ)?;
|
1495
|
+
let index = state.pop1();
|
1496
|
+
state.push1(environ.translate_table_get(builder, table_index, table, index)?);
|
1497
|
+
}
|
1498
|
+
Operator::TableSet { table: index } => {
|
1499
|
+
let table_index = TableIndex::from_u32(*index);
|
1500
|
+
let table = state.get_or_create_table(builder.func, *index, environ)?;
|
1501
|
+
let value = state.pop1();
|
1502
|
+
let index = state.pop1();
|
1503
|
+
environ.translate_table_set(builder, table_index, table, value, index)?;
|
1504
|
+
}
|
1505
|
+
Operator::TableCopy {
|
1506
|
+
dst_table: dst_table_index,
|
1507
|
+
src_table: src_table_index,
|
1508
|
+
} => {
|
1509
|
+
let dst_table = state.get_or_create_table(builder.func, *dst_table_index, environ)?;
|
1510
|
+
let src_table = state.get_or_create_table(builder.func, *src_table_index, environ)?;
|
1511
|
+
let len = state.pop1();
|
1512
|
+
let src = state.pop1();
|
1513
|
+
let dest = state.pop1();
|
1514
|
+
environ.translate_table_copy(
|
1515
|
+
builder.cursor(),
|
1516
|
+
TableIndex::from_u32(*dst_table_index),
|
1517
|
+
dst_table,
|
1518
|
+
TableIndex::from_u32(*src_table_index),
|
1519
|
+
src_table,
|
1520
|
+
dest,
|
1521
|
+
src,
|
1522
|
+
len,
|
1523
|
+
)?;
|
1524
|
+
}
|
1525
|
+
Operator::TableFill { table } => {
|
1526
|
+
let table_index = TableIndex::from_u32(*table);
|
1527
|
+
let len = state.pop1();
|
1528
|
+
let val = state.pop1();
|
1529
|
+
let dest = state.pop1();
|
1530
|
+
environ.translate_table_fill(builder.cursor(), table_index, dest, val, len)?;
|
1531
|
+
}
|
1532
|
+
Operator::TableInit {
|
1533
|
+
elem_index,
|
1534
|
+
table: table_index,
|
1535
|
+
} => {
|
1536
|
+
let table = state.get_or_create_table(builder.func, *table_index, environ)?;
|
1537
|
+
let len = state.pop1();
|
1538
|
+
let src = state.pop1();
|
1539
|
+
let dest = state.pop1();
|
1540
|
+
environ.translate_table_init(
|
1541
|
+
builder.cursor(),
|
1542
|
+
*elem_index,
|
1543
|
+
TableIndex::from_u32(*table_index),
|
1544
|
+
table,
|
1545
|
+
dest,
|
1546
|
+
src,
|
1547
|
+
len,
|
1548
|
+
)?;
|
1549
|
+
}
|
1550
|
+
Operator::ElemDrop { elem_index } => {
|
1551
|
+
environ.translate_elem_drop(builder.cursor(), *elem_index)?;
|
1552
|
+
}
|
1553
|
+
Operator::V128Const { value } => {
|
1554
|
+
let data = value.bytes().to_vec().into();
|
1555
|
+
let handle = builder.func.dfg.constants.insert(data);
|
1556
|
+
let value = builder.ins().vconst(I8X16, handle);
|
1557
|
+
// the v128.const is typed in CLIF as a I8x16 but bitcast to a different type
|
1558
|
+
// before use
|
1559
|
+
state.push1(value)
|
1560
|
+
}
|
1561
|
+
Operator::I8x16Splat | Operator::I16x8Splat => {
|
1562
|
+
let reduced = builder.ins().ireduce(type_of(op).lane_type(), state.pop1());
|
1563
|
+
let splatted = builder.ins().splat(type_of(op), reduced);
|
1564
|
+
state.push1(splatted)
|
1565
|
+
}
|
1566
|
+
Operator::I32x4Splat
|
1567
|
+
| Operator::I64x2Splat
|
1568
|
+
| Operator::F32x4Splat
|
1569
|
+
| Operator::F64x2Splat => {
|
1570
|
+
let splatted = builder.ins().splat(type_of(op), state.pop1());
|
1571
|
+
state.push1(splatted)
|
1572
|
+
}
|
1573
|
+
Operator::V128Load8Splat { memarg }
|
1574
|
+
| Operator::V128Load16Splat { memarg }
|
1575
|
+
| Operator::V128Load32Splat { memarg }
|
1576
|
+
| Operator::V128Load64Splat { memarg } => {
|
1577
|
+
unwrap_or_return_unreachable_state!(
|
1578
|
+
state,
|
1579
|
+
translate_load(
|
1580
|
+
memarg,
|
1581
|
+
ir::Opcode::Load,
|
1582
|
+
type_of(op).lane_type(),
|
1583
|
+
builder,
|
1584
|
+
state,
|
1585
|
+
environ,
|
1586
|
+
)?
|
1587
|
+
);
|
1588
|
+
let splatted = builder.ins().splat(type_of(op), state.pop1());
|
1589
|
+
state.push1(splatted)
|
1590
|
+
}
|
1591
|
+
Operator::V128Load32Zero { memarg } | Operator::V128Load64Zero { memarg } => {
|
1592
|
+
unwrap_or_return_unreachable_state!(
|
1593
|
+
state,
|
1594
|
+
translate_load(
|
1595
|
+
memarg,
|
1596
|
+
ir::Opcode::Load,
|
1597
|
+
type_of(op).lane_type(),
|
1598
|
+
builder,
|
1599
|
+
state,
|
1600
|
+
environ,
|
1601
|
+
)?
|
1602
|
+
);
|
1603
|
+
let as_vector = builder.ins().scalar_to_vector(type_of(op), state.pop1());
|
1604
|
+
state.push1(as_vector)
|
1605
|
+
}
|
1606
|
+
Operator::V128Load8Lane { memarg, lane }
|
1607
|
+
| Operator::V128Load16Lane { memarg, lane }
|
1608
|
+
| Operator::V128Load32Lane { memarg, lane }
|
1609
|
+
| Operator::V128Load64Lane { memarg, lane } => {
|
1610
|
+
let vector = pop1_with_bitcast(state, type_of(op), builder);
|
1611
|
+
unwrap_or_return_unreachable_state!(
|
1612
|
+
state,
|
1613
|
+
translate_load(
|
1614
|
+
memarg,
|
1615
|
+
ir::Opcode::Load,
|
1616
|
+
type_of(op).lane_type(),
|
1617
|
+
builder,
|
1618
|
+
state,
|
1619
|
+
environ,
|
1620
|
+
)?
|
1621
|
+
);
|
1622
|
+
let replacement = state.pop1();
|
1623
|
+
state.push1(builder.ins().insertlane(vector, replacement, *lane))
|
1624
|
+
}
|
1625
|
+
Operator::V128Store8Lane { memarg, lane }
|
1626
|
+
| Operator::V128Store16Lane { memarg, lane }
|
1627
|
+
| Operator::V128Store32Lane { memarg, lane }
|
1628
|
+
| Operator::V128Store64Lane { memarg, lane } => {
|
1629
|
+
let vector = pop1_with_bitcast(state, type_of(op), builder);
|
1630
|
+
state.push1(builder.ins().extractlane(vector, lane.clone()));
|
1631
|
+
translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
|
1632
|
+
}
|
1633
|
+
Operator::I8x16ExtractLaneS { lane } | Operator::I16x8ExtractLaneS { lane } => {
|
1634
|
+
let vector = pop1_with_bitcast(state, type_of(op), builder);
|
1635
|
+
let extracted = builder.ins().extractlane(vector, lane.clone());
|
1636
|
+
state.push1(builder.ins().sextend(I32, extracted))
|
1637
|
+
}
|
1638
|
+
Operator::I8x16ExtractLaneU { lane } | Operator::I16x8ExtractLaneU { lane } => {
|
1639
|
+
let vector = pop1_with_bitcast(state, type_of(op), builder);
|
1640
|
+
let extracted = builder.ins().extractlane(vector, lane.clone());
|
1641
|
+
state.push1(builder.ins().uextend(I32, extracted));
|
1642
|
+
// On x86, PEXTRB zeroes the upper bits of the destination register of extractlane so
|
1643
|
+
// uextend could be elided; for now, uextend is needed for Cranelift's type checks to
|
1644
|
+
// work.
|
1645
|
+
}
|
1646
|
+
Operator::I32x4ExtractLane { lane }
|
1647
|
+
| Operator::I64x2ExtractLane { lane }
|
1648
|
+
| Operator::F32x4ExtractLane { lane }
|
1649
|
+
| Operator::F64x2ExtractLane { lane } => {
|
1650
|
+
let vector = pop1_with_bitcast(state, type_of(op), builder);
|
1651
|
+
state.push1(builder.ins().extractlane(vector, lane.clone()))
|
1652
|
+
}
|
1653
|
+
Operator::I8x16ReplaceLane { lane } | Operator::I16x8ReplaceLane { lane } => {
|
1654
|
+
let (vector, replacement) = state.pop2();
|
1655
|
+
let ty = type_of(op);
|
1656
|
+
let reduced = builder.ins().ireduce(ty.lane_type(), replacement);
|
1657
|
+
let vector = optionally_bitcast_vector(vector, ty, builder);
|
1658
|
+
state.push1(builder.ins().insertlane(vector, reduced, *lane))
|
1659
|
+
}
|
1660
|
+
Operator::I32x4ReplaceLane { lane }
|
1661
|
+
| Operator::I64x2ReplaceLane { lane }
|
1662
|
+
| Operator::F32x4ReplaceLane { lane }
|
1663
|
+
| Operator::F64x2ReplaceLane { lane } => {
|
1664
|
+
let (vector, replacement) = state.pop2();
|
1665
|
+
let vector = optionally_bitcast_vector(vector, type_of(op), builder);
|
1666
|
+
state.push1(builder.ins().insertlane(vector, replacement, *lane))
|
1667
|
+
}
|
1668
|
+
Operator::I8x16Shuffle { lanes, .. } => {
|
1669
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
1670
|
+
let lanes = ConstantData::from(lanes.as_ref());
|
1671
|
+
let mask = builder.func.dfg.immediates.push(lanes);
|
1672
|
+
let shuffled = builder.ins().shuffle(a, b, mask);
|
1673
|
+
state.push1(shuffled)
|
1674
|
+
// At this point the original types of a and b are lost; users of this value (i.e. this
|
1675
|
+
// WASM-to-CLIF translator) may need to bitcast for type-correctness. This is due
|
1676
|
+
// to WASM using the less specific v128 type for certain operations and more specific
|
1677
|
+
// types (e.g. i8x16) for others.
|
1678
|
+
}
|
1679
|
+
Operator::I8x16Swizzle => {
|
1680
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
1681
|
+
state.push1(builder.ins().swizzle(a, b))
|
1682
|
+
}
|
1683
|
+
Operator::I8x16Add | Operator::I16x8Add | Operator::I32x4Add | Operator::I64x2Add => {
|
1684
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1685
|
+
state.push1(builder.ins().iadd(a, b))
|
1686
|
+
}
|
1687
|
+
Operator::I8x16AddSatS | Operator::I16x8AddSatS => {
|
1688
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1689
|
+
state.push1(builder.ins().sadd_sat(a, b))
|
1690
|
+
}
|
1691
|
+
Operator::I8x16AddSatU | Operator::I16x8AddSatU => {
|
1692
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1693
|
+
state.push1(builder.ins().uadd_sat(a, b))
|
1694
|
+
}
|
1695
|
+
Operator::I8x16Sub | Operator::I16x8Sub | Operator::I32x4Sub | Operator::I64x2Sub => {
|
1696
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1697
|
+
state.push1(builder.ins().isub(a, b))
|
1698
|
+
}
|
1699
|
+
Operator::I8x16SubSatS | Operator::I16x8SubSatS => {
|
1700
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1701
|
+
state.push1(builder.ins().ssub_sat(a, b))
|
1702
|
+
}
|
1703
|
+
Operator::I8x16SubSatU | Operator::I16x8SubSatU => {
|
1704
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1705
|
+
state.push1(builder.ins().usub_sat(a, b))
|
1706
|
+
}
|
1707
|
+
Operator::I8x16MinS | Operator::I16x8MinS | Operator::I32x4MinS => {
|
1708
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1709
|
+
state.push1(builder.ins().smin(a, b))
|
1710
|
+
}
|
1711
|
+
Operator::I8x16MinU | Operator::I16x8MinU | Operator::I32x4MinU => {
|
1712
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1713
|
+
state.push1(builder.ins().umin(a, b))
|
1714
|
+
}
|
1715
|
+
Operator::I8x16MaxS | Operator::I16x8MaxS | Operator::I32x4MaxS => {
|
1716
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1717
|
+
state.push1(builder.ins().smax(a, b))
|
1718
|
+
}
|
1719
|
+
Operator::I8x16MaxU | Operator::I16x8MaxU | Operator::I32x4MaxU => {
|
1720
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1721
|
+
state.push1(builder.ins().umax(a, b))
|
1722
|
+
}
|
1723
|
+
Operator::I8x16AvgrU | Operator::I16x8AvgrU => {
|
1724
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1725
|
+
state.push1(builder.ins().avg_round(a, b))
|
1726
|
+
}
|
1727
|
+
Operator::I8x16Neg | Operator::I16x8Neg | Operator::I32x4Neg | Operator::I64x2Neg => {
|
1728
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1729
|
+
state.push1(builder.ins().ineg(a))
|
1730
|
+
}
|
1731
|
+
Operator::I8x16Abs | Operator::I16x8Abs | Operator::I32x4Abs | Operator::I64x2Abs => {
|
1732
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1733
|
+
state.push1(builder.ins().iabs(a))
|
1734
|
+
}
|
1735
|
+
Operator::I16x8Mul | Operator::I32x4Mul | Operator::I64x2Mul => {
|
1736
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1737
|
+
state.push1(builder.ins().imul(a, b))
|
1738
|
+
}
|
1739
|
+
Operator::V128Or => {
|
1740
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1741
|
+
state.push1(builder.ins().bor(a, b))
|
1742
|
+
}
|
1743
|
+
Operator::V128Xor => {
|
1744
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1745
|
+
state.push1(builder.ins().bxor(a, b))
|
1746
|
+
}
|
1747
|
+
Operator::V128And => {
|
1748
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1749
|
+
state.push1(builder.ins().band(a, b))
|
1750
|
+
}
|
1751
|
+
Operator::V128AndNot => {
|
1752
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1753
|
+
state.push1(builder.ins().band_not(a, b))
|
1754
|
+
}
|
1755
|
+
Operator::V128Not => {
|
1756
|
+
let a = state.pop1();
|
1757
|
+
state.push1(builder.ins().bnot(a));
|
1758
|
+
}
|
1759
|
+
Operator::I8x16Shl | Operator::I16x8Shl | Operator::I32x4Shl | Operator::I64x2Shl => {
|
1760
|
+
let (a, b) = state.pop2();
|
1761
|
+
let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
|
1762
|
+
// The spec expects to shift with `b mod lanewidth`; This is directly compatible
|
1763
|
+
// with cranelift's instruction.
|
1764
|
+
state.push1(builder.ins().ishl(bitcast_a, b))
|
1765
|
+
}
|
1766
|
+
Operator::I8x16ShrU | Operator::I16x8ShrU | Operator::I32x4ShrU | Operator::I64x2ShrU => {
|
1767
|
+
let (a, b) = state.pop2();
|
1768
|
+
let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
|
1769
|
+
// The spec expects to shift with `b mod lanewidth`; This is directly compatible
|
1770
|
+
// with cranelift's instruction.
|
1771
|
+
state.push1(builder.ins().ushr(bitcast_a, b))
|
1772
|
+
}
|
1773
|
+
Operator::I8x16ShrS | Operator::I16x8ShrS | Operator::I32x4ShrS | Operator::I64x2ShrS => {
|
1774
|
+
let (a, b) = state.pop2();
|
1775
|
+
let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
|
1776
|
+
// The spec expects to shift with `b mod lanewidth`; This is directly compatible
|
1777
|
+
// with cranelift's instruction.
|
1778
|
+
state.push1(builder.ins().sshr(bitcast_a, b))
|
1779
|
+
}
|
1780
|
+
Operator::V128Bitselect => {
|
1781
|
+
let (a, b, c) = pop3_with_bitcast(state, I8X16, builder);
|
1782
|
+
// The CLIF operand ordering is slightly different and the types of all three
|
1783
|
+
// operands must match (hence the bitcast).
|
1784
|
+
state.push1(builder.ins().bitselect(c, a, b))
|
1785
|
+
}
|
1786
|
+
Operator::V128AnyTrue => {
|
1787
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1788
|
+
let bool_result = builder.ins().vany_true(a);
|
1789
|
+
state.push1(builder.ins().uextend(I32, bool_result))
|
1790
|
+
}
|
1791
|
+
Operator::I8x16AllTrue
|
1792
|
+
| Operator::I16x8AllTrue
|
1793
|
+
| Operator::I32x4AllTrue
|
1794
|
+
| Operator::I64x2AllTrue => {
|
1795
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1796
|
+
let bool_result = builder.ins().vall_true(a);
|
1797
|
+
state.push1(builder.ins().uextend(I32, bool_result))
|
1798
|
+
}
|
1799
|
+
Operator::I8x16Bitmask
|
1800
|
+
| Operator::I16x8Bitmask
|
1801
|
+
| Operator::I32x4Bitmask
|
1802
|
+
| Operator::I64x2Bitmask => {
|
1803
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1804
|
+
state.push1(builder.ins().vhigh_bits(I32, a));
|
1805
|
+
}
|
1806
|
+
Operator::I8x16Eq | Operator::I16x8Eq | Operator::I32x4Eq | Operator::I64x2Eq => {
|
1807
|
+
translate_vector_icmp(IntCC::Equal, type_of(op), builder, state)
|
1808
|
+
}
|
1809
|
+
Operator::I8x16Ne | Operator::I16x8Ne | Operator::I32x4Ne | Operator::I64x2Ne => {
|
1810
|
+
translate_vector_icmp(IntCC::NotEqual, type_of(op), builder, state)
|
1811
|
+
}
|
1812
|
+
Operator::I8x16GtS | Operator::I16x8GtS | Operator::I32x4GtS | Operator::I64x2GtS => {
|
1813
|
+
translate_vector_icmp(IntCC::SignedGreaterThan, type_of(op), builder, state)
|
1814
|
+
}
|
1815
|
+
Operator::I8x16LtS | Operator::I16x8LtS | Operator::I32x4LtS | Operator::I64x2LtS => {
|
1816
|
+
translate_vector_icmp(IntCC::SignedLessThan, type_of(op), builder, state)
|
1817
|
+
}
|
1818
|
+
Operator::I8x16GtU | Operator::I16x8GtU | Operator::I32x4GtU => {
|
1819
|
+
translate_vector_icmp(IntCC::UnsignedGreaterThan, type_of(op), builder, state)
|
1820
|
+
}
|
1821
|
+
Operator::I8x16LtU | Operator::I16x8LtU | Operator::I32x4LtU => {
|
1822
|
+
translate_vector_icmp(IntCC::UnsignedLessThan, type_of(op), builder, state)
|
1823
|
+
}
|
1824
|
+
Operator::I8x16GeS | Operator::I16x8GeS | Operator::I32x4GeS | Operator::I64x2GeS => {
|
1825
|
+
translate_vector_icmp(IntCC::SignedGreaterThanOrEqual, type_of(op), builder, state)
|
1826
|
+
}
|
1827
|
+
Operator::I8x16LeS | Operator::I16x8LeS | Operator::I32x4LeS | Operator::I64x2LeS => {
|
1828
|
+
translate_vector_icmp(IntCC::SignedLessThanOrEqual, type_of(op), builder, state)
|
1829
|
+
}
|
1830
|
+
Operator::I8x16GeU | Operator::I16x8GeU | Operator::I32x4GeU => translate_vector_icmp(
|
1831
|
+
IntCC::UnsignedGreaterThanOrEqual,
|
1832
|
+
type_of(op),
|
1833
|
+
builder,
|
1834
|
+
state,
|
1835
|
+
),
|
1836
|
+
Operator::I8x16LeU | Operator::I16x8LeU | Operator::I32x4LeU => {
|
1837
|
+
translate_vector_icmp(IntCC::UnsignedLessThanOrEqual, type_of(op), builder, state)
|
1838
|
+
}
|
1839
|
+
Operator::F32x4Eq | Operator::F64x2Eq => {
|
1840
|
+
translate_vector_fcmp(FloatCC::Equal, type_of(op), builder, state)
|
1841
|
+
}
|
1842
|
+
Operator::F32x4Ne | Operator::F64x2Ne => {
|
1843
|
+
translate_vector_fcmp(FloatCC::NotEqual, type_of(op), builder, state)
|
1844
|
+
}
|
1845
|
+
Operator::F32x4Lt | Operator::F64x2Lt => {
|
1846
|
+
translate_vector_fcmp(FloatCC::LessThan, type_of(op), builder, state)
|
1847
|
+
}
|
1848
|
+
Operator::F32x4Gt | Operator::F64x2Gt => {
|
1849
|
+
translate_vector_fcmp(FloatCC::GreaterThan, type_of(op), builder, state)
|
1850
|
+
}
|
1851
|
+
Operator::F32x4Le | Operator::F64x2Le => {
|
1852
|
+
translate_vector_fcmp(FloatCC::LessThanOrEqual, type_of(op), builder, state)
|
1853
|
+
}
|
1854
|
+
Operator::F32x4Ge | Operator::F64x2Ge => {
|
1855
|
+
translate_vector_fcmp(FloatCC::GreaterThanOrEqual, type_of(op), builder, state)
|
1856
|
+
}
|
1857
|
+
Operator::F32x4Add | Operator::F64x2Add => {
|
1858
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1859
|
+
state.push1(builder.ins().fadd(a, b))
|
1860
|
+
}
|
1861
|
+
Operator::F32x4Sub | Operator::F64x2Sub => {
|
1862
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1863
|
+
state.push1(builder.ins().fsub(a, b))
|
1864
|
+
}
|
1865
|
+
Operator::F32x4Mul | Operator::F64x2Mul => {
|
1866
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1867
|
+
state.push1(builder.ins().fmul(a, b))
|
1868
|
+
}
|
1869
|
+
Operator::F32x4Div | Operator::F64x2Div => {
|
1870
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1871
|
+
state.push1(builder.ins().fdiv(a, b))
|
1872
|
+
}
|
1873
|
+
Operator::F32x4Max | Operator::F64x2Max => {
|
1874
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1875
|
+
state.push1(builder.ins().fmax(a, b))
|
1876
|
+
}
|
1877
|
+
Operator::F32x4Min | Operator::F64x2Min => {
|
1878
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1879
|
+
state.push1(builder.ins().fmin(a, b))
|
1880
|
+
}
|
1881
|
+
Operator::F32x4PMax | Operator::F64x2PMax => {
|
1882
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1883
|
+
state.push1(builder.ins().fmax_pseudo(a, b))
|
1884
|
+
}
|
1885
|
+
Operator::F32x4PMin | Operator::F64x2PMin => {
|
1886
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
1887
|
+
state.push1(builder.ins().fmin_pseudo(a, b))
|
1888
|
+
}
|
1889
|
+
Operator::F32x4Sqrt | Operator::F64x2Sqrt => {
|
1890
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1891
|
+
state.push1(builder.ins().sqrt(a))
|
1892
|
+
}
|
1893
|
+
Operator::F32x4Neg | Operator::F64x2Neg => {
|
1894
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1895
|
+
state.push1(builder.ins().fneg(a))
|
1896
|
+
}
|
1897
|
+
Operator::F32x4Abs | Operator::F64x2Abs => {
|
1898
|
+
let a = pop1_with_bitcast(state, type_of(op), builder);
|
1899
|
+
state.push1(builder.ins().fabs(a))
|
1900
|
+
}
|
1901
|
+
Operator::F32x4ConvertI32x4S => {
|
1902
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
1903
|
+
state.push1(builder.ins().fcvt_from_sint(F32X4, a))
|
1904
|
+
}
|
1905
|
+
Operator::F32x4ConvertI32x4U => {
|
1906
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
1907
|
+
state.push1(builder.ins().fcvt_from_uint(F32X4, a))
|
1908
|
+
}
|
1909
|
+
Operator::F64x2ConvertLowI32x4S => {
|
1910
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
1911
|
+
let widened_a = builder.ins().swiden_low(a);
|
1912
|
+
state.push1(builder.ins().fcvt_from_sint(F64X2, widened_a));
|
1913
|
+
}
|
1914
|
+
Operator::F64x2ConvertLowI32x4U => {
|
1915
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
1916
|
+
let widened_a = builder.ins().uwiden_low(a);
|
1917
|
+
state.push1(builder.ins().fcvt_from_uint(F64X2, widened_a));
|
1918
|
+
}
|
1919
|
+
Operator::F64x2PromoteLowF32x4 => {
|
1920
|
+
let a = pop1_with_bitcast(state, F32X4, builder);
|
1921
|
+
state.push1(builder.ins().fvpromote_low(a));
|
1922
|
+
}
|
1923
|
+
Operator::F32x4DemoteF64x2Zero => {
|
1924
|
+
let a = pop1_with_bitcast(state, F64X2, builder);
|
1925
|
+
state.push1(builder.ins().fvdemote(a));
|
1926
|
+
}
|
1927
|
+
Operator::I32x4TruncSatF32x4S => {
|
1928
|
+
let a = pop1_with_bitcast(state, F32X4, builder);
|
1929
|
+
state.push1(builder.ins().fcvt_to_sint_sat(I32X4, a))
|
1930
|
+
}
|
1931
|
+
Operator::I32x4TruncSatF64x2SZero => {
|
1932
|
+
let a = pop1_with_bitcast(state, F64X2, builder);
|
1933
|
+
let converted_a = builder.ins().fcvt_to_sint_sat(I64X2, a);
|
1934
|
+
let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
|
1935
|
+
let zero = builder.ins().vconst(I64X2, handle);
|
1936
|
+
|
1937
|
+
state.push1(builder.ins().snarrow(converted_a, zero));
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
// FIXME(#5913): the relaxed instructions here are translated the same
|
1941
|
+
// as the saturating instructions, even when the code generator
|
1942
|
+
// configuration allow for different semantics across hosts. On x86,
|
1943
|
+
// however, it's theoretically possible to have a slightly more optimal
|
1944
|
+
// lowering which accounts for NaN differently, although the lowering is
|
1945
|
+
// still not trivial (e.g. one instruction). At this time the
|
1946
|
+
// more-optimal-but-still-large lowering for x86 is not implemented so
|
1947
|
+
// the relaxed instructions are listed here instead of down below with
|
1948
|
+
// the other relaxed instructions. An x86-specific implementation (or
|
1949
|
+
// perhaps for other backends too) should be added and the codegen for
|
1950
|
+
// the relaxed instruction should conditionally be different.
|
1951
|
+
Operator::I32x4RelaxedTruncF32x4U | Operator::I32x4TruncSatF32x4U => {
|
1952
|
+
let a = pop1_with_bitcast(state, F32X4, builder);
|
1953
|
+
state.push1(builder.ins().fcvt_to_uint_sat(I32X4, a))
|
1954
|
+
}
|
1955
|
+
Operator::I32x4RelaxedTruncF64x2UZero | Operator::I32x4TruncSatF64x2UZero => {
|
1956
|
+
let a = pop1_with_bitcast(state, F64X2, builder);
|
1957
|
+
let converted_a = builder.ins().fcvt_to_uint_sat(I64X2, a);
|
1958
|
+
let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
|
1959
|
+
let zero = builder.ins().vconst(I64X2, handle);
|
1960
|
+
|
1961
|
+
state.push1(builder.ins().uunarrow(converted_a, zero));
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
Operator::I8x16NarrowI16x8S => {
|
1965
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
1966
|
+
state.push1(builder.ins().snarrow(a, b))
|
1967
|
+
}
|
1968
|
+
Operator::I16x8NarrowI32x4S => {
|
1969
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
1970
|
+
state.push1(builder.ins().snarrow(a, b))
|
1971
|
+
}
|
1972
|
+
Operator::I8x16NarrowI16x8U => {
|
1973
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
1974
|
+
state.push1(builder.ins().unarrow(a, b))
|
1975
|
+
}
|
1976
|
+
Operator::I16x8NarrowI32x4U => {
|
1977
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
1978
|
+
state.push1(builder.ins().unarrow(a, b))
|
1979
|
+
}
|
1980
|
+
Operator::I16x8ExtendLowI8x16S => {
|
1981
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
1982
|
+
state.push1(builder.ins().swiden_low(a))
|
1983
|
+
}
|
1984
|
+
Operator::I16x8ExtendHighI8x16S => {
|
1985
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
1986
|
+
state.push1(builder.ins().swiden_high(a))
|
1987
|
+
}
|
1988
|
+
Operator::I16x8ExtendLowI8x16U => {
|
1989
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
1990
|
+
state.push1(builder.ins().uwiden_low(a))
|
1991
|
+
}
|
1992
|
+
Operator::I16x8ExtendHighI8x16U => {
|
1993
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
1994
|
+
state.push1(builder.ins().uwiden_high(a))
|
1995
|
+
}
|
1996
|
+
Operator::I32x4ExtendLowI16x8S => {
|
1997
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
1998
|
+
state.push1(builder.ins().swiden_low(a))
|
1999
|
+
}
|
2000
|
+
Operator::I32x4ExtendHighI16x8S => {
|
2001
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
2002
|
+
state.push1(builder.ins().swiden_high(a))
|
2003
|
+
}
|
2004
|
+
Operator::I32x4ExtendLowI16x8U => {
|
2005
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
2006
|
+
state.push1(builder.ins().uwiden_low(a))
|
2007
|
+
}
|
2008
|
+
Operator::I32x4ExtendHighI16x8U => {
|
2009
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
2010
|
+
state.push1(builder.ins().uwiden_high(a))
|
2011
|
+
}
|
2012
|
+
Operator::I64x2ExtendLowI32x4S => {
|
2013
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
2014
|
+
state.push1(builder.ins().swiden_low(a))
|
2015
|
+
}
|
2016
|
+
Operator::I64x2ExtendHighI32x4S => {
|
2017
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
2018
|
+
state.push1(builder.ins().swiden_high(a))
|
2019
|
+
}
|
2020
|
+
Operator::I64x2ExtendLowI32x4U => {
|
2021
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
2022
|
+
state.push1(builder.ins().uwiden_low(a))
|
2023
|
+
}
|
2024
|
+
Operator::I64x2ExtendHighI32x4U => {
|
2025
|
+
let a = pop1_with_bitcast(state, I32X4, builder);
|
2026
|
+
state.push1(builder.ins().uwiden_high(a))
|
2027
|
+
}
|
2028
|
+
Operator::I16x8ExtAddPairwiseI8x16S => {
|
2029
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
2030
|
+
let widen_low = builder.ins().swiden_low(a);
|
2031
|
+
let widen_high = builder.ins().swiden_high(a);
|
2032
|
+
state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
|
2033
|
+
}
|
2034
|
+
Operator::I32x4ExtAddPairwiseI16x8S => {
|
2035
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
2036
|
+
let widen_low = builder.ins().swiden_low(a);
|
2037
|
+
let widen_high = builder.ins().swiden_high(a);
|
2038
|
+
state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
|
2039
|
+
}
|
2040
|
+
Operator::I16x8ExtAddPairwiseI8x16U => {
|
2041
|
+
let a = pop1_with_bitcast(state, I8X16, builder);
|
2042
|
+
let widen_low = builder.ins().uwiden_low(a);
|
2043
|
+
let widen_high = builder.ins().uwiden_high(a);
|
2044
|
+
state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
|
2045
|
+
}
|
2046
|
+
Operator::I32x4ExtAddPairwiseI16x8U => {
|
2047
|
+
let a = pop1_with_bitcast(state, I16X8, builder);
|
2048
|
+
let widen_low = builder.ins().uwiden_low(a);
|
2049
|
+
let widen_high = builder.ins().uwiden_high(a);
|
2050
|
+
state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
|
2051
|
+
}
|
2052
|
+
Operator::F32x4Ceil | Operator::F64x2Ceil => {
|
2053
|
+
// This is something of a misuse of `type_of`, because that produces the return type
|
2054
|
+
// of `op`. In this case we want the arg type, but we know it's the same as the
|
2055
|
+
// return type. Same for the 3 cases below.
|
2056
|
+
let arg = pop1_with_bitcast(state, type_of(op), builder);
|
2057
|
+
state.push1(builder.ins().ceil(arg));
|
2058
|
+
}
|
2059
|
+
Operator::F32x4Floor | Operator::F64x2Floor => {
|
2060
|
+
let arg = pop1_with_bitcast(state, type_of(op), builder);
|
2061
|
+
state.push1(builder.ins().floor(arg));
|
2062
|
+
}
|
2063
|
+
Operator::F32x4Trunc | Operator::F64x2Trunc => {
|
2064
|
+
let arg = pop1_with_bitcast(state, type_of(op), builder);
|
2065
|
+
state.push1(builder.ins().trunc(arg));
|
2066
|
+
}
|
2067
|
+
Operator::F32x4Nearest | Operator::F64x2Nearest => {
|
2068
|
+
let arg = pop1_with_bitcast(state, type_of(op), builder);
|
2069
|
+
state.push1(builder.ins().nearest(arg));
|
2070
|
+
}
|
2071
|
+
Operator::I32x4DotI16x8S => {
|
2072
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2073
|
+
let alow = builder.ins().swiden_low(a);
|
2074
|
+
let blow = builder.ins().swiden_low(b);
|
2075
|
+
let low = builder.ins().imul(alow, blow);
|
2076
|
+
let ahigh = builder.ins().swiden_high(a);
|
2077
|
+
let bhigh = builder.ins().swiden_high(b);
|
2078
|
+
let high = builder.ins().imul(ahigh, bhigh);
|
2079
|
+
state.push1(builder.ins().iadd_pairwise(low, high));
|
2080
|
+
}
|
2081
|
+
Operator::I8x16Popcnt => {
|
2082
|
+
let arg = pop1_with_bitcast(state, type_of(op), builder);
|
2083
|
+
state.push1(builder.ins().popcnt(arg));
|
2084
|
+
}
|
2085
|
+
Operator::I16x8Q15MulrSatS => {
|
2086
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2087
|
+
state.push1(builder.ins().sqmul_round_sat(a, b))
|
2088
|
+
}
|
2089
|
+
Operator::I16x8ExtMulLowI8x16S => {
|
2090
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2091
|
+
let a_low = builder.ins().swiden_low(a);
|
2092
|
+
let b_low = builder.ins().swiden_low(b);
|
2093
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2094
|
+
}
|
2095
|
+
Operator::I16x8ExtMulHighI8x16S => {
|
2096
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2097
|
+
let a_high = builder.ins().swiden_high(a);
|
2098
|
+
let b_high = builder.ins().swiden_high(b);
|
2099
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2100
|
+
}
|
2101
|
+
Operator::I16x8ExtMulLowI8x16U => {
|
2102
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2103
|
+
let a_low = builder.ins().uwiden_low(a);
|
2104
|
+
let b_low = builder.ins().uwiden_low(b);
|
2105
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2106
|
+
}
|
2107
|
+
Operator::I16x8ExtMulHighI8x16U => {
|
2108
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2109
|
+
let a_high = builder.ins().uwiden_high(a);
|
2110
|
+
let b_high = builder.ins().uwiden_high(b);
|
2111
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2112
|
+
}
|
2113
|
+
Operator::I32x4ExtMulLowI16x8S => {
|
2114
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2115
|
+
let a_low = builder.ins().swiden_low(a);
|
2116
|
+
let b_low = builder.ins().swiden_low(b);
|
2117
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2118
|
+
}
|
2119
|
+
Operator::I32x4ExtMulHighI16x8S => {
|
2120
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2121
|
+
let a_high = builder.ins().swiden_high(a);
|
2122
|
+
let b_high = builder.ins().swiden_high(b);
|
2123
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2124
|
+
}
|
2125
|
+
Operator::I32x4ExtMulLowI16x8U => {
|
2126
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2127
|
+
let a_low = builder.ins().uwiden_low(a);
|
2128
|
+
let b_low = builder.ins().uwiden_low(b);
|
2129
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2130
|
+
}
|
2131
|
+
Operator::I32x4ExtMulHighI16x8U => {
|
2132
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2133
|
+
let a_high = builder.ins().uwiden_high(a);
|
2134
|
+
let b_high = builder.ins().uwiden_high(b);
|
2135
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2136
|
+
}
|
2137
|
+
Operator::I64x2ExtMulLowI32x4S => {
|
2138
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
2139
|
+
let a_low = builder.ins().swiden_low(a);
|
2140
|
+
let b_low = builder.ins().swiden_low(b);
|
2141
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2142
|
+
}
|
2143
|
+
Operator::I64x2ExtMulHighI32x4S => {
|
2144
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
2145
|
+
let a_high = builder.ins().swiden_high(a);
|
2146
|
+
let b_high = builder.ins().swiden_high(b);
|
2147
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2148
|
+
}
|
2149
|
+
Operator::I64x2ExtMulLowI32x4U => {
|
2150
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
2151
|
+
let a_low = builder.ins().uwiden_low(a);
|
2152
|
+
let b_low = builder.ins().uwiden_low(b);
|
2153
|
+
state.push1(builder.ins().imul(a_low, b_low));
|
2154
|
+
}
|
2155
|
+
Operator::I64x2ExtMulHighI32x4U => {
|
2156
|
+
let (a, b) = pop2_with_bitcast(state, I32X4, builder);
|
2157
|
+
let a_high = builder.ins().uwiden_high(a);
|
2158
|
+
let b_high = builder.ins().uwiden_high(b);
|
2159
|
+
state.push1(builder.ins().imul(a_high, b_high));
|
2160
|
+
}
|
2161
|
+
Operator::ReturnCall { .. } | Operator::ReturnCallIndirect { .. } => {
|
2162
|
+
return Err(wasm_unsupported!("proposed tail-call operator {:?}", op));
|
2163
|
+
}
|
2164
|
+
Operator::MemoryDiscard { .. } => {
|
2165
|
+
return Err(wasm_unsupported!(
|
2166
|
+
"proposed memory-control operator {:?}",
|
2167
|
+
op
|
2168
|
+
));
|
2169
|
+
}
|
2170
|
+
|
2171
|
+
Operator::F32x4RelaxedMax | Operator::F64x2RelaxedMax => {
|
2172
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
2173
|
+
state.push1(
|
2174
|
+
if environ.relaxed_simd_deterministic() || !environ.is_x86() {
|
2175
|
+
// Deterministic semantics match the `fmax` instruction, or
|
2176
|
+
// the `fAAxBB.max` wasm instruction.
|
2177
|
+
builder.ins().fmax(a, b)
|
2178
|
+
} else {
|
2179
|
+
builder.ins().fmax_pseudo(a, b)
|
2180
|
+
},
|
2181
|
+
)
|
2182
|
+
}
|
2183
|
+
|
2184
|
+
Operator::F32x4RelaxedMin | Operator::F64x2RelaxedMin => {
|
2185
|
+
let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
|
2186
|
+
state.push1(
|
2187
|
+
if environ.relaxed_simd_deterministic() || !environ.is_x86() {
|
2188
|
+
// Deterministic semantics match the `fmin` instruction, or
|
2189
|
+
// the `fAAxBB.min` wasm instruction.
|
2190
|
+
builder.ins().fmin(a, b)
|
2191
|
+
} else {
|
2192
|
+
builder.ins().fmin_pseudo(a, b)
|
2193
|
+
},
|
2194
|
+
);
|
2195
|
+
}
|
2196
|
+
|
2197
|
+
Operator::I8x16RelaxedSwizzle => {
|
2198
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2199
|
+
state.push1(
|
2200
|
+
if environ.relaxed_simd_deterministic()
|
2201
|
+
|| !environ.use_x86_pshufb_for_relaxed_swizzle()
|
2202
|
+
{
|
2203
|
+
// Deterministic semantics match the `i8x16.swizzle`
|
2204
|
+
// instruction which is the CLIF `swizzle`.
|
2205
|
+
builder.ins().swizzle(a, b)
|
2206
|
+
} else {
|
2207
|
+
builder.ins().x86_pshufb(a, b)
|
2208
|
+
},
|
2209
|
+
);
|
2210
|
+
}
|
2211
|
+
|
2212
|
+
Operator::F32x4RelaxedMadd | Operator::F64x2RelaxedMadd => {
|
2213
|
+
let (a, b, c) = pop3_with_bitcast(state, type_of(op), builder);
|
2214
|
+
state.push1(
|
2215
|
+
if environ.relaxed_simd_deterministic() || environ.has_native_fma() {
|
2216
|
+
// Deterministic semantics are "fused multiply and add"
|
2217
|
+
// which the CLIF `fma` guarantees.
|
2218
|
+
builder.ins().fma(a, b, c)
|
2219
|
+
} else {
|
2220
|
+
let mul = builder.ins().fmul(a, b);
|
2221
|
+
builder.ins().fadd(mul, c)
|
2222
|
+
},
|
2223
|
+
);
|
2224
|
+
}
|
2225
|
+
Operator::F32x4RelaxedNmadd | Operator::F64x2RelaxedNmadd => {
|
2226
|
+
let (a, b, c) = pop3_with_bitcast(state, type_of(op), builder);
|
2227
|
+
let a = builder.ins().fneg(a);
|
2228
|
+
state.push1(
|
2229
|
+
if environ.relaxed_simd_deterministic() || environ.has_native_fma() {
|
2230
|
+
// Deterministic semantics are "fused multiply and add"
|
2231
|
+
// which the CLIF `fma` guarantees.
|
2232
|
+
builder.ins().fma(a, b, c)
|
2233
|
+
} else {
|
2234
|
+
let mul = builder.ins().fmul(a, b);
|
2235
|
+
builder.ins().fadd(mul, c)
|
2236
|
+
},
|
2237
|
+
);
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
Operator::I8x16RelaxedLaneselect
|
2241
|
+
| Operator::I16x8RelaxedLaneselect
|
2242
|
+
| Operator::I32x4RelaxedLaneselect
|
2243
|
+
| Operator::I64x2RelaxedLaneselect => {
|
2244
|
+
let ty = type_of(op);
|
2245
|
+
let (a, b, c) = pop3_with_bitcast(state, ty, builder);
|
2246
|
+
// Note that the variable swaps here are intentional due to
|
2247
|
+
// the difference of the order of the wasm op and the clif
|
2248
|
+
// op.
|
2249
|
+
state.push1(
|
2250
|
+
if environ.relaxed_simd_deterministic()
|
2251
|
+
|| !environ.use_x86_blendv_for_relaxed_laneselect(ty)
|
2252
|
+
{
|
2253
|
+
// Deterministic semantics are a `bitselect` along the lines
|
2254
|
+
// of the wasm `v128.bitselect` instruction.
|
2255
|
+
builder.ins().bitselect(c, a, b)
|
2256
|
+
} else {
|
2257
|
+
builder.ins().x86_blendv(c, a, b)
|
2258
|
+
},
|
2259
|
+
);
|
2260
|
+
}
|
2261
|
+
|
2262
|
+
Operator::I32x4RelaxedTruncF32x4S => {
|
2263
|
+
let a = pop1_with_bitcast(state, F32X4, builder);
|
2264
|
+
state.push1(
|
2265
|
+
if environ.relaxed_simd_deterministic() || !environ.is_x86() {
|
2266
|
+
// Deterministic semantics are to match the
|
2267
|
+
// `i32x4.trunc_sat_f32x4_s` instruction.
|
2268
|
+
builder.ins().fcvt_to_sint_sat(I32X4, a)
|
2269
|
+
} else {
|
2270
|
+
builder.ins().x86_cvtt2dq(I32X4, a)
|
2271
|
+
},
|
2272
|
+
)
|
2273
|
+
}
|
2274
|
+
Operator::I32x4RelaxedTruncF64x2SZero => {
|
2275
|
+
let a = pop1_with_bitcast(state, F64X2, builder);
|
2276
|
+
let converted_a = if environ.relaxed_simd_deterministic() || !environ.is_x86() {
|
2277
|
+
// Deterministic semantics are to match the
|
2278
|
+
// `i32x4.trunc_sat_f64x2_s_zero` instruction.
|
2279
|
+
builder.ins().fcvt_to_sint_sat(I64X2, a)
|
2280
|
+
} else {
|
2281
|
+
builder.ins().x86_cvtt2dq(I64X2, a)
|
2282
|
+
};
|
2283
|
+
let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
|
2284
|
+
let zero = builder.ins().vconst(I64X2, handle);
|
2285
|
+
|
2286
|
+
state.push1(builder.ins().snarrow(converted_a, zero));
|
2287
|
+
}
|
2288
|
+
Operator::I16x8RelaxedQ15mulrS => {
|
2289
|
+
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
2290
|
+
state.push1(
|
2291
|
+
if environ.relaxed_simd_deterministic()
|
2292
|
+
|| !environ.use_x86_pmulhrsw_for_relaxed_q15mul()
|
2293
|
+
{
|
2294
|
+
// Deterministic semantics are to match the
|
2295
|
+
// `i16x8.q15mulr_sat_s` instruction.
|
2296
|
+
builder.ins().sqmul_round_sat(a, b)
|
2297
|
+
} else {
|
2298
|
+
builder.ins().x86_pmulhrsw(a, b)
|
2299
|
+
},
|
2300
|
+
);
|
2301
|
+
}
|
2302
|
+
Operator::I16x8RelaxedDotI8x16I7x16S => {
|
2303
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2304
|
+
state.push1(
|
2305
|
+
if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() {
|
2306
|
+
// Deterministic semantics are to treat both operands as
|
2307
|
+
// signed integers and perform the dot product.
|
2308
|
+
let alo = builder.ins().swiden_low(a);
|
2309
|
+
let blo = builder.ins().swiden_low(b);
|
2310
|
+
let lo = builder.ins().imul(alo, blo);
|
2311
|
+
let ahi = builder.ins().swiden_high(a);
|
2312
|
+
let bhi = builder.ins().swiden_high(b);
|
2313
|
+
let hi = builder.ins().imul(ahi, bhi);
|
2314
|
+
builder.ins().iadd_pairwise(lo, hi)
|
2315
|
+
} else {
|
2316
|
+
builder.ins().x86_pmaddubsw(a, b)
|
2317
|
+
},
|
2318
|
+
);
|
2319
|
+
}
|
2320
|
+
|
2321
|
+
Operator::I32x4RelaxedDotI8x16I7x16AddS => {
|
2322
|
+
let c = pop1_with_bitcast(state, I32X4, builder);
|
2323
|
+
let (a, b) = pop2_with_bitcast(state, I8X16, builder);
|
2324
|
+
let dot =
|
2325
|
+
if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() {
|
2326
|
+
// Deterministic semantics are to treat both operands as
|
2327
|
+
// signed integers and perform the dot product.
|
2328
|
+
let alo = builder.ins().swiden_low(a);
|
2329
|
+
let blo = builder.ins().swiden_low(b);
|
2330
|
+
let lo = builder.ins().imul(alo, blo);
|
2331
|
+
let ahi = builder.ins().swiden_high(a);
|
2332
|
+
let bhi = builder.ins().swiden_high(b);
|
2333
|
+
let hi = builder.ins().imul(ahi, bhi);
|
2334
|
+
builder.ins().iadd_pairwise(lo, hi)
|
2335
|
+
} else {
|
2336
|
+
builder.ins().x86_pmaddubsw(a, b)
|
2337
|
+
};
|
2338
|
+
let dotlo = builder.ins().swiden_low(dot);
|
2339
|
+
let dothi = builder.ins().swiden_high(dot);
|
2340
|
+
let dot32 = builder.ins().iadd_pairwise(dotlo, dothi);
|
2341
|
+
state.push1(builder.ins().iadd(dot32, c));
|
2342
|
+
}
|
2343
|
+
|
2344
|
+
Operator::ReturnCallRef { type_index: _ } => {
|
2345
|
+
return Err(wasm_unsupported!(
|
2346
|
+
"proposed tail-call operator for function references {:?}",
|
2347
|
+
op
|
2348
|
+
));
|
2349
|
+
}
|
2350
|
+
Operator::BrOnNull { relative_depth } => {
|
2351
|
+
let r = state.pop1();
|
2352
|
+
let (br_destination, inputs) = translate_br_if_args(*relative_depth, state);
|
2353
|
+
let is_null = environ.translate_ref_is_null(builder.cursor(), r)?;
|
2354
|
+
let else_block = builder.create_block();
|
2355
|
+
canonicalise_brif(builder, is_null, br_destination, inputs, else_block, &[]);
|
2356
|
+
|
2357
|
+
builder.seal_block(else_block); // The only predecessor is the current block.
|
2358
|
+
builder.switch_to_block(else_block);
|
2359
|
+
state.push1(r);
|
2360
|
+
}
|
2361
|
+
Operator::BrOnNonNull { relative_depth } => {
|
2362
|
+
// We write this a bit differently from the spec to avoid an extra
|
2363
|
+
// block/branch and the typed accounting thereof. Instead of the
|
2364
|
+
// spec's approach, it's described as such:
|
2365
|
+
// Peek the value val from the stack.
|
2366
|
+
// If val is ref.null ht, then: pop the value val from the stack.
|
2367
|
+
// Else: Execute the instruction (br relative_depth).
|
2368
|
+
let is_null = environ.translate_ref_is_null(builder.cursor(), state.peek1())?;
|
2369
|
+
let (br_destination, inputs) = translate_br_if_args(*relative_depth, state);
|
2370
|
+
let else_block = builder.create_block();
|
2371
|
+
canonicalise_brif(builder, is_null, else_block, &[], br_destination, inputs);
|
2372
|
+
|
2373
|
+
// In the null case, pop the ref
|
2374
|
+
state.pop1();
|
2375
|
+
|
2376
|
+
builder.seal_block(else_block); // The only predecessor is the current block.
|
2377
|
+
|
2378
|
+
// The rest of the translation operates on our is null case, which is
|
2379
|
+
// currently an empty block
|
2380
|
+
builder.switch_to_block(else_block);
|
2381
|
+
}
|
2382
|
+
Operator::CallRef { type_index } => {
|
2383
|
+
// Get function signature
|
2384
|
+
// `index` is the index of the function's signature and `table_index` is the index of
|
2385
|
+
// the table to search the function in.
|
2386
|
+
let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
|
2387
|
+
let callee = state.pop1();
|
2388
|
+
|
2389
|
+
// Bitcast any vector arguments to their default type, I8X16, before calling.
|
2390
|
+
let args = state.peekn_mut(num_args);
|
2391
|
+
bitcast_wasm_params(environ, sigref, args, builder);
|
2392
|
+
|
2393
|
+
let call =
|
2394
|
+
environ.translate_call_ref(builder, sigref, callee, state.peekn(num_args))?;
|
2395
|
+
|
2396
|
+
let inst_results = builder.inst_results(call);
|
2397
|
+
debug_assert_eq!(
|
2398
|
+
inst_results.len(),
|
2399
|
+
builder.func.dfg.signatures[sigref].returns.len(),
|
2400
|
+
"translate_call_ref results should match the call signature"
|
2401
|
+
);
|
2402
|
+
state.popn(num_args);
|
2403
|
+
state.pushn(inst_results);
|
2404
|
+
}
|
2405
|
+
Operator::RefAsNonNull => {
|
2406
|
+
let r = state.pop1();
|
2407
|
+
let is_null = environ.translate_ref_is_null(builder.cursor(), r)?;
|
2408
|
+
builder.ins().trapnz(is_null, ir::TrapCode::NullReference);
|
2409
|
+
state.push1(r);
|
2410
|
+
}
|
2411
|
+
|
2412
|
+
Operator::I31New | Operator::I31GetS | Operator::I31GetU => {
|
2413
|
+
unimplemented!("GC operators not yet implemented")
|
2414
|
+
}
|
2415
|
+
};
|
2416
|
+
Ok(())
|
2417
|
+
}
|
2418
|
+
|
2419
|
+
// Clippy warns us of some fields we are deliberately ignoring
|
2420
|
+
#[cfg_attr(feature = "cargo-clippy", allow(clippy::unneeded_field_pattern))]
|
2421
|
+
/// Deals with a Wasm instruction located in an unreachable portion of the code. Most of them
|
2422
|
+
/// are dropped but special ones like `End` or `Else` signal the potential end of the unreachable
|
2423
|
+
/// portion so the translation state must be updated accordingly.
|
2424
|
+
fn translate_unreachable_operator<FE: FuncEnvironment + ?Sized>(
|
2425
|
+
validator: &FuncValidator<impl WasmModuleResources>,
|
2426
|
+
op: &Operator,
|
2427
|
+
builder: &mut FunctionBuilder,
|
2428
|
+
state: &mut FuncTranslationState,
|
2429
|
+
environ: &mut FE,
|
2430
|
+
) -> WasmResult<()> {
|
2431
|
+
debug_assert!(!state.reachable);
|
2432
|
+
match *op {
|
2433
|
+
Operator::If { blockty } => {
|
2434
|
+
// Push a placeholder control stack entry. The if isn't reachable,
|
2435
|
+
// so we don't have any branches anywhere.
|
2436
|
+
state.push_if(
|
2437
|
+
ir::Block::reserved_value(),
|
2438
|
+
ElseData::NoElse {
|
2439
|
+
branch_inst: ir::Inst::reserved_value(),
|
2440
|
+
placeholder: ir::Block::reserved_value(),
|
2441
|
+
},
|
2442
|
+
0,
|
2443
|
+
0,
|
2444
|
+
blockty,
|
2445
|
+
);
|
2446
|
+
}
|
2447
|
+
Operator::Loop { blockty: _ } | Operator::Block { blockty: _ } => {
|
2448
|
+
state.push_block(ir::Block::reserved_value(), 0, 0);
|
2449
|
+
}
|
2450
|
+
Operator::Else => {
|
2451
|
+
let i = state.control_stack.len() - 1;
|
2452
|
+
match state.control_stack[i] {
|
2453
|
+
ControlStackFrame::If {
|
2454
|
+
ref else_data,
|
2455
|
+
head_is_reachable,
|
2456
|
+
ref mut consequent_ends_reachable,
|
2457
|
+
blocktype,
|
2458
|
+
..
|
2459
|
+
} => {
|
2460
|
+
debug_assert!(consequent_ends_reachable.is_none());
|
2461
|
+
*consequent_ends_reachable = Some(state.reachable);
|
2462
|
+
|
2463
|
+
if head_is_reachable {
|
2464
|
+
// We have a branch from the head of the `if` to the `else`.
|
2465
|
+
state.reachable = true;
|
2466
|
+
|
2467
|
+
let else_block = match *else_data {
|
2468
|
+
ElseData::NoElse {
|
2469
|
+
branch_inst,
|
2470
|
+
placeholder,
|
2471
|
+
} => {
|
2472
|
+
let (params, _results) =
|
2473
|
+
blocktype_params_results(validator, blocktype)?;
|
2474
|
+
let else_block = block_with_params(builder, params, environ)?;
|
2475
|
+
let frame = state.control_stack.last().unwrap();
|
2476
|
+
frame.truncate_value_stack_to_else_params(&mut state.stack);
|
2477
|
+
|
2478
|
+
// We change the target of the branch instruction.
|
2479
|
+
builder.change_jump_destination(
|
2480
|
+
branch_inst,
|
2481
|
+
placeholder,
|
2482
|
+
else_block,
|
2483
|
+
);
|
2484
|
+
builder.seal_block(else_block);
|
2485
|
+
else_block
|
2486
|
+
}
|
2487
|
+
ElseData::WithElse { else_block } => {
|
2488
|
+
let frame = state.control_stack.last().unwrap();
|
2489
|
+
frame.truncate_value_stack_to_else_params(&mut state.stack);
|
2490
|
+
else_block
|
2491
|
+
}
|
2492
|
+
};
|
2493
|
+
|
2494
|
+
builder.switch_to_block(else_block);
|
2495
|
+
|
2496
|
+
// Again, no need to push the parameters for the `else`,
|
2497
|
+
// since we already did when we saw the original `if`. See
|
2498
|
+
// the comment for translating `Operator::Else` in
|
2499
|
+
// `translate_operator` for details.
|
2500
|
+
}
|
2501
|
+
}
|
2502
|
+
_ => unreachable!(),
|
2503
|
+
}
|
2504
|
+
}
|
2505
|
+
Operator::End => {
|
2506
|
+
let stack = &mut state.stack;
|
2507
|
+
let control_stack = &mut state.control_stack;
|
2508
|
+
let frame = control_stack.pop().unwrap();
|
2509
|
+
|
2510
|
+
// Pop unused parameters from stack.
|
2511
|
+
frame.truncate_value_stack_to_original_size(stack);
|
2512
|
+
|
2513
|
+
let reachable_anyway = match frame {
|
2514
|
+
// If it is a loop we also have to seal the body loop block
|
2515
|
+
ControlStackFrame::Loop { header, .. } => {
|
2516
|
+
builder.seal_block(header);
|
2517
|
+
// And loops can't have branches to the end.
|
2518
|
+
false
|
2519
|
+
}
|
2520
|
+
// If we never set `consequent_ends_reachable` then that means
|
2521
|
+
// we are finishing the consequent now, and there was no
|
2522
|
+
// `else`. Whether the following block is reachable depends only
|
2523
|
+
// on if the head was reachable.
|
2524
|
+
ControlStackFrame::If {
|
2525
|
+
head_is_reachable,
|
2526
|
+
consequent_ends_reachable: None,
|
2527
|
+
..
|
2528
|
+
} => head_is_reachable,
|
2529
|
+
// Since we are only in this function when in unreachable code,
|
2530
|
+
// we know that the alternative just ended unreachable. Whether
|
2531
|
+
// the following block is reachable depends on if the consequent
|
2532
|
+
// ended reachable or not.
|
2533
|
+
ControlStackFrame::If {
|
2534
|
+
head_is_reachable,
|
2535
|
+
consequent_ends_reachable: Some(consequent_ends_reachable),
|
2536
|
+
..
|
2537
|
+
} => head_is_reachable && consequent_ends_reachable,
|
2538
|
+
// All other control constructs are already handled.
|
2539
|
+
_ => false,
|
2540
|
+
};
|
2541
|
+
|
2542
|
+
if frame.exit_is_branched_to() || reachable_anyway {
|
2543
|
+
builder.switch_to_block(frame.following_code());
|
2544
|
+
builder.seal_block(frame.following_code());
|
2545
|
+
|
2546
|
+
// And add the return values of the block but only if the next block is reachable
|
2547
|
+
// (which corresponds to testing if the stack depth is 1)
|
2548
|
+
stack.extend_from_slice(builder.block_params(frame.following_code()));
|
2549
|
+
state.reachable = true;
|
2550
|
+
}
|
2551
|
+
}
|
2552
|
+
_ => {
|
2553
|
+
// We don't translate because this is unreachable code
|
2554
|
+
}
|
2555
|
+
}
|
2556
|
+
|
2557
|
+
Ok(())
|
2558
|
+
}
|
2559
|
+
|
2560
|
+
/// This function is a generalized helper for validating that a wasm-supplied
|
2561
|
+
/// heap address is in-bounds.
|
2562
|
+
///
|
2563
|
+
/// This function takes a litany of parameters and requires that the *Wasm*
|
2564
|
+
/// address to be verified is at the top of the stack in `state`. This will
|
2565
|
+
/// generate necessary IR to validate that the heap address is correctly
|
2566
|
+
/// in-bounds, and various parameters are returned describing the valid *native*
|
2567
|
+
/// heap address if execution reaches that point.
|
2568
|
+
///
|
2569
|
+
/// Returns `None` when the Wasm access will unconditionally trap.
|
2570
|
+
fn prepare_addr<FE>(
|
2571
|
+
memarg: &MemArg,
|
2572
|
+
access_size: u8,
|
2573
|
+
builder: &mut FunctionBuilder,
|
2574
|
+
state: &mut FuncTranslationState,
|
2575
|
+
environ: &mut FE,
|
2576
|
+
) -> WasmResult<Reachability<(MemFlags, Value)>>
|
2577
|
+
where
|
2578
|
+
FE: FuncEnvironment + ?Sized,
|
2579
|
+
{
|
2580
|
+
let index = state.pop1();
|
2581
|
+
let heap = state.get_heap(builder.func, memarg.memory, environ)?;
|
2582
|
+
|
2583
|
+
// How exactly the bounds check is performed here and what it's performed
|
2584
|
+
// on is a bit tricky. Generally we want to rely on access violations (e.g.
|
2585
|
+
// segfaults) to generate traps since that means we don't have to bounds
|
2586
|
+
// check anything explicitly.
|
2587
|
+
//
|
2588
|
+
// (1) If we don't have a guard page of unmapped memory, though, then we
|
2589
|
+
// can't rely on this trapping behavior through segfaults. Instead we need
|
2590
|
+
// to bounds-check the entire memory access here which is everything from
|
2591
|
+
// `addr32 + offset` to `addr32 + offset + width` (not inclusive). In this
|
2592
|
+
// scenario our adjusted offset that we're checking is `memarg.offset +
|
2593
|
+
// access_size`. Note that we do saturating arithmetic here to avoid
|
2594
|
+
// overflow. THe addition here is in the 64-bit space, which means that
|
2595
|
+
// we'll never overflow for 32-bit wasm but for 64-bit this is an issue. If
|
2596
|
+
// our effective offset is u64::MAX though then it's impossible for for
|
2597
|
+
// that to actually be a valid offset because otherwise the wasm linear
|
2598
|
+
// memory would take all of the host memory!
|
2599
|
+
//
|
2600
|
+
// (2) If we have a guard page, however, then we can perform a further
|
2601
|
+
// optimization of the generated code by only checking multiples of the
|
2602
|
+
// offset-guard size to be more CSE-friendly. Knowing that we have at least
|
2603
|
+
// 1 page of a guard page we're then able to disregard the `width` since we
|
2604
|
+
// know it's always less than one page. Our bounds check will be for the
|
2605
|
+
// first byte which will either succeed and be guaranteed to fault if it's
|
2606
|
+
// actually out of bounds, or the bounds check itself will fail. In any case
|
2607
|
+
// we assert that the width is reasonably small for now so this assumption
|
2608
|
+
// can be adjusted in the future if we get larger widths.
|
2609
|
+
//
|
2610
|
+
// Put another way we can say, where `y < offset_guard_size`:
|
2611
|
+
//
|
2612
|
+
// n * offset_guard_size + y = offset
|
2613
|
+
//
|
2614
|
+
// We'll then pass `n * offset_guard_size` as the bounds check value. If
|
2615
|
+
// this traps then our `offset` would have trapped anyway. If this check
|
2616
|
+
// passes we know
|
2617
|
+
//
|
2618
|
+
// addr32 + n * offset_guard_size < bound
|
2619
|
+
//
|
2620
|
+
// which means
|
2621
|
+
//
|
2622
|
+
// addr32 + n * offset_guard_size + y < bound + offset_guard_size
|
2623
|
+
//
|
2624
|
+
// because `y < offset_guard_size`, which then means:
|
2625
|
+
//
|
2626
|
+
// addr32 + offset < bound + offset_guard_size
|
2627
|
+
//
|
2628
|
+
// Since we know that that guard size bytes are all unmapped we're
|
2629
|
+
// guaranteed that `offset` and the `width` bytes after it are either
|
2630
|
+
// in-bounds or will hit the guard page, meaning we'll get the desired
|
2631
|
+
// semantics we want.
|
2632
|
+
//
|
2633
|
+
// ---
|
2634
|
+
//
|
2635
|
+
// With all that in mind remember that the goal is to bounds check as few
|
2636
|
+
// things as possible. To facilitate this the "fast path" is expected to be
|
2637
|
+
// hit like so:
|
2638
|
+
//
|
2639
|
+
// * For wasm32, wasmtime defaults to 4gb "static" memories with 2gb guard
|
2640
|
+
// regions. This means that for all offsets <=2gb, we hit the optimized
|
2641
|
+
// case for `heap_addr` on static memories 4gb in size in cranelift's
|
2642
|
+
// legalization of `heap_addr`, eliding the bounds check entirely.
|
2643
|
+
//
|
2644
|
+
// * For wasm64 offsets <=2gb will generate a single `heap_addr`
|
2645
|
+
// instruction, but at this time all heaps are "dyanmic" which means that
|
2646
|
+
// a single bounds check is forced. Ideally we'd do better here, but
|
2647
|
+
// that's the current state of affairs.
|
2648
|
+
//
|
2649
|
+
// Basically we assume that most configurations have a guard page and most
|
2650
|
+
// offsets in `memarg` are <=2gb, which means we get the fast path of one
|
2651
|
+
// `heap_addr` instruction plus a hardcoded i32-offset in memory-related
|
2652
|
+
// instructions.
|
2653
|
+
let heap = environ.heaps()[heap].clone();
|
2654
|
+
let addr = match u32::try_from(memarg.offset) {
|
2655
|
+
// If our offset fits within a u32, then we can place the it into the
|
2656
|
+
// offset immediate of the `heap_addr` instruction.
|
2657
|
+
Ok(offset) => bounds_checks::bounds_check_and_compute_addr(
|
2658
|
+
builder,
|
2659
|
+
environ,
|
2660
|
+
&heap,
|
2661
|
+
index,
|
2662
|
+
offset,
|
2663
|
+
access_size,
|
2664
|
+
)?,
|
2665
|
+
|
2666
|
+
// If the offset doesn't fit within a u32, then we can't pass it
|
2667
|
+
// directly into `heap_addr`.
|
2668
|
+
//
|
2669
|
+
// One reasonable question you might ask is "why not?". There's no
|
2670
|
+
// fundamental reason why `heap_addr` *must* take a 32-bit offset. The
|
2671
|
+
// reason this isn't done, though, is that blindly changing the offset
|
2672
|
+
// to a 64-bit offset increases the size of the `InstructionData` enum
|
2673
|
+
// in cranelift by 8 bytes (16 to 24). This can have significant
|
2674
|
+
// performance implications so the conclusion when this was written was
|
2675
|
+
// that we shouldn't do that.
|
2676
|
+
//
|
2677
|
+
// Without the ability to put the whole offset into the `heap_addr`
|
2678
|
+
// instruction we need to fold the offset into the address itself with
|
2679
|
+
// an unsigned addition. In doing so though we need to check for
|
2680
|
+
// overflow because that would mean the address is out-of-bounds (wasm
|
2681
|
+
// bounds checks happen on the effective 33 or 65 bit address once the
|
2682
|
+
// offset is factored in).
|
2683
|
+
//
|
2684
|
+
// Once we have the effective address, offset already folded in, then
|
2685
|
+
// `heap_addr` is used to verify that the address is indeed in-bounds.
|
2686
|
+
//
|
2687
|
+
// Note that this is generating what's likely to be at least two
|
2688
|
+
// branches, one for the overflow and one for the bounds check itself.
|
2689
|
+
// For now though that should hopefully be ok since 4gb+ offsets are
|
2690
|
+
// relatively odd/rare. In the future if needed we can look into
|
2691
|
+
// optimizing this more.
|
2692
|
+
Err(_) => {
|
2693
|
+
let offset = builder.ins().iconst(heap.index_type, memarg.offset as i64);
|
2694
|
+
let adjusted_index =
|
2695
|
+
builder
|
2696
|
+
.ins()
|
2697
|
+
.uadd_overflow_trap(index, offset, ir::TrapCode::HeapOutOfBounds);
|
2698
|
+
bounds_checks::bounds_check_and_compute_addr(
|
2699
|
+
builder,
|
2700
|
+
environ,
|
2701
|
+
&heap,
|
2702
|
+
adjusted_index,
|
2703
|
+
0,
|
2704
|
+
access_size,
|
2705
|
+
)?
|
2706
|
+
}
|
2707
|
+
};
|
2708
|
+
let addr = match addr {
|
2709
|
+
Reachability::Unreachable => return Ok(Reachability::Unreachable),
|
2710
|
+
Reachability::Reachable(a) => a,
|
2711
|
+
};
|
2712
|
+
|
2713
|
+
// Note that we don't set `is_aligned` here, even if the load instruction's
|
2714
|
+
// alignment immediate may says it's aligned, because WebAssembly's
|
2715
|
+
// immediate field is just a hint, while Cranelift's aligned flag needs a
|
2716
|
+
// guarantee. WebAssembly memory accesses are always little-endian.
|
2717
|
+
let mut flags = MemFlags::new();
|
2718
|
+
flags.set_endianness(ir::Endianness::Little);
|
2719
|
+
|
2720
|
+
// The access occurs to the `heap` disjoint category of abstract
|
2721
|
+
// state. This may allow alias analysis to merge redundant loads,
|
2722
|
+
// etc. when heap accesses occur interleaved with other (table,
|
2723
|
+
// vmctx, stack) accesses.
|
2724
|
+
flags.set_heap();
|
2725
|
+
|
2726
|
+
Ok(Reachability::Reachable((flags, addr)))
|
2727
|
+
}
|
2728
|
+
|
2729
|
+
fn align_atomic_addr(
|
2730
|
+
memarg: &MemArg,
|
2731
|
+
loaded_bytes: u8,
|
2732
|
+
builder: &mut FunctionBuilder,
|
2733
|
+
state: &mut FuncTranslationState,
|
2734
|
+
) {
|
2735
|
+
// Atomic addresses must all be aligned correctly, and for now we check
|
2736
|
+
// alignment before we check out-of-bounds-ness. The order of this check may
|
2737
|
+
// need to be updated depending on the outcome of the official threads
|
2738
|
+
// proposal itself.
|
2739
|
+
//
|
2740
|
+
// Note that with an offset>0 we generate an `iadd_imm` where the result is
|
2741
|
+
// thrown away after the offset check. This may truncate the offset and the
|
2742
|
+
// result may overflow as well, but those conditions won't affect the
|
2743
|
+
// alignment check itself. This can probably be optimized better and we
|
2744
|
+
// should do so in the future as well.
|
2745
|
+
if loaded_bytes > 1 {
|
2746
|
+
let addr = state.pop1(); // "peek" via pop then push
|
2747
|
+
state.push1(addr);
|
2748
|
+
let effective_addr = if memarg.offset == 0 {
|
2749
|
+
addr
|
2750
|
+
} else {
|
2751
|
+
builder
|
2752
|
+
.ins()
|
2753
|
+
.iadd_imm(addr, i64::from(memarg.offset as i32))
|
2754
|
+
};
|
2755
|
+
debug_assert!(loaded_bytes.is_power_of_two());
|
2756
|
+
let misalignment = builder
|
2757
|
+
.ins()
|
2758
|
+
.band_imm(effective_addr, i64::from(loaded_bytes - 1));
|
2759
|
+
let f = builder.ins().icmp_imm(IntCC::NotEqual, misalignment, 0);
|
2760
|
+
builder.ins().trapnz(f, ir::TrapCode::HeapMisaligned);
|
2761
|
+
}
|
2762
|
+
}
|
2763
|
+
|
2764
|
+
/// Like `prepare_addr` but for atomic accesses.
|
2765
|
+
///
|
2766
|
+
/// Returns `None` when the Wasm access will unconditionally trap.
|
2767
|
+
fn prepare_atomic_addr<FE: FuncEnvironment + ?Sized>(
|
2768
|
+
memarg: &MemArg,
|
2769
|
+
loaded_bytes: u8,
|
2770
|
+
builder: &mut FunctionBuilder,
|
2771
|
+
state: &mut FuncTranslationState,
|
2772
|
+
environ: &mut FE,
|
2773
|
+
) -> WasmResult<Reachability<(MemFlags, Value)>> {
|
2774
|
+
align_atomic_addr(memarg, loaded_bytes, builder, state);
|
2775
|
+
prepare_addr(memarg, loaded_bytes, builder, state, environ)
|
2776
|
+
}
|
2777
|
+
|
2778
|
+
/// Like `Option<T>` but specifically for passing information about transitions
|
2779
|
+
/// from reachable to unreachable state and the like from callees to callers.
|
2780
|
+
///
|
2781
|
+
/// Marked `must_use` to force callers to update
|
2782
|
+
/// `FuncTranslationState::reachable` as necessary.
|
2783
|
+
#[derive(PartialEq, Eq)]
|
2784
|
+
#[must_use]
|
2785
|
+
pub enum Reachability<T> {
|
2786
|
+
/// The Wasm execution state is reachable, here is a `T`.
|
2787
|
+
Reachable(T),
|
2788
|
+
/// The Wasm execution state has been determined to be statically
|
2789
|
+
/// unreachable. It is the receiver of this value's responsibility to update
|
2790
|
+
/// `FuncTranslationState::reachable` as necessary.
|
2791
|
+
Unreachable,
|
2792
|
+
}
|
2793
|
+
|
2794
|
+
/// Translate a load instruction.
|
2795
|
+
///
|
2796
|
+
/// Returns the execution state's reachability after the load is translated.
|
2797
|
+
fn translate_load<FE: FuncEnvironment + ?Sized>(
|
2798
|
+
memarg: &MemArg,
|
2799
|
+
opcode: ir::Opcode,
|
2800
|
+
result_ty: Type,
|
2801
|
+
builder: &mut FunctionBuilder,
|
2802
|
+
state: &mut FuncTranslationState,
|
2803
|
+
environ: &mut FE,
|
2804
|
+
) -> WasmResult<Reachability<()>> {
|
2805
|
+
let (flags, base) = match prepare_addr(
|
2806
|
+
memarg,
|
2807
|
+
mem_op_size(opcode, result_ty),
|
2808
|
+
builder,
|
2809
|
+
state,
|
2810
|
+
environ,
|
2811
|
+
)? {
|
2812
|
+
Reachability::Unreachable => return Ok(Reachability::Unreachable),
|
2813
|
+
Reachability::Reachable((f, b)) => (f, b),
|
2814
|
+
};
|
2815
|
+
let (load, dfg) = builder
|
2816
|
+
.ins()
|
2817
|
+
.Load(opcode, result_ty, flags, Offset32::new(0), base);
|
2818
|
+
state.push1(dfg.first_result(load));
|
2819
|
+
Ok(Reachability::Reachable(()))
|
2820
|
+
}
|
2821
|
+
|
2822
|
+
/// Translate a store instruction.
|
2823
|
+
fn translate_store<FE: FuncEnvironment + ?Sized>(
|
2824
|
+
memarg: &MemArg,
|
2825
|
+
opcode: ir::Opcode,
|
2826
|
+
builder: &mut FunctionBuilder,
|
2827
|
+
state: &mut FuncTranslationState,
|
2828
|
+
environ: &mut FE,
|
2829
|
+
) -> WasmResult<()> {
|
2830
|
+
let val = state.pop1();
|
2831
|
+
let val_ty = builder.func.dfg.value_type(val);
|
2832
|
+
|
2833
|
+
let (flags, base) = unwrap_or_return_unreachable_state!(
|
2834
|
+
state,
|
2835
|
+
prepare_addr(memarg, mem_op_size(opcode, val_ty), builder, state, environ)?
|
2836
|
+
);
|
2837
|
+
builder
|
2838
|
+
.ins()
|
2839
|
+
.Store(opcode, val_ty, flags, Offset32::new(0), val, base);
|
2840
|
+
Ok(())
|
2841
|
+
}
|
2842
|
+
|
2843
|
+
fn mem_op_size(opcode: ir::Opcode, ty: Type) -> u8 {
|
2844
|
+
match opcode {
|
2845
|
+
ir::Opcode::Istore8 | ir::Opcode::Sload8 | ir::Opcode::Uload8 => 1,
|
2846
|
+
ir::Opcode::Istore16 | ir::Opcode::Sload16 | ir::Opcode::Uload16 => 2,
|
2847
|
+
ir::Opcode::Istore32 | ir::Opcode::Sload32 | ir::Opcode::Uload32 => 4,
|
2848
|
+
ir::Opcode::Store | ir::Opcode::Load => u8::try_from(ty.bytes()).unwrap(),
|
2849
|
+
_ => panic!("unknown size of mem op for {:?}", opcode),
|
2850
|
+
}
|
2851
|
+
}
|
2852
|
+
|
2853
|
+
fn translate_icmp(cc: IntCC, builder: &mut FunctionBuilder, state: &mut FuncTranslationState) {
|
2854
|
+
let (arg0, arg1) = state.pop2();
|
2855
|
+
let val = builder.ins().icmp(cc, arg0, arg1);
|
2856
|
+
state.push1(builder.ins().uextend(I32, val));
|
2857
|
+
}
|
2858
|
+
|
2859
|
+
fn translate_atomic_rmw<FE: FuncEnvironment + ?Sized>(
|
2860
|
+
widened_ty: Type,
|
2861
|
+
access_ty: Type,
|
2862
|
+
op: AtomicRmwOp,
|
2863
|
+
memarg: &MemArg,
|
2864
|
+
builder: &mut FunctionBuilder,
|
2865
|
+
state: &mut FuncTranslationState,
|
2866
|
+
environ: &mut FE,
|
2867
|
+
) -> WasmResult<()> {
|
2868
|
+
let mut arg2 = state.pop1();
|
2869
|
+
let arg2_ty = builder.func.dfg.value_type(arg2);
|
2870
|
+
|
2871
|
+
// The operation is performed at type `access_ty`, and the old value is zero-extended
|
2872
|
+
// to type `widened_ty`.
|
2873
|
+
match access_ty {
|
2874
|
+
I8 | I16 | I32 | I64 => {}
|
2875
|
+
_ => {
|
2876
|
+
return Err(wasm_unsupported!(
|
2877
|
+
"atomic_rmw: unsupported access type {:?}",
|
2878
|
+
access_ty
|
2879
|
+
))
|
2880
|
+
}
|
2881
|
+
};
|
2882
|
+
let w_ty_ok = match widened_ty {
|
2883
|
+
I32 | I64 => true,
|
2884
|
+
_ => false,
|
2885
|
+
};
|
2886
|
+
assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
|
2887
|
+
|
2888
|
+
assert!(arg2_ty.bytes() >= access_ty.bytes());
|
2889
|
+
if arg2_ty.bytes() > access_ty.bytes() {
|
2890
|
+
arg2 = builder.ins().ireduce(access_ty, arg2);
|
2891
|
+
}
|
2892
|
+
|
2893
|
+
let (flags, addr) = unwrap_or_return_unreachable_state!(
|
2894
|
+
state,
|
2895
|
+
prepare_atomic_addr(
|
2896
|
+
memarg,
|
2897
|
+
u8::try_from(access_ty.bytes()).unwrap(),
|
2898
|
+
builder,
|
2899
|
+
state,
|
2900
|
+
environ,
|
2901
|
+
)?
|
2902
|
+
);
|
2903
|
+
|
2904
|
+
let mut res = builder.ins().atomic_rmw(access_ty, flags, op, addr, arg2);
|
2905
|
+
if access_ty != widened_ty {
|
2906
|
+
res = builder.ins().uextend(widened_ty, res);
|
2907
|
+
}
|
2908
|
+
state.push1(res);
|
2909
|
+
Ok(())
|
2910
|
+
}
|
2911
|
+
|
2912
|
+
fn translate_atomic_cas<FE: FuncEnvironment + ?Sized>(
|
2913
|
+
widened_ty: Type,
|
2914
|
+
access_ty: Type,
|
2915
|
+
memarg: &MemArg,
|
2916
|
+
builder: &mut FunctionBuilder,
|
2917
|
+
state: &mut FuncTranslationState,
|
2918
|
+
environ: &mut FE,
|
2919
|
+
) -> WasmResult<()> {
|
2920
|
+
let (mut expected, mut replacement) = state.pop2();
|
2921
|
+
let expected_ty = builder.func.dfg.value_type(expected);
|
2922
|
+
let replacement_ty = builder.func.dfg.value_type(replacement);
|
2923
|
+
|
2924
|
+
// The compare-and-swap is performed at type `access_ty`, and the old value is zero-extended
|
2925
|
+
// to type `widened_ty`.
|
2926
|
+
match access_ty {
|
2927
|
+
I8 | I16 | I32 | I64 => {}
|
2928
|
+
_ => {
|
2929
|
+
return Err(wasm_unsupported!(
|
2930
|
+
"atomic_cas: unsupported access type {:?}",
|
2931
|
+
access_ty
|
2932
|
+
))
|
2933
|
+
}
|
2934
|
+
};
|
2935
|
+
let w_ty_ok = match widened_ty {
|
2936
|
+
I32 | I64 => true,
|
2937
|
+
_ => false,
|
2938
|
+
};
|
2939
|
+
assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
|
2940
|
+
|
2941
|
+
assert!(expected_ty.bytes() >= access_ty.bytes());
|
2942
|
+
if expected_ty.bytes() > access_ty.bytes() {
|
2943
|
+
expected = builder.ins().ireduce(access_ty, expected);
|
2944
|
+
}
|
2945
|
+
assert!(replacement_ty.bytes() >= access_ty.bytes());
|
2946
|
+
if replacement_ty.bytes() > access_ty.bytes() {
|
2947
|
+
replacement = builder.ins().ireduce(access_ty, replacement);
|
2948
|
+
}
|
2949
|
+
|
2950
|
+
let (flags, addr) = unwrap_or_return_unreachable_state!(
|
2951
|
+
state,
|
2952
|
+
prepare_atomic_addr(
|
2953
|
+
memarg,
|
2954
|
+
u8::try_from(access_ty.bytes()).unwrap(),
|
2955
|
+
builder,
|
2956
|
+
state,
|
2957
|
+
environ,
|
2958
|
+
)?
|
2959
|
+
);
|
2960
|
+
let mut res = builder.ins().atomic_cas(flags, addr, expected, replacement);
|
2961
|
+
if access_ty != widened_ty {
|
2962
|
+
res = builder.ins().uextend(widened_ty, res);
|
2963
|
+
}
|
2964
|
+
state.push1(res);
|
2965
|
+
Ok(())
|
2966
|
+
}
|
2967
|
+
|
2968
|
+
fn translate_atomic_load<FE: FuncEnvironment + ?Sized>(
|
2969
|
+
widened_ty: Type,
|
2970
|
+
access_ty: Type,
|
2971
|
+
memarg: &MemArg,
|
2972
|
+
builder: &mut FunctionBuilder,
|
2973
|
+
state: &mut FuncTranslationState,
|
2974
|
+
environ: &mut FE,
|
2975
|
+
) -> WasmResult<()> {
|
2976
|
+
// The load is performed at type `access_ty`, and the loaded value is zero extended
|
2977
|
+
// to `widened_ty`.
|
2978
|
+
match access_ty {
|
2979
|
+
I8 | I16 | I32 | I64 => {}
|
2980
|
+
_ => {
|
2981
|
+
return Err(wasm_unsupported!(
|
2982
|
+
"atomic_load: unsupported access type {:?}",
|
2983
|
+
access_ty
|
2984
|
+
))
|
2985
|
+
}
|
2986
|
+
};
|
2987
|
+
let w_ty_ok = match widened_ty {
|
2988
|
+
I32 | I64 => true,
|
2989
|
+
_ => false,
|
2990
|
+
};
|
2991
|
+
assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
|
2992
|
+
|
2993
|
+
let (flags, addr) = unwrap_or_return_unreachable_state!(
|
2994
|
+
state,
|
2995
|
+
prepare_atomic_addr(
|
2996
|
+
memarg,
|
2997
|
+
u8::try_from(access_ty.bytes()).unwrap(),
|
2998
|
+
builder,
|
2999
|
+
state,
|
3000
|
+
environ,
|
3001
|
+
)?
|
3002
|
+
);
|
3003
|
+
let mut res = builder.ins().atomic_load(access_ty, flags, addr);
|
3004
|
+
if access_ty != widened_ty {
|
3005
|
+
res = builder.ins().uextend(widened_ty, res);
|
3006
|
+
}
|
3007
|
+
state.push1(res);
|
3008
|
+
Ok(())
|
3009
|
+
}
|
3010
|
+
|
3011
|
+
fn translate_atomic_store<FE: FuncEnvironment + ?Sized>(
|
3012
|
+
access_ty: Type,
|
3013
|
+
memarg: &MemArg,
|
3014
|
+
builder: &mut FunctionBuilder,
|
3015
|
+
state: &mut FuncTranslationState,
|
3016
|
+
environ: &mut FE,
|
3017
|
+
) -> WasmResult<()> {
|
3018
|
+
let mut data = state.pop1();
|
3019
|
+
let data_ty = builder.func.dfg.value_type(data);
|
3020
|
+
|
3021
|
+
// The operation is performed at type `access_ty`, and the data to be stored may first
|
3022
|
+
// need to be narrowed accordingly.
|
3023
|
+
match access_ty {
|
3024
|
+
I8 | I16 | I32 | I64 => {}
|
3025
|
+
_ => {
|
3026
|
+
return Err(wasm_unsupported!(
|
3027
|
+
"atomic_store: unsupported access type {:?}",
|
3028
|
+
access_ty
|
3029
|
+
))
|
3030
|
+
}
|
3031
|
+
};
|
3032
|
+
let d_ty_ok = match data_ty {
|
3033
|
+
I32 | I64 => true,
|
3034
|
+
_ => false,
|
3035
|
+
};
|
3036
|
+
assert!(d_ty_ok && data_ty.bytes() >= access_ty.bytes());
|
3037
|
+
|
3038
|
+
if data_ty.bytes() > access_ty.bytes() {
|
3039
|
+
data = builder.ins().ireduce(access_ty, data);
|
3040
|
+
}
|
3041
|
+
|
3042
|
+
let (flags, addr) = unwrap_or_return_unreachable_state!(
|
3043
|
+
state,
|
3044
|
+
prepare_atomic_addr(
|
3045
|
+
memarg,
|
3046
|
+
u8::try_from(access_ty.bytes()).unwrap(),
|
3047
|
+
builder,
|
3048
|
+
state,
|
3049
|
+
environ,
|
3050
|
+
)?
|
3051
|
+
);
|
3052
|
+
builder.ins().atomic_store(flags, data, addr);
|
3053
|
+
Ok(())
|
3054
|
+
}
|
3055
|
+
|
3056
|
+
fn translate_vector_icmp(
|
3057
|
+
cc: IntCC,
|
3058
|
+
needed_type: Type,
|
3059
|
+
builder: &mut FunctionBuilder,
|
3060
|
+
state: &mut FuncTranslationState,
|
3061
|
+
) {
|
3062
|
+
let (a, b) = state.pop2();
|
3063
|
+
let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
|
3064
|
+
let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
|
3065
|
+
state.push1(builder.ins().icmp(cc, bitcast_a, bitcast_b))
|
3066
|
+
}
|
3067
|
+
|
3068
|
+
fn translate_fcmp(cc: FloatCC, builder: &mut FunctionBuilder, state: &mut FuncTranslationState) {
|
3069
|
+
let (arg0, arg1) = state.pop2();
|
3070
|
+
let val = builder.ins().fcmp(cc, arg0, arg1);
|
3071
|
+
state.push1(builder.ins().uextend(I32, val));
|
3072
|
+
}
|
3073
|
+
|
3074
|
+
fn translate_vector_fcmp(
|
3075
|
+
cc: FloatCC,
|
3076
|
+
needed_type: Type,
|
3077
|
+
builder: &mut FunctionBuilder,
|
3078
|
+
state: &mut FuncTranslationState,
|
3079
|
+
) {
|
3080
|
+
let (a, b) = state.pop2();
|
3081
|
+
let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
|
3082
|
+
let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
|
3083
|
+
state.push1(builder.ins().fcmp(cc, bitcast_a, bitcast_b))
|
3084
|
+
}
|
3085
|
+
|
3086
|
+
fn translate_br_if(
|
3087
|
+
relative_depth: u32,
|
3088
|
+
builder: &mut FunctionBuilder,
|
3089
|
+
state: &mut FuncTranslationState,
|
3090
|
+
) {
|
3091
|
+
let val = state.pop1();
|
3092
|
+
let (br_destination, inputs) = translate_br_if_args(relative_depth, state);
|
3093
|
+
let next_block = builder.create_block();
|
3094
|
+
canonicalise_brif(builder, val, br_destination, inputs, next_block, &[]);
|
3095
|
+
|
3096
|
+
builder.seal_block(next_block); // The only predecessor is the current block.
|
3097
|
+
builder.switch_to_block(next_block);
|
3098
|
+
}
|
3099
|
+
|
3100
|
+
fn translate_br_if_args(
|
3101
|
+
relative_depth: u32,
|
3102
|
+
state: &mut FuncTranslationState,
|
3103
|
+
) -> (ir::Block, &mut [ir::Value]) {
|
3104
|
+
let i = state.control_stack.len() - 1 - (relative_depth as usize);
|
3105
|
+
let (return_count, br_destination) = {
|
3106
|
+
let frame = &mut state.control_stack[i];
|
3107
|
+
// The values returned by the branch are still available for the reachable
|
3108
|
+
// code that comes after it
|
3109
|
+
frame.set_branched_to_exit();
|
3110
|
+
let return_count = if frame.is_loop() {
|
3111
|
+
frame.num_param_values()
|
3112
|
+
} else {
|
3113
|
+
frame.num_return_values()
|
3114
|
+
};
|
3115
|
+
(return_count, frame.br_destination())
|
3116
|
+
};
|
3117
|
+
let inputs = state.peekn_mut(return_count);
|
3118
|
+
(br_destination, inputs)
|
3119
|
+
}
|
3120
|
+
|
3121
|
+
/// Determine the returned value type of a WebAssembly operator
|
3122
|
+
fn type_of(operator: &Operator) -> Type {
|
3123
|
+
match operator {
|
3124
|
+
Operator::V128Load { .. }
|
3125
|
+
| Operator::V128Store { .. }
|
3126
|
+
| Operator::V128Const { .. }
|
3127
|
+
| Operator::V128Not
|
3128
|
+
| Operator::V128And
|
3129
|
+
| Operator::V128AndNot
|
3130
|
+
| Operator::V128Or
|
3131
|
+
| Operator::V128Xor
|
3132
|
+
| Operator::V128AnyTrue
|
3133
|
+
| Operator::V128Bitselect => I8X16, // default type representing V128
|
3134
|
+
|
3135
|
+
Operator::I8x16Shuffle { .. }
|
3136
|
+
| Operator::I8x16Splat
|
3137
|
+
| Operator::V128Load8Splat { .. }
|
3138
|
+
| Operator::V128Load8Lane { .. }
|
3139
|
+
| Operator::V128Store8Lane { .. }
|
3140
|
+
| Operator::I8x16ExtractLaneS { .. }
|
3141
|
+
| Operator::I8x16ExtractLaneU { .. }
|
3142
|
+
| Operator::I8x16ReplaceLane { .. }
|
3143
|
+
| Operator::I8x16Eq
|
3144
|
+
| Operator::I8x16Ne
|
3145
|
+
| Operator::I8x16LtS
|
3146
|
+
| Operator::I8x16LtU
|
3147
|
+
| Operator::I8x16GtS
|
3148
|
+
| Operator::I8x16GtU
|
3149
|
+
| Operator::I8x16LeS
|
3150
|
+
| Operator::I8x16LeU
|
3151
|
+
| Operator::I8x16GeS
|
3152
|
+
| Operator::I8x16GeU
|
3153
|
+
| Operator::I8x16Neg
|
3154
|
+
| Operator::I8x16Abs
|
3155
|
+
| Operator::I8x16AllTrue
|
3156
|
+
| Operator::I8x16Shl
|
3157
|
+
| Operator::I8x16ShrS
|
3158
|
+
| Operator::I8x16ShrU
|
3159
|
+
| Operator::I8x16Add
|
3160
|
+
| Operator::I8x16AddSatS
|
3161
|
+
| Operator::I8x16AddSatU
|
3162
|
+
| Operator::I8x16Sub
|
3163
|
+
| Operator::I8x16SubSatS
|
3164
|
+
| Operator::I8x16SubSatU
|
3165
|
+
| Operator::I8x16MinS
|
3166
|
+
| Operator::I8x16MinU
|
3167
|
+
| Operator::I8x16MaxS
|
3168
|
+
| Operator::I8x16MaxU
|
3169
|
+
| Operator::I8x16AvgrU
|
3170
|
+
| Operator::I8x16Bitmask
|
3171
|
+
| Operator::I8x16Popcnt
|
3172
|
+
| Operator::I8x16RelaxedLaneselect => I8X16,
|
3173
|
+
|
3174
|
+
Operator::I16x8Splat
|
3175
|
+
| Operator::V128Load16Splat { .. }
|
3176
|
+
| Operator::V128Load16Lane { .. }
|
3177
|
+
| Operator::V128Store16Lane { .. }
|
3178
|
+
| Operator::I16x8ExtractLaneS { .. }
|
3179
|
+
| Operator::I16x8ExtractLaneU { .. }
|
3180
|
+
| Operator::I16x8ReplaceLane { .. }
|
3181
|
+
| Operator::I16x8Eq
|
3182
|
+
| Operator::I16x8Ne
|
3183
|
+
| Operator::I16x8LtS
|
3184
|
+
| Operator::I16x8LtU
|
3185
|
+
| Operator::I16x8GtS
|
3186
|
+
| Operator::I16x8GtU
|
3187
|
+
| Operator::I16x8LeS
|
3188
|
+
| Operator::I16x8LeU
|
3189
|
+
| Operator::I16x8GeS
|
3190
|
+
| Operator::I16x8GeU
|
3191
|
+
| Operator::I16x8Neg
|
3192
|
+
| Operator::I16x8Abs
|
3193
|
+
| Operator::I16x8AllTrue
|
3194
|
+
| Operator::I16x8Shl
|
3195
|
+
| Operator::I16x8ShrS
|
3196
|
+
| Operator::I16x8ShrU
|
3197
|
+
| Operator::I16x8Add
|
3198
|
+
| Operator::I16x8AddSatS
|
3199
|
+
| Operator::I16x8AddSatU
|
3200
|
+
| Operator::I16x8Sub
|
3201
|
+
| Operator::I16x8SubSatS
|
3202
|
+
| Operator::I16x8SubSatU
|
3203
|
+
| Operator::I16x8MinS
|
3204
|
+
| Operator::I16x8MinU
|
3205
|
+
| Operator::I16x8MaxS
|
3206
|
+
| Operator::I16x8MaxU
|
3207
|
+
| Operator::I16x8AvgrU
|
3208
|
+
| Operator::I16x8Mul
|
3209
|
+
| Operator::I16x8Bitmask
|
3210
|
+
| Operator::I16x8RelaxedLaneselect => I16X8,
|
3211
|
+
|
3212
|
+
Operator::I32x4Splat
|
3213
|
+
| Operator::V128Load32Splat { .. }
|
3214
|
+
| Operator::V128Load32Lane { .. }
|
3215
|
+
| Operator::V128Store32Lane { .. }
|
3216
|
+
| Operator::I32x4ExtractLane { .. }
|
3217
|
+
| Operator::I32x4ReplaceLane { .. }
|
3218
|
+
| Operator::I32x4Eq
|
3219
|
+
| Operator::I32x4Ne
|
3220
|
+
| Operator::I32x4LtS
|
3221
|
+
| Operator::I32x4LtU
|
3222
|
+
| Operator::I32x4GtS
|
3223
|
+
| Operator::I32x4GtU
|
3224
|
+
| Operator::I32x4LeS
|
3225
|
+
| Operator::I32x4LeU
|
3226
|
+
| Operator::I32x4GeS
|
3227
|
+
| Operator::I32x4GeU
|
3228
|
+
| Operator::I32x4Neg
|
3229
|
+
| Operator::I32x4Abs
|
3230
|
+
| Operator::I32x4AllTrue
|
3231
|
+
| Operator::I32x4Shl
|
3232
|
+
| Operator::I32x4ShrS
|
3233
|
+
| Operator::I32x4ShrU
|
3234
|
+
| Operator::I32x4Add
|
3235
|
+
| Operator::I32x4Sub
|
3236
|
+
| Operator::I32x4Mul
|
3237
|
+
| Operator::I32x4MinS
|
3238
|
+
| Operator::I32x4MinU
|
3239
|
+
| Operator::I32x4MaxS
|
3240
|
+
| Operator::I32x4MaxU
|
3241
|
+
| Operator::I32x4Bitmask
|
3242
|
+
| Operator::I32x4TruncSatF32x4S
|
3243
|
+
| Operator::I32x4TruncSatF32x4U
|
3244
|
+
| Operator::I32x4RelaxedLaneselect
|
3245
|
+
| Operator::V128Load32Zero { .. } => I32X4,
|
3246
|
+
|
3247
|
+
Operator::I64x2Splat
|
3248
|
+
| Operator::V128Load64Splat { .. }
|
3249
|
+
| Operator::V128Load64Lane { .. }
|
3250
|
+
| Operator::V128Store64Lane { .. }
|
3251
|
+
| Operator::I64x2ExtractLane { .. }
|
3252
|
+
| Operator::I64x2ReplaceLane { .. }
|
3253
|
+
| Operator::I64x2Eq
|
3254
|
+
| Operator::I64x2Ne
|
3255
|
+
| Operator::I64x2LtS
|
3256
|
+
| Operator::I64x2GtS
|
3257
|
+
| Operator::I64x2LeS
|
3258
|
+
| Operator::I64x2GeS
|
3259
|
+
| Operator::I64x2Neg
|
3260
|
+
| Operator::I64x2Abs
|
3261
|
+
| Operator::I64x2AllTrue
|
3262
|
+
| Operator::I64x2Shl
|
3263
|
+
| Operator::I64x2ShrS
|
3264
|
+
| Operator::I64x2ShrU
|
3265
|
+
| Operator::I64x2Add
|
3266
|
+
| Operator::I64x2Sub
|
3267
|
+
| Operator::I64x2Mul
|
3268
|
+
| Operator::I64x2Bitmask
|
3269
|
+
| Operator::I64x2RelaxedLaneselect
|
3270
|
+
| Operator::V128Load64Zero { .. } => I64X2,
|
3271
|
+
|
3272
|
+
Operator::F32x4Splat
|
3273
|
+
| Operator::F32x4ExtractLane { .. }
|
3274
|
+
| Operator::F32x4ReplaceLane { .. }
|
3275
|
+
| Operator::F32x4Eq
|
3276
|
+
| Operator::F32x4Ne
|
3277
|
+
| Operator::F32x4Lt
|
3278
|
+
| Operator::F32x4Gt
|
3279
|
+
| Operator::F32x4Le
|
3280
|
+
| Operator::F32x4Ge
|
3281
|
+
| Operator::F32x4Abs
|
3282
|
+
| Operator::F32x4Neg
|
3283
|
+
| Operator::F32x4Sqrt
|
3284
|
+
| Operator::F32x4Add
|
3285
|
+
| Operator::F32x4Sub
|
3286
|
+
| Operator::F32x4Mul
|
3287
|
+
| Operator::F32x4Div
|
3288
|
+
| Operator::F32x4Min
|
3289
|
+
| Operator::F32x4Max
|
3290
|
+
| Operator::F32x4PMin
|
3291
|
+
| Operator::F32x4PMax
|
3292
|
+
| Operator::F32x4ConvertI32x4S
|
3293
|
+
| Operator::F32x4ConvertI32x4U
|
3294
|
+
| Operator::F32x4Ceil
|
3295
|
+
| Operator::F32x4Floor
|
3296
|
+
| Operator::F32x4Trunc
|
3297
|
+
| Operator::F32x4Nearest
|
3298
|
+
| Operator::F32x4RelaxedMax
|
3299
|
+
| Operator::F32x4RelaxedMin
|
3300
|
+
| Operator::F32x4RelaxedMadd
|
3301
|
+
| Operator::F32x4RelaxedNmadd => F32X4,
|
3302
|
+
|
3303
|
+
Operator::F64x2Splat
|
3304
|
+
| Operator::F64x2ExtractLane { .. }
|
3305
|
+
| Operator::F64x2ReplaceLane { .. }
|
3306
|
+
| Operator::F64x2Eq
|
3307
|
+
| Operator::F64x2Ne
|
3308
|
+
| Operator::F64x2Lt
|
3309
|
+
| Operator::F64x2Gt
|
3310
|
+
| Operator::F64x2Le
|
3311
|
+
| Operator::F64x2Ge
|
3312
|
+
| Operator::F64x2Abs
|
3313
|
+
| Operator::F64x2Neg
|
3314
|
+
| Operator::F64x2Sqrt
|
3315
|
+
| Operator::F64x2Add
|
3316
|
+
| Operator::F64x2Sub
|
3317
|
+
| Operator::F64x2Mul
|
3318
|
+
| Operator::F64x2Div
|
3319
|
+
| Operator::F64x2Min
|
3320
|
+
| Operator::F64x2Max
|
3321
|
+
| Operator::F64x2PMin
|
3322
|
+
| Operator::F64x2PMax
|
3323
|
+
| Operator::F64x2Ceil
|
3324
|
+
| Operator::F64x2Floor
|
3325
|
+
| Operator::F64x2Trunc
|
3326
|
+
| Operator::F64x2Nearest
|
3327
|
+
| Operator::F64x2RelaxedMax
|
3328
|
+
| Operator::F64x2RelaxedMin
|
3329
|
+
| Operator::F64x2RelaxedMadd
|
3330
|
+
| Operator::F64x2RelaxedNmadd => F64X2,
|
3331
|
+
|
3332
|
+
_ => unimplemented!(
|
3333
|
+
"Currently only SIMD instructions are mapped to their return type; the \
|
3334
|
+
following instruction is not mapped: {:?}",
|
3335
|
+
operator
|
3336
|
+
),
|
3337
|
+
}
|
3338
|
+
}
|
3339
|
+
|
3340
|
+
/// Some SIMD operations only operate on I8X16 in CLIF; this will convert them to that type by
|
3341
|
+
/// adding a bitcast if necessary.
|
3342
|
+
fn optionally_bitcast_vector(
|
3343
|
+
value: Value,
|
3344
|
+
needed_type: Type,
|
3345
|
+
builder: &mut FunctionBuilder,
|
3346
|
+
) -> Value {
|
3347
|
+
if builder.func.dfg.value_type(value) != needed_type {
|
3348
|
+
let mut flags = MemFlags::new();
|
3349
|
+
flags.set_endianness(ir::Endianness::Little);
|
3350
|
+
builder.ins().bitcast(needed_type, flags, value)
|
3351
|
+
} else {
|
3352
|
+
value
|
3353
|
+
}
|
3354
|
+
}
|
3355
|
+
|
3356
|
+
#[inline(always)]
|
3357
|
+
fn is_non_canonical_v128(ty: ir::Type) -> bool {
|
3358
|
+
match ty {
|
3359
|
+
I64X2 | I32X4 | I16X8 | F32X4 | F64X2 => true,
|
3360
|
+
_ => false,
|
3361
|
+
}
|
3362
|
+
}
|
3363
|
+
|
3364
|
+
/// Cast to I8X16, any vector values in `values` that are of "non-canonical" type (meaning, not
|
3365
|
+
/// I8X16), and return them in a slice. A pre-scan is made to determine whether any casts are
|
3366
|
+
/// actually necessary, and if not, the original slice is returned. Otherwise the cast values
|
3367
|
+
/// are returned in a slice that belongs to the caller-supplied `SmallVec`.
|
3368
|
+
fn canonicalise_v128_values<'a>(
|
3369
|
+
tmp_canonicalised: &'a mut SmallVec<[ir::Value; 16]>,
|
3370
|
+
builder: &mut FunctionBuilder,
|
3371
|
+
values: &'a [ir::Value],
|
3372
|
+
) -> &'a [ir::Value] {
|
3373
|
+
debug_assert!(tmp_canonicalised.is_empty());
|
3374
|
+
// First figure out if any of the parameters need to be cast. Mostly they don't need to be.
|
3375
|
+
let any_non_canonical = values
|
3376
|
+
.iter()
|
3377
|
+
.any(|v| is_non_canonical_v128(builder.func.dfg.value_type(*v)));
|
3378
|
+
// Hopefully we take this exit most of the time, hence doing no heap allocation.
|
3379
|
+
if !any_non_canonical {
|
3380
|
+
return values;
|
3381
|
+
}
|
3382
|
+
// Otherwise we'll have to cast, and push the resulting `Value`s into `canonicalised`.
|
3383
|
+
for v in values {
|
3384
|
+
tmp_canonicalised.push(if is_non_canonical_v128(builder.func.dfg.value_type(*v)) {
|
3385
|
+
let mut flags = MemFlags::new();
|
3386
|
+
flags.set_endianness(ir::Endianness::Little);
|
3387
|
+
builder.ins().bitcast(I8X16, flags, *v)
|
3388
|
+
} else {
|
3389
|
+
*v
|
3390
|
+
});
|
3391
|
+
}
|
3392
|
+
tmp_canonicalised.as_slice()
|
3393
|
+
}
|
3394
|
+
|
3395
|
+
/// Generate a `jump` instruction, but first cast all 128-bit vector values to I8X16 if they
|
3396
|
+
/// don't have that type. This is done in somewhat roundabout way so as to ensure that we
|
3397
|
+
/// almost never have to do any heap allocation.
|
3398
|
+
fn canonicalise_then_jump(
|
3399
|
+
builder: &mut FunctionBuilder,
|
3400
|
+
destination: ir::Block,
|
3401
|
+
params: &[ir::Value],
|
3402
|
+
) -> ir::Inst {
|
3403
|
+
let mut tmp_canonicalised = SmallVec::<[ir::Value; 16]>::new();
|
3404
|
+
let canonicalised = canonicalise_v128_values(&mut tmp_canonicalised, builder, params);
|
3405
|
+
builder.ins().jump(destination, canonicalised)
|
3406
|
+
}
|
3407
|
+
|
3408
|
+
/// The same but for a `brif` instruction.
|
3409
|
+
fn canonicalise_brif(
|
3410
|
+
builder: &mut FunctionBuilder,
|
3411
|
+
cond: ir::Value,
|
3412
|
+
block_then: ir::Block,
|
3413
|
+
params_then: &[ir::Value],
|
3414
|
+
block_else: ir::Block,
|
3415
|
+
params_else: &[ir::Value],
|
3416
|
+
) -> ir::Inst {
|
3417
|
+
let mut tmp_canonicalised_then = SmallVec::<[ir::Value; 16]>::new();
|
3418
|
+
let canonicalised_then =
|
3419
|
+
canonicalise_v128_values(&mut tmp_canonicalised_then, builder, params_then);
|
3420
|
+
let mut tmp_canonicalised_else = SmallVec::<[ir::Value; 16]>::new();
|
3421
|
+
let canonicalised_else =
|
3422
|
+
canonicalise_v128_values(&mut tmp_canonicalised_else, builder, params_else);
|
3423
|
+
builder.ins().brif(
|
3424
|
+
cond,
|
3425
|
+
block_then,
|
3426
|
+
canonicalised_then,
|
3427
|
+
block_else,
|
3428
|
+
canonicalised_else,
|
3429
|
+
)
|
3430
|
+
}
|
3431
|
+
|
3432
|
+
/// A helper for popping and bitcasting a single value; since SIMD values can lose their type by
|
3433
|
+
/// using v128 (i.e. CLIF's I8x16) we must re-type the values using a bitcast to avoid CLIF
|
3434
|
+
/// typing issues.
|
3435
|
+
fn pop1_with_bitcast(
|
3436
|
+
state: &mut FuncTranslationState,
|
3437
|
+
needed_type: Type,
|
3438
|
+
builder: &mut FunctionBuilder,
|
3439
|
+
) -> Value {
|
3440
|
+
optionally_bitcast_vector(state.pop1(), needed_type, builder)
|
3441
|
+
}
|
3442
|
+
|
3443
|
+
/// A helper for popping and bitcasting two values; since SIMD values can lose their type by
|
3444
|
+
/// using v128 (i.e. CLIF's I8x16) we must re-type the values using a bitcast to avoid CLIF
|
3445
|
+
/// typing issues.
|
3446
|
+
fn pop2_with_bitcast(
|
3447
|
+
state: &mut FuncTranslationState,
|
3448
|
+
needed_type: Type,
|
3449
|
+
builder: &mut FunctionBuilder,
|
3450
|
+
) -> (Value, Value) {
|
3451
|
+
let (a, b) = state.pop2();
|
3452
|
+
let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
|
3453
|
+
let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
|
3454
|
+
(bitcast_a, bitcast_b)
|
3455
|
+
}
|
3456
|
+
|
3457
|
+
fn pop3_with_bitcast(
|
3458
|
+
state: &mut FuncTranslationState,
|
3459
|
+
needed_type: Type,
|
3460
|
+
builder: &mut FunctionBuilder,
|
3461
|
+
) -> (Value, Value, Value) {
|
3462
|
+
let (a, b, c) = state.pop3();
|
3463
|
+
let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
|
3464
|
+
let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
|
3465
|
+
let bitcast_c = optionally_bitcast_vector(c, needed_type, builder);
|
3466
|
+
(bitcast_a, bitcast_b, bitcast_c)
|
3467
|
+
}
|
3468
|
+
|
3469
|
+
fn bitcast_arguments<'a>(
|
3470
|
+
builder: &FunctionBuilder,
|
3471
|
+
arguments: &'a mut [Value],
|
3472
|
+
params: &[ir::AbiParam],
|
3473
|
+
param_predicate: impl Fn(usize) -> bool,
|
3474
|
+
) -> Vec<(Type, &'a mut Value)> {
|
3475
|
+
let filtered_param_types = params
|
3476
|
+
.iter()
|
3477
|
+
.enumerate()
|
3478
|
+
.filter(|(i, _)| param_predicate(*i))
|
3479
|
+
.map(|(_, param)| param.value_type);
|
3480
|
+
|
3481
|
+
// zip_eq, from the itertools::Itertools trait, is like Iterator::zip but panics if one
|
3482
|
+
// iterator ends before the other. The `param_predicate` is required to select exactly as many
|
3483
|
+
// elements of `params` as there are elements in `arguments`.
|
3484
|
+
let pairs = filtered_param_types.zip_eq(arguments.iter_mut());
|
3485
|
+
|
3486
|
+
// The arguments which need to be bitcasted are those which have some vector type but the type
|
3487
|
+
// expected by the parameter is not the same vector type as that of the provided argument.
|
3488
|
+
pairs
|
3489
|
+
.filter(|(param_type, _)| param_type.is_vector())
|
3490
|
+
.filter(|(param_type, arg)| {
|
3491
|
+
let arg_type = builder.func.dfg.value_type(**arg);
|
3492
|
+
assert!(
|
3493
|
+
arg_type.is_vector(),
|
3494
|
+
"unexpected type mismatch: expected {}, argument {} was actually of type {}",
|
3495
|
+
param_type,
|
3496
|
+
*arg,
|
3497
|
+
arg_type
|
3498
|
+
);
|
3499
|
+
|
3500
|
+
// This is the same check that would be done by `optionally_bitcast_vector`, except we
|
3501
|
+
// can't take a mutable borrow of the FunctionBuilder here, so we defer inserting the
|
3502
|
+
// bitcast instruction to the caller.
|
3503
|
+
arg_type != *param_type
|
3504
|
+
})
|
3505
|
+
.collect()
|
3506
|
+
}
|
3507
|
+
|
3508
|
+
/// A helper for bitcasting a sequence of return values for the function currently being built. If
|
3509
|
+
/// a value is a vector type that does not match its expected type, this will modify the value in
|
3510
|
+
/// place to point to the result of a `bitcast`. This conversion is necessary to translate Wasm
|
3511
|
+
/// code that uses `V128` as function parameters (or implicitly in block parameters) and still use
|
3512
|
+
/// specific CLIF types (e.g. `I32X4`) in the function body.
|
3513
|
+
pub fn bitcast_wasm_returns<FE: FuncEnvironment + ?Sized>(
|
3514
|
+
environ: &mut FE,
|
3515
|
+
arguments: &mut [Value],
|
3516
|
+
builder: &mut FunctionBuilder,
|
3517
|
+
) {
|
3518
|
+
let changes = bitcast_arguments(builder, arguments, &builder.func.signature.returns, |i| {
|
3519
|
+
environ.is_wasm_return(&builder.func.signature, i)
|
3520
|
+
});
|
3521
|
+
for (t, arg) in changes {
|
3522
|
+
let mut flags = MemFlags::new();
|
3523
|
+
flags.set_endianness(ir::Endianness::Little);
|
3524
|
+
*arg = builder.ins().bitcast(t, flags, *arg);
|
3525
|
+
}
|
3526
|
+
}
|
3527
|
+
|
3528
|
+
/// Like `bitcast_wasm_returns`, but for the parameters being passed to a specified callee.
|
3529
|
+
fn bitcast_wasm_params<FE: FuncEnvironment + ?Sized>(
|
3530
|
+
environ: &mut FE,
|
3531
|
+
callee_signature: ir::SigRef,
|
3532
|
+
arguments: &mut [Value],
|
3533
|
+
builder: &mut FunctionBuilder,
|
3534
|
+
) {
|
3535
|
+
let callee_signature = &builder.func.dfg.signatures[callee_signature];
|
3536
|
+
let changes = bitcast_arguments(builder, arguments, &callee_signature.params, |i| {
|
3537
|
+
environ.is_wasm_parameter(&callee_signature, i)
|
3538
|
+
});
|
3539
|
+
for (t, arg) in changes {
|
3540
|
+
let mut flags = MemFlags::new();
|
3541
|
+
flags.set_endianness(ir::Endianness::Little);
|
3542
|
+
*arg = builder.ins().bitcast(t, flags, *arg);
|
3543
|
+
}
|
3544
|
+
}
|