wasmtime 11.0.0 → 12.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +234 -173
- data/ext/Cargo.toml +7 -7
- data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +321 -0
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +548 -0
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +145 -0
- data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +306 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/builtin_split_dwarf_loader.rs +164 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/function.rs +555 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/lazy.rs +31 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/correctness.rs +126 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/output_equivalence.rs +135 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/parse.rs +114 -0
- data/ext/cargo-vendor/bytes-1.4.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bytes-1.4.0/CHANGELOG.md +283 -0
- data/ext/cargo-vendor/bytes-1.4.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/bytes-1.4.0/LICENSE +25 -0
- data/ext/cargo-vendor/bytes-1.4.0/README.md +56 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/buf.rs +186 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/bytes.rs +120 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/bytes_mut.rs +266 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/miri.sh +11 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/test-stable.sh +28 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/tsan.sh +13 -0
- data/ext/cargo-vendor/bytes-1.4.0/clippy.toml +1 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_impl.rs +1394 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_mut.rs +1493 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/chain.rs +242 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/iter.rs +130 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/limit.rs +75 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/mod.rs +41 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/reader.rs +81 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/take.rs +155 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/uninit_slice.rs +213 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/vec_deque.rs +22 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/writer.rs +88 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/bytes.rs +1304 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/bytes_mut.rs +1812 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/debug.rs +49 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/hex.rs +37 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/mod.rs +5 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/lib.rs +117 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/loom.rs +30 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/serde.rs +89 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf.rs +120 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf_mut.rs +178 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes.rs +1210 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_odd_alloc.rs +97 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_vec_alloc.rs +143 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_chain.rs +177 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_debug.rs +35 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_iter.rs +21 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_reader.rs +29 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_serde.rs +20 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_take.rs +32 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/src/is_file_read_write.rs +61 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/Cargo.toml +81 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/fs/mod.rs +125 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/net/pool.rs +284 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/copy_impl.rs +233 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/metadata_ext.rs +384 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/oflags.rs +98 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/open_unchecked.rs +71 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/reopen_impl.rs +18 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/set_permissions_impl.rs +49 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/stat_unchecked.rs +79 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/times.rs +61 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/linux/fs/procfs.rs +81 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/create_file_at_w.rs +273 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/metadata_ext.rs +214 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/open_unchecked.rs +228 -0
- data/ext/cargo-vendor/cap-rand-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-rand-2.0.0/Cargo.toml +38 -0
- data/ext/cargo-vendor/cap-std-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-std-2.0.0/Cargo.toml +67 -0
- data/ext/cargo-vendor/cap-std-2.0.0/build.rs +41 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/fs/file.rs +614 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/fs_utf8/file.rs +608 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/lib.rs +51 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/net/udp_socket.rs +418 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/src/monotonic_clock.rs +62 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/src/system_clock.rs +59 -0
- data/ext/cargo-vendor/cranelift-bforest-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +159 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/cursor.rs +644 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +411 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +469 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +155 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +1543 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +3919 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +3039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +4048 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +873 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +2907 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +985 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +3254 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +2125 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +2972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +620 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +2002 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +1204 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +4651 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +2641 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +2365 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +837 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/lower.rs +1393 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +1591 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +200 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +177 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +32 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +26 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +1785 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/arm64.rs +53 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/mod.rs +66 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/riscv64.rs +101 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/s390x.rs +39 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/x86.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/lib.rs +59 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/mod.rs +88 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +38 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +85 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +3608 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +942 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +913 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +431 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +420 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/tests/wasm_testsuite.rs +153 -0
- data/ext/cargo-vendor/fs-set-times-0.20.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/fs-set-times-0.20.0/Cargo.toml +45 -0
- data/ext/cargo-vendor/futures-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-0.3.28/Cargo.toml +147 -0
- data/ext/cargo-vendor/futures-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-0.3.28/README.md +61 -0
- data/ext/cargo-vendor/futures-0.3.28/src/lib.rs +260 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/_require_features.rs +13 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/async_await_macros.rs +393 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/auto_traits.rs +1891 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/bilock.rs +104 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/compat.rs +16 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/eager_drop.rs +121 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/eventual.rs +179 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_abortable.rs +44 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_basic_combinators.rs +104 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_fuse.rs +12 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_inspect.rs +16 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_join.rs +32 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_join_all.rs +41 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_obj.rs +33 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_select_all.rs +25 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_select_ok.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_shared.rs +273 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_try_flatten_stream.rs +83 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_try_join_all.rs +46 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_reader.rs +432 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_writer.rs +239 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_cursor.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_line_writer.rs +73 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_lines.rs +60 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read.rs +64 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_exact.rs +17 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_line.rs +58 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_end.rs +65 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_string.rs +44 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_until.rs +60 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_window.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_write.rs +65 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/lock_mutex.rs +69 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/macro_comma_support.rs +43 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/object_safety.rs +49 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/oneshot.rs +78 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/ready_queue.rs +148 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/recurse.rs +25 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/sink.rs +554 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/sink_fanout.rs +24 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream.rs +537 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_abortable.rs +46 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_buffer_unordered.rs +73 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_catch_unwind.rs +27 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_ordered.rs +172 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_unordered.rs +383 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_into_async_read.rs +94 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_peekable.rs +58 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_all.rs +197 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_next_some.rs +86 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_split.rs +57 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_try_stream.rs +134 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_unfold.rs +32 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/task_arc_wake.rs +79 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/task_atomic_waker.rs +48 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/test_macro.rs +20 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/try_join.rs +35 -0
- data/ext/cargo-vendor/futures-0.3.28/tests_disabled/all.rs +400 -0
- data/ext/cargo-vendor/futures-0.3.28/tests_disabled/stream.rs +368 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/Cargo.toml +52 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/benches/sync_mpsc.rs +135 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/lib.rs +42 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/lock.rs +102 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/mod.rs +1359 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/queue.rs +174 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/sink_impl.rs +73 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/oneshot.rs +488 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/channel.rs +66 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-close.rs +299 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-size_hint.rs +40 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc.rs +634 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/oneshot.rs +256 -0
- data/ext/cargo-vendor/futures-core-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-core-0.3.28/Cargo.toml +44 -0
- data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-core-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-core-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-core-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/future.rs +103 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/lib.rs +27 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/stream.rs +235 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/atomic_waker.rs +421 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/mod.rs +4 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/mod.rs +10 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/poll.rs +12 -0
- data/ext/cargo-vendor/futures-io-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-io-0.3.28/Cargo.toml +37 -0
- data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-io-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-io-0.3.28/src/lib.rs +558 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/Cargo.toml +33 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/src/lib.rs +240 -0
- data/ext/cargo-vendor/futures-task-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-task-0.3.28/Cargo.toml +37 -0
- data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-task-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-task-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-task-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/arc_wake.rs +49 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/future_obj.rs +335 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/lib.rs +50 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/noop_waker.rs +63 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/spawn.rs +192 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/waker.rs +59 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/waker_ref.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-util-0.3.28/Cargo.toml +135 -0
- data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-util-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/bilock.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/flatten_unordered.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/futures_unordered.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/select.rs +35 -0
- data/ext/cargo-vendor/futures-util-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-util-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/abortable.rs +209 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/join_mod.rs +110 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/mod.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/pending.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/poll.rs +39 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/random.rs +54 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/select_mod.rs +336 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/stream_select_mod.rs +40 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat01as03.rs +454 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat03as01.rs +265 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/executor.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/mod.rs +22 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/fns.rs +372 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/abortable.rs +19 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/either.rs +317 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/catch_unwind.rs +38 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/flatten.rs +153 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/fuse.rs +91 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/map.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/mod.rs +610 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/remote_handle.rs +126 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/shared.rs +413 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/join.rs +217 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/join_all.rs +166 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/lazy.rs +60 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/maybe_done.rs +104 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/mod.rs +131 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/option.rs +64 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/pending.rs +55 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_fn.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_immediate.rs +126 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/ready.rs +82 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select.rs +134 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_all.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_ok.rs +85 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/into_future.rs +36 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/mod.rs +625 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten.rs +162 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten_err.rs +62 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join.rs +256 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join_all.rs +200 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_maybe_done.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_select.rs +85 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/allow_std.rs +200 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_reader.rs +263 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_writer.rs +224 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/chain.rs +142 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/close.rs +28 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf.rs +78 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf_abortable.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/cursor.rs +232 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/empty.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/fill_buf.rs +51 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/flush.rs +31 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/into_sink.rs +82 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/line_writer.rs +155 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/lines.rs +47 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/mod.rs +841 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_exact.rs +42 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_line.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_end.rs +91 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_string.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_until.rs +60 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_vectored.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/repeat.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/seek.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/sink.rs +67 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/split.rs +115 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/take.rs +125 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/window.rs +104 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all_vectored.rs +193 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_vectored.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lib.rs +337 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/bilock.rs +293 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mod.rs +27 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mutex.rs +551 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/never.rs +18 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/buffer.rs +105 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/close.rs +32 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/drain.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/err_into.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/fanout.rs +111 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/feed.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/flush.rs +36 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/map_err.rs +65 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/mod.rs +344 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send.rs +41 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send_all.rs +100 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/unfold.rs +89 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with.rs +134 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with_flat_map.rs +127 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/abortable.rs +19 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/empty.rs +45 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_ordered.rs +244 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/abort.rs +12 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/iter.rs +172 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/mod.rs +661 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/ready_to_run_queue.rs +122 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/task.rs +125 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/iter.rs +49 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/mod.rs +148 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/once.rs +67 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/pending.rs +45 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_fn.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_immediate.rs +80 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat_with.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select.rs +117 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_all.rs +249 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_with_strategy.rs +304 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/all.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/any.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffer_unordered.rs +120 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffered.rs +118 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/catch_unwind.rs +61 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chain.rs +76 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chunks.rs +103 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/collect.rs +56 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/concat.rs +62 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/count.rs +53 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/cycle.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/enumerate.rs +64 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter.rs +117 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter_map.rs +111 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten.rs +73 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten_unordered.rs +536 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fold.rs +88 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each.rs +78 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each_concurrent.rs +119 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/forward.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fuse.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/into_future.rs +90 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/map.rs +77 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/mod.rs +1691 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/next.rs +34 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/peek.rs +433 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/ready_chunks.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/scan.rs +128 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/select_next_some.rs +42 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip.rs +70 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip_while.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/split.rs +144 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_until.rs +170 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_while.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/then.rs +101 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/unzip.rs +63 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/zip.rs +128 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/and_then.rs +105 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_async_read.rs +166 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_stream.rs +52 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/mod.rs +1130 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/or_else.rs +109 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffer_unordered.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffered.rs +87 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_chunks.rs +132 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_collect.rs +52 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_concat.rs +51 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter.rs +112 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter_map.rs +106 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten.rs +84 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten_unordered.rs +176 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_fold.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each_concurrent.rs +133 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_next.rs +34 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_skip_while.rs +120 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_take_while.rs +129 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_unfold.rs +122 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/unfold.rs +119 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/task/mod.rs +37 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/task/spawn.rs +169 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/unfold_state.rs +39 -0
- data/ext/cargo-vendor/io-extras-0.18.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/io-extras-0.18.0/Cargo.toml +94 -0
- data/ext/cargo-vendor/io-extras-0.18.0/README.md +33 -0
- data/ext/cargo-vendor/io-extras-0.18.0/build.rs +43 -0
- data/ext/cargo-vendor/io-extras-0.18.0/src/os/windows/stdio.rs +328 -0
- data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +621 -0
- data/ext/cargo-vendor/object-0.31.1/Cargo.toml +161 -0
- data/ext/cargo-vendor/object-0.31.1/README.md +58 -0
- data/ext/cargo-vendor/object-0.31.1/clippy.toml +1 -0
- data/ext/cargo-vendor/object-0.31.1/src/common.rs +499 -0
- data/ext/cargo-vendor/object-0.31.1/src/elf.rs +6146 -0
- data/ext/cargo-vendor/object-0.31.1/src/endian.rs +831 -0
- data/ext/cargo-vendor/object-0.31.1/src/lib.rs +116 -0
- data/ext/cargo-vendor/object-0.31.1/src/macho.rs +3307 -0
- data/ext/cargo-vendor/object-0.31.1/src/pe.rs +3050 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +1323 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/comdat.rs +207 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/file.rs +364 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/relocation.rs +104 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/section.rs +574 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/symbol.rs +626 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/attributes.rs +303 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/comdat.rs +160 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +910 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/hash.rs +220 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/mod.rs +42 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +263 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/section.rs +1146 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/segment.rs +332 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +577 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/version.rs +421 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/dyld_cache.rs +343 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/file.rs +731 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/load_command.rs +373 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/section.rs +387 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/segment.rs +301 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/symbol.rs +488 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +760 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/data_directory.rs +211 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/file.rs +1029 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/resource.rs +207 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/rich.rs +91 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/section.rs +434 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/read_cache.rs +182 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/read_ref.rs +137 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/traits.rs +469 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/util.rs +425 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/wasm.rs +951 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/comdat.rs +129 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/section.rs +427 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/segment.rs +113 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/symbol.rs +695 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/coff.rs +725 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +891 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/writer.rs +2143 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +978 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/mod.rs +943 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/string.rs +159 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/util.rs +260 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/xcoff.rs +556 -0
- data/ext/cargo-vendor/object-0.31.1/src/xcoff.rs +893 -0
- data/ext/cargo-vendor/object-0.31.1/tests/read/coff.rs +23 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/elf.rs +289 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +24 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +636 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/CONTRIBUTING.md +21 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.lock +1000 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.toml +100 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/README.md +167 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/html_rendering.rs +97 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/lib.rs +51 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/markdown-it.rs +29 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/build.rs +189 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/broken-link-callbacks.rs +35 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/event-filter.rs +27 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-event-print.rs +31 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-tag-print.rs +73 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/string-to-string.rs +24 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/escape.rs +369 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/firstpass.rs +1927 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/html.rs +478 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/lib.rs +290 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/linklabel.rs +135 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/main.rs +123 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/parse.rs +1927 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/puncttable.rs +351 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/scanners.rs +1327 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/strings.rs +373 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/tree.rs +276 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/errors.rs +131 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/html.rs +250 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/lib.rs +421 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/serde.rs +78 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_strikethrough.rs +37 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_table.rs +205 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/heading_attrs.rs +571 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/mod.rs +14 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/regression.rs +1033 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/spec.rs +8490 -0
- data/ext/cargo-vendor/system-interface-0.26.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/system-interface-0.26.0/Cargo.toml +105 -0
- data/ext/cargo-vendor/system-interface-0.26.0/build.rs +53 -0
- data/ext/cargo-vendor/system-interface-0.26.0/src/fs/file_io_ext.rs +1185 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/Cargo.toml +96 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/src/sched/unix.rs +82 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/src/file.rs +269 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/src/sched/subscription.rs +77 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/src/snapshots/preview_1/error.rs +265 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +644 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/benches/benchmark.rs +349 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/lib.rs +726 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +59 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/parser.rs +1612 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/canonicals.rs +120 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +548 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/elements.rs +152 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +1141 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +3144 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +1314 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/operators.rs +3466 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +3197 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +1568 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/tests/big-module.rs +33 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/Cargo.toml +186 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/README.md +119 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/compiler.rs +666 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/component.rs +466 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/host.rs +456 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/options.rs +510 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/typed.rs +2326 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func.rs +718 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/instance.rs +781 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/linker.rs +479 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/matching.rs +215 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/mod.rs +316 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/resources.rs +716 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/types.rs +562 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/values.rs +1376 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/config.rs +2096 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/coredump.rs +115 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/engine/serialization.rs +629 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/externals.rs +768 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/func.rs +2356 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/instance.rs +883 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/lib.rs +490 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/memory.rs +954 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/module/registry.rs +329 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/module.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/resources.rs +33 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store/data.rs +283 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store/func_refs.rs +85 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store.rs +2212 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/trap.rs +639 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/bindgen.rs +343 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/component.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.1/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/Cargo.toml +93 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/builder.rs +116 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler/component.rs +959 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/expression.rs +1250 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/unit.rs +522 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/utils.rs +187 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/func_environ.rs +2377 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/lib.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/src/lib.rs +129 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.lock +736 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/examples/factc.rs +207 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/compilation.rs +400 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/compiler.rs +47 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/dfg.rs +678 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/info.rs +583 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate/adapt.rs +457 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate/inline.rs +1327 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate.rs +943 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types/resources.rs +240 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types.rs +1920 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component.rs +95 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/signature.rs +135 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/trampoline.rs +3269 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/transcode.rs +168 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact.rs +713 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_environ.rs +887 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/trap_encoding.rs +246 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/tunables.rs +115 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/Cargo.toml +51 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/build.rs +26 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/aarch64.rs +184 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/arm.rs +85 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/riscv64.rs +158 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/s390x.S +123 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/x86_64.rs +160 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix.rs +215 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/windows.c +9 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/windows.rs +162 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/profiling.rs +108 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/src/gdb_jit_int.rs +130 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/Cargo.toml +119 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/build.rs +19 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component/libcalls.rs +574 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component/resources.rs +327 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component.rs +853 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/debug_builtins.rs +59 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/helpers.c +108 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/on_demand.rs +127 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator.rs +414 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/lib.rs +289 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/libcalls.rs +627 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/mmap/unix.rs +148 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/send_sync_ptr.rs +77 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/aarch64.rs +42 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/riscv64.rs +43 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/s390x.S +62 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/x86_64.rs +64 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/coredump.rs +38 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/unix.rs +402 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers.rs +782 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +504 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/src/lib.rs +66 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/Cargo.toml +191 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/command.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/ctx.rs +237 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/filesystem.rs +216 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/mod.rs +185 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/pipe.rs +846 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/poll.rs +148 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview1/mod.rs +1870 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/clocks.rs +107 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/env.rs +37 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/exit.rs +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem/sync.rs +613 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem.rs +1096 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/io.rs +494 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/random.rs +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/unix.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/worker_thread_stdin.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio.rs +218 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stream.rs +302 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/table.rs +287 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/io/streams.wit +254 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/test.wit +28 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/src/builder.rs +64 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/src/compiler.rs +217 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/lib.rs +1705 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/rust.rs +498 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/types.rs +185 -0
- data/ext/cargo-vendor/wiggle-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-12.0.1/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/src/config.rs +697 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/src/types/flags.rs +92 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.1/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/context.rs +368 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/env.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/mod.rs +330 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/visitor.rs +656 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +62 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +2199 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +717 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +1437 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/toposort.rs +225 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +1362 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +666 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +116 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +1749 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +145 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/bar/root.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/baz/root.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/root.wit +26 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/deps/foo/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/foo.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +3 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/corp/saas.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/clocks.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/filesystem.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/root.wit +50 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/bar/types.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/ignore-me.txt +1 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/world.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/include-reps.wit +15 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/kebab-name-include-with.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/foo.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-pkg1.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/foo.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit +18 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit +44 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit +18 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +3 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/root.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/root.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit +12 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unknown-interface.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use9.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/root.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/root.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/world-interface-clash.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-empty.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-borrow.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-own.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple.wit +20 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-borrow.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-own.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources.wit +47 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources1.wit +12 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/shared-types.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/stress-export-elaborate.wit +54 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/union-fuzz-1.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +22 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-same-fields4.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-top-level-resources.wit +24 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/worlds-union-dedup.wit +23 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +1992 -1571
- data/ext/cargo-vendor/addr2line-0.19.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/addr2line-0.19.0/CHANGELOG.md +0 -287
- data/ext/cargo-vendor/addr2line-0.19.0/Cargo.lock +0 -466
- data/ext/cargo-vendor/addr2line-0.19.0/Cargo.toml +0 -142
- data/ext/cargo-vendor/addr2line-0.19.0/examples/addr2line.rs +0 -289
- data/ext/cargo-vendor/addr2line-0.19.0/src/function.rs +0 -534
- data/ext/cargo-vendor/addr2line-0.19.0/src/lazy.rs +0 -27
- data/ext/cargo-vendor/addr2line-0.19.0/src/lib.rs +0 -1234
- data/ext/cargo-vendor/addr2line-0.19.0/tests/correctness.rs +0 -92
- data/ext/cargo-vendor/addr2line-0.19.0/tests/output_equivalence.rs +0 -146
- data/ext/cargo-vendor/addr2line-0.19.0/tests/parse.rs +0 -118
- data/ext/cargo-vendor/cap-fs-ext-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-fs-ext-1.0.15/Cargo.toml +0 -63
- data/ext/cargo-vendor/cap-fs-ext-1.0.15/src/is_file_read_write.rs +0 -61
- data/ext/cargo-vendor/cap-primitives-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-primitives-1.0.15/Cargo.toml +0 -81
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/fs/mod.rs +0 -125
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/net/pool.rs +0 -284
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/copy_impl.rs +0 -235
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/metadata_ext.rs +0 -385
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/oflags.rs +0 -98
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/open_unchecked.rs +0 -71
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/reopen_impl.rs +0 -18
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/set_permissions_impl.rs +0 -50
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/stat_unchecked.rs +0 -79
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/times.rs +0 -62
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/linux/fs/procfs.rs +0 -76
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/create_file_at_w.rs +0 -274
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/metadata_ext.rs +0 -216
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/open_unchecked.rs +0 -229
- data/ext/cargo-vendor/cap-rand-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-rand-1.0.15/Cargo.toml +0 -38
- data/ext/cargo-vendor/cap-std-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-std-1.0.15/Cargo.toml +0 -67
- data/ext/cargo-vendor/cap-std-1.0.15/build.rs +0 -43
- data/ext/cargo-vendor/cap-std-1.0.15/src/fs/file.rs +0 -616
- data/ext/cargo-vendor/cap-std-1.0.15/src/fs_utf8/file.rs +0 -610
- data/ext/cargo-vendor/cap-std-1.0.15/src/lib.rs +0 -53
- data/ext/cargo-vendor/cap-std-1.0.15/src/net/udp_socket.rs +0 -418
- data/ext/cargo-vendor/cap-time-ext-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-time-ext-1.0.15/Cargo.toml +0 -42
- data/ext/cargo-vendor/cap-time-ext-1.0.15/src/monotonic_clock.rs +0 -63
- data/ext/cargo-vendor/cap-time-ext-1.0.15/src/system_clock.rs +0 -62
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +0 -160
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/cursor.rs +0 -644
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/extfunc.rs +0 -421
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/function.rs +0 -485
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/globalvalue.rs +0 -170
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/mod.rs +0 -107
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +0 -1506
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +0 -3714
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +0 -2980
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst.isle +0 -4037
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +0 -837
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +0 -2899
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +0 -946
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +0 -3058
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +0 -2070
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +0 -2927
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +0 -585
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +0 -1984
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +0 -1220
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +0 -4650
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +0 -140
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +0 -2605
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +0 -2255
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +0 -836
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/lower.rs +0 -1388
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/cprop.isle +0 -197
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/icmp.isle +0 -177
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/value_label.rs +0 -69
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +0 -23
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/gen_inst.rs +0 -1784
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/arm64.rs +0 -61
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/mod.rs +0 -67
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/riscv64.rs +0 -108
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/s390x.rs +0 -47
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +0 -409
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/lib.rs +0 -66
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/mod.rs +0 -87
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/src/lib.rs +0 -204
- data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +0 -3544
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/dummy.rs +0 -924
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +0 -852
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/func_translator.rs +0 -440
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/sections_translator.rs +0 -417
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/tests/wasm_testsuite.rs +0 -162
- data/ext/cargo-vendor/fs-set-times-0.19.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/fs-set-times-0.19.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/io-extras-0.17.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/io-extras-0.17.4/Cargo.toml +0 -106
- data/ext/cargo-vendor/io-extras-0.17.4/README.md +0 -33
- data/ext/cargo-vendor/io-extras-0.17.4/build.rs +0 -79
- data/ext/cargo-vendor/io-extras-0.17.4/src/os/windows/stdio.rs +0 -329
- data/ext/cargo-vendor/memoffset-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/memoffset-0.8.0/Cargo.toml +0 -36
- data/ext/cargo-vendor/memoffset-0.8.0/LICENSE +0 -19
- data/ext/cargo-vendor/memoffset-0.8.0/README.md +0 -85
- data/ext/cargo-vendor/memoffset-0.8.0/build.rs +0 -25
- data/ext/cargo-vendor/memoffset-0.8.0/src/lib.rs +0 -93
- data/ext/cargo-vendor/memoffset-0.8.0/src/offset_of.rs +0 -356
- data/ext/cargo-vendor/memoffset-0.8.0/src/raw_field.rs +0 -226
- data/ext/cargo-vendor/memoffset-0.8.0/src/span_of.rs +0 -263
- data/ext/cargo-vendor/object-0.30.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.30.4/CHANGELOG.md +0 -524
- data/ext/cargo-vendor/object-0.30.4/Cargo.toml +0 -154
- data/ext/cargo-vendor/object-0.30.4/README.md +0 -58
- data/ext/cargo-vendor/object-0.30.4/clippy.toml +0 -1
- data/ext/cargo-vendor/object-0.30.4/src/common.rs +0 -480
- data/ext/cargo-vendor/object-0.30.4/src/elf.rs +0 -6751
- data/ext/cargo-vendor/object-0.30.4/src/endian.rs +0 -771
- data/ext/cargo-vendor/object-0.30.4/src/lib.rs +0 -117
- data/ext/cargo-vendor/object-0.30.4/src/macho.rs +0 -3307
- data/ext/cargo-vendor/object-0.30.4/src/pe.rs +0 -3050
- data/ext/cargo-vendor/object-0.30.4/src/read/any.rs +0 -1341
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/comdat.rs +0 -167
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/file.rs +0 -247
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/relocation.rs +0 -91
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/section.rs +0 -524
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/symbol.rs +0 -526
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/comdat.rs +0 -162
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/file.rs +0 -885
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/hash.rs +0 -220
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/mod.rs +0 -39
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/note.rs +0 -185
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/section.rs +0 -1090
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/segment.rs +0 -333
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/symbol.rs +0 -580
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/version.rs +0 -421
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/dyld_cache.rs +0 -343
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/file.rs +0 -731
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/load_command.rs +0 -353
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/relocation.rs +0 -126
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/section.rs +0 -384
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/segment.rs +0 -303
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/symbol.rs +0 -488
- data/ext/cargo-vendor/object-0.30.4/src/read/mod.rs +0 -725
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/data_directory.rs +0 -211
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/file.rs +0 -1029
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/resource.rs +0 -207
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/rich.rs +0 -91
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/section.rs +0 -436
- data/ext/cargo-vendor/object-0.30.4/src/read/read_cache.rs +0 -185
- data/ext/cargo-vendor/object-0.30.4/src/read/read_ref.rs +0 -137
- data/ext/cargo-vendor/object-0.30.4/src/read/traits.rs +0 -469
- data/ext/cargo-vendor/object-0.30.4/src/read/util.rs +0 -383
- data/ext/cargo-vendor/object-0.30.4/src/read/wasm.rs +0 -908
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/comdat.rs +0 -130
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/relocation.rs +0 -128
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/section.rs +0 -426
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/segment.rs +0 -115
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/symbol.rs +0 -634
- data/ext/cargo-vendor/object-0.30.4/src/write/coff.rs +0 -713
- data/ext/cargo-vendor/object-0.30.4/src/write/elf/object.rs +0 -838
- data/ext/cargo-vendor/object-0.30.4/src/write/elf/writer.rs +0 -1955
- data/ext/cargo-vendor/object-0.30.4/src/write/macho.rs +0 -876
- data/ext/cargo-vendor/object-0.30.4/src/write/mod.rs +0 -917
- data/ext/cargo-vendor/object-0.30.4/src/write/string.rs +0 -159
- data/ext/cargo-vendor/object-0.30.4/src/write/util.rs +0 -210
- data/ext/cargo-vendor/object-0.30.4/src/xcoff.rs +0 -893
- data/ext/cargo-vendor/object-0.30.4/tests/read/coff.rs +0 -23
- data/ext/cargo-vendor/object-0.30.4/tests/round_trip/elf.rs +0 -218
- data/ext/cargo-vendor/object-0.30.4/tests/round_trip/macho.rs +0 -63
- data/ext/cargo-vendor/object-0.30.4/tests/round_trip/mod.rs +0 -451
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/CONTRIBUTING.md +0 -21
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.lock +0 -924
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.toml +0 -68
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/README.md +0 -152
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/html_rendering.rs +0 -101
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/lib.rs +0 -49
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/build.rs +0 -186
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/broken-link-callbacks.rs +0 -37
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/event-filter.rs +0 -29
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/string-to-string.rs +0 -26
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/escape.rs +0 -356
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/html.rs +0 -461
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/lib.rs +0 -76
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/linklabel.rs +0 -135
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/main.rs +0 -109
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/parse.rs +0 -3374
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/puncttable.rs +0 -351
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/scanners.rs +0 -1308
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/simd.rs +0 -248
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/strings.rs +0 -243
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/tree.rs +0 -216
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/errors.rs +0 -44
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/html.rs +0 -252
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/lib.rs +0 -425
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_strikethrough.rs +0 -27
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_table.rs +0 -205
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/mod.rs +0 -13
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/regression.rs +0 -953
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/spec.rs +0 -8447
- data/ext/cargo-vendor/system-interface-0.25.9/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/system-interface-0.25.9/Cargo.toml +0 -105
- data/ext/cargo-vendor/system-interface-0.25.9/build.rs +0 -55
- data/ext/cargo-vendor/system-interface-0.25.9/src/fs/file_io_ext.rs +0 -1186
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/src/sched/unix.rs +0 -82
- data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasi-common-11.0.0/src/file.rs +0 -262
- data/ext/cargo-vendor/wasi-common-11.0.0/src/sched/subscription.rs +0 -76
- data/ext/cargo-vendor/wasi-common-11.0.0/src/snapshots/preview_1/error.rs +0 -255
- data/ext/cargo-vendor/wasm-encoder-0.29.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.29.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/wasm-encoder-0.29.0/README.md +0 -80
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/aliases.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/canonicals.rs +0 -159
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/components.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/exports.rs +0 -127
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/imports.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/instances.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/modules.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/names.rs +0 -149
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/start.rs +0 -52
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/types.rs +0 -759
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/code.rs +0 -2913
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/custom.rs +0 -55
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/data.rs +0 -185
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/dump.rs +0 -627
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/elements.rs +0 -224
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/exports.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/functions.rs +0 -63
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/globals.rs +0 -90
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/imports.rs +0 -142
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/linking.rs +0 -263
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/memories.rs +0 -99
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/names.rs +0 -265
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/producers.rs +0 -180
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/start.rs +0 -39
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tables.rs +0 -104
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tags.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/types.rs +0 -246
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/lib.rs +0 -215
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/raw.rs +0 -30
- data/ext/cargo-vendor/wasmparser-0.107.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.lock +0 -621
- data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.toml +0 -54
- data/ext/cargo-vendor/wasmparser-0.107.0/benches/benchmark.rs +0 -351
- data/ext/cargo-vendor/wasmparser-0.107.0/src/lib.rs +0 -723
- data/ext/cargo-vendor/wasmparser-0.107.0/src/limits.rs +0 -57
- data/ext/cargo-vendor/wasmparser-0.107.0/src/parser.rs +0 -1535
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/canonicals.rs +0 -119
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/types.rs +0 -548
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/elements.rs +0 -158
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/types.rs +0 -874
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/component.rs +0 -3082
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/core.rs +0 -1334
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/operators.rs +0 -3463
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/types.rs +0 -3070
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator.rs +0 -1589
- data/ext/cargo-vendor/wasmparser-0.107.0/tests/big-module.rs +0 -32
- data/ext/cargo-vendor/wasmtime-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-11.0.0/README.md +0 -119
- data/ext/cargo-vendor/wasmtime-11.0.0/src/compiler.rs +0 -710
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +0 -397
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +0 -472
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +0 -270
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +0 -2298
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +0 -701
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/linker.rs +0 -404
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/matching.rs +0 -112
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +0 -514
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +0 -1319
- data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +0 -2058
- data/ext/cargo-vendor/wasmtime-11.0.0/src/engine/serialization.rs +0 -622
- data/ext/cargo-vendor/wasmtime-11.0.0/src/externals.rs +0 -763
- data/ext/cargo-vendor/wasmtime-11.0.0/src/func.rs +0 -2355
- data/ext/cargo-vendor/wasmtime-11.0.0/src/instance.rs +0 -905
- data/ext/cargo-vendor/wasmtime-11.0.0/src/lib.rs +0 -486
- data/ext/cargo-vendor/wasmtime-11.0.0/src/memory.rs +0 -950
- data/ext/cargo-vendor/wasmtime-11.0.0/src/module/registry.rs +0 -321
- data/ext/cargo-vendor/wasmtime-11.0.0/src/module.rs +0 -1274
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store/data.rs +0 -275
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store/func_refs.rs +0 -85
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store.rs +0 -2166
- data/ext/cargo-vendor/wasmtime-11.0.0/src/trap.rs +0 -631
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +0 -348
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +0 -1354
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/builder.rs +0 -108
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +0 -593
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +0 -1297
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/expression.rs +0 -1250
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/unit.rs +0 -521
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/utils.rs +0 -187
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +0 -2218
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +0 -160
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/lib.rs +0 -120
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +0 -209
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/compilation.rs +0 -400
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/compiler.rs +0 -84
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/dfg.rs +0 -629
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +0 -530
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/adapt.rs +0 -449
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +0 -1069
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +0 -843
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +0 -1827
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/vmcomponent_offsets.rs +0 -336
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component.rs +0 -72
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +0 -3173
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/transcode.rs +0 -168
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact.rs +0 -623
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/module_environ.rs +0 -884
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/trap_encoding.rs +0 -238
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/tunables.rs +0 -111
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/build.rs +0 -23
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/aarch64.rs +0 -184
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/arm.rs +0 -85
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/riscv64.rs +0 -158
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/s390x.S +0 -120
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/x86_64.rs +0 -160
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix.rs +0 -212
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/windows.c +0 -5
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/windows.rs +0 -161
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/profiling.rs +0 -108
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/src/gdb_jit_int.rs +0 -128
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/build.rs +0 -17
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component/transcode.rs +0 -451
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +0 -727
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/debug_builtins.rs +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/helpers.c +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/instance/allocator.rs +0 -531
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/lib.rs +0 -285
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +0 -626
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/mmap/unix.rs +0 -148
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/send_sync_ptr.rs +0 -69
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/aarch64.rs +0 -42
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/riscv64.rs +0 -43
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/s390x.S +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/x86_64.rs +0 -64
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/traphandlers/unix.rs +0 -387
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/traphandlers.rs +0 -749
- data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-types-11.0.1/src/lib.rs +0 -462
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +0 -238
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/filesystem.rs +0 -269
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview1/mod.rs +0 -1860
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/env.rs +0 -48
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/exit.rs +0 -12
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/filesystem.rs +0 -1020
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/io.rs +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/mod.rs +0 -7
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +0 -83
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/random.rs +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +0 -110
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/stdio.rs +0 -176
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/stream.rs +0 -210
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/table.rs +0 -107
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/wasi/command.rs +0 -43
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/wasi/mod.rs +0 -30
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/io/streams.wit +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/test.wit +0 -19
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/src/builder.rs +0 -59
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/src/compiler.rs +0 -220
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +0 -1648
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +0 -491
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +0 -183
- data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-generate-11.0.0/src/config.rs +0 -696
- data/ext/cargo-vendor/wiggle-generate-11.0.0/src/types/flags.rs +0 -94
- data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-11.0.0/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +0 -328
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +0 -437
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +0 -64
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +0 -319
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +0 -630
- data/ext/cargo-vendor/winx-0.35.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winx-0.35.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/winx-0.35.1/LICENSE +0 -220
- data/ext/cargo-vendor/winx-0.35.1/README.md +0 -5
- data/ext/cargo-vendor/winx-0.35.1/src/cvt.rs +0 -24
- data/ext/cargo-vendor/winx-0.35.1/src/file.rs +0 -420
- data/ext/cargo-vendor/winx-0.35.1/src/lib.rs +0 -31
- data/ext/cargo-vendor/winx-0.35.1/src/ntdll.rs +0 -69
- data/ext/cargo-vendor/winx-0.35.1/src/time.rs +0 -11
- data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/file.rs +0 -171
- data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/mod.rs +0 -9
- data/ext/cargo-vendor/wit-parser-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.8.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/wit-parser-0.8.0/src/abi.rs +0 -2134
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/lex.rs +0 -679
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/resolve.rs +0 -1122
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/toposort.rs +0 -204
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast.rs +0 -1207
- data/ext/cargo-vendor/wit-parser-0.8.0/src/lib.rs +0 -622
- data/ext/cargo-vendor/wit-parser-0.8.0/src/live.rs +0 -111
- data/ext/cargo-vendor/wit-parser-0.8.0/src/resolve.rs +0 -1307
- data/ext/cargo-vendor/wit-parser-0.8.0/src/sizealign.rs +0 -140
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg1.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unknown-interface.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use9.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle4.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-interface-clash.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/shared-types.wit +0 -10
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-diamond.wit +0 -22
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-same-fields4.wit +0 -13
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_entry_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/metadata_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_follow_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_maybe_dir_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_sync_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/assert_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_path_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_type.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/follow_symlinks.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/is_file_read_write.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonical_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/cow_component.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/read_link_one.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/maybe_owned_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_ambient.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_unchecked_error.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/stat.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/open_parent.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_times_nofollow.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/cvt.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_root_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/permissions_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/stat_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/monotonic_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_time.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/get_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_open_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_datagram.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/unreachable_code.wat +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/README.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/set_times.rs +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/borrowed.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/grip.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/rustix.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/traits.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/types.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/owned.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/read_write.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/coff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/tls.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/src/entities.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/footnotes.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/gfm_tasklist.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/smart_punct.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/table.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/README.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/fd_flags.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/io_ext.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/peek.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/read_ready.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/allocate.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/append.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/fd_flags.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/live_rename.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/peek.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_ready.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/io.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/vectored_at.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.29.0 → wasmparser-0.110.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmtime-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-11.0.0 → wasmtime-asm-macros-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-cache-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-11.0.0 → wasmtime-component-util-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cranelift-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-environ-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-fiber-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-fiber-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-fiber-12.0.1}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-jit-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-runtime-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-types-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-11.0.1 → wasmtime-types-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-11.0.1 → wasmtime-wasi-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/poll/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-11.0.0 → wasmtime-winch-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-11.0.0 → wasmtime-winch-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-11.0.0 → wasmtime-wit-bindgen-12.0.1}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wiggle-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-generate-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-macro-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-11.0.0 → wiggle-macro-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/embedded.wit.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds-same-fields5.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit} +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit} +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/worlds-with-types.wit +0 -0
@@ -0,0 +1,2002 @@
|
|
1
|
+
;; riscv64 instruction selection and CLIF-to-MachInst lowering.
|
2
|
+
|
3
|
+
;; The main lowering constructor term: takes a clif `Inst` and returns the
|
4
|
+
;; register(s) within which the lowered instruction's result values live.
|
5
|
+
(decl partial lower (Inst) InstOutput)
|
6
|
+
|
7
|
+
;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
8
|
+
|
9
|
+
(rule (lower (has_type ty (iconst (u64_from_imm64 n))))
|
10
|
+
(imm ty n))
|
11
|
+
|
12
|
+
;; ;;;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
13
|
+
|
14
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty) (vconst n)))
|
15
|
+
(gen_constant ty (const_to_vconst n)))
|
16
|
+
|
17
|
+
;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
18
|
+
|
19
|
+
(rule (lower (f32const (u32_from_ieee32 n)))
|
20
|
+
(imm $F32 n))
|
21
|
+
|
22
|
+
;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
23
|
+
|
24
|
+
(rule (lower (f64const (u64_from_ieee64 n)))
|
25
|
+
(imm $F64 n))
|
26
|
+
|
27
|
+
;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
28
|
+
|
29
|
+
(rule (lower (has_type ty (null)))
|
30
|
+
(imm ty 0))
|
31
|
+
|
32
|
+
|
33
|
+
;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
34
|
+
|
35
|
+
;; Base case, simply adding things in registers.
|
36
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (iadd x y)))
|
37
|
+
(rv_add x y))
|
38
|
+
|
39
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
40
|
+
(rule 1 (lower (has_type (ty_int_ref_scalar_64 ty) (iadd x (imm12_from_value y))))
|
41
|
+
(alu_rr_imm12 (select_addi ty) x y))
|
42
|
+
|
43
|
+
(rule 2 (lower (has_type (ty_int_ref_scalar_64 ty) (iadd (imm12_from_value x) y)))
|
44
|
+
(alu_rr_imm12 (select_addi ty) y x))
|
45
|
+
|
46
|
+
;; Special case when one of the operands is uextended
|
47
|
+
;; Needs `Zba`
|
48
|
+
(rule 3 (lower (has_type $I64 (iadd x (uextend y @ (value_type $I32)))))
|
49
|
+
(if-let $true (has_zba))
|
50
|
+
(rv_adduw y x))
|
51
|
+
|
52
|
+
(rule 4 (lower (has_type $I64 (iadd (uextend x @ (value_type $I32)) y)))
|
53
|
+
(if-let $true (has_zba))
|
54
|
+
(rv_adduw x y))
|
55
|
+
|
56
|
+
;; Add with const shift. We have a few of these instructions with `Zba`.
|
57
|
+
(decl pure partial match_shnadd (Imm64) AluOPRRR)
|
58
|
+
(rule (match_shnadd (u64_from_imm64 1)) (AluOPRRR.Sh1add))
|
59
|
+
(rule (match_shnadd (u64_from_imm64 2)) (AluOPRRR.Sh2add))
|
60
|
+
(rule (match_shnadd (u64_from_imm64 3)) (AluOPRRR.Sh3add))
|
61
|
+
|
62
|
+
(rule 3 (lower (has_type $I64 (iadd x (ishl y (maybe_uextend (iconst n))))))
|
63
|
+
(if-let $true (has_zba))
|
64
|
+
(if-let shnadd (match_shnadd n))
|
65
|
+
(alu_rrr shnadd y x))
|
66
|
+
|
67
|
+
(rule 4 (lower (has_type $I64 (iadd (ishl x (maybe_uextend (iconst n))) y)))
|
68
|
+
(if-let $true (has_zba))
|
69
|
+
(if-let shnadd (match_shnadd n))
|
70
|
+
(alu_rrr shnadd x y))
|
71
|
+
|
72
|
+
|
73
|
+
;; Add with uextended const shift. We have a few of these instructions with `Zba`.
|
74
|
+
;;
|
75
|
+
;; !!! Important !!!
|
76
|
+
;; These rules only work for (ishl (uextend _) _) and not for (uextend (ishl _ _))!
|
77
|
+
;; Getting this wrong means a potential misscalculation of the shift amount.
|
78
|
+
;; Additionaly we can only ensure that this is correct if the uextend is 32 to 64 bits.
|
79
|
+
(decl pure partial match_shnadd_uw (Imm64) AluOPRRR)
|
80
|
+
(rule (match_shnadd_uw (u64_from_imm64 1)) (AluOPRRR.Sh1adduw))
|
81
|
+
(rule (match_shnadd_uw (u64_from_imm64 2)) (AluOPRRR.Sh2adduw))
|
82
|
+
(rule (match_shnadd_uw (u64_from_imm64 3)) (AluOPRRR.Sh3adduw))
|
83
|
+
|
84
|
+
(rule 5 (lower (has_type $I64 (iadd x (ishl (uextend y @ (value_type $I32)) (maybe_uextend (iconst n))))))
|
85
|
+
(if-let $true (has_zba))
|
86
|
+
(if-let shnadd_uw (match_shnadd_uw n))
|
87
|
+
(alu_rrr shnadd_uw y x))
|
88
|
+
|
89
|
+
(rule 6 (lower (has_type $I64 (iadd (ishl (uextend x @ (value_type $I32)) (maybe_uextend (iconst n))) y)))
|
90
|
+
(if-let $true (has_zba))
|
91
|
+
(if-let shnadd_uw (match_shnadd_uw n))
|
92
|
+
(alu_rrr shnadd_uw x y))
|
93
|
+
|
94
|
+
;; I128 cases
|
95
|
+
(rule 7 (lower (has_type $I128 (iadd x y)))
|
96
|
+
(let ((low XReg (rv_add (value_regs_get x 0) (value_regs_get y 0)))
|
97
|
+
;; compute carry.
|
98
|
+
(carry XReg (rv_sltu low (value_regs_get y 0)))
|
99
|
+
;;
|
100
|
+
(high_tmp XReg (rv_add (value_regs_get x 1) (value_regs_get y 1)))
|
101
|
+
;; add carry.
|
102
|
+
(high XReg (rv_add high_tmp carry)))
|
103
|
+
(value_regs low high)))
|
104
|
+
|
105
|
+
;; SIMD Vectors
|
106
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register ty) (iadd x y)))
|
107
|
+
(rv_vadd_vv x y (unmasked) ty))
|
108
|
+
|
109
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register ty) (iadd x (splat y))))
|
110
|
+
(rv_vadd_vx x y (unmasked) ty))
|
111
|
+
|
112
|
+
(rule 10 (lower (has_type (ty_vec_fits_in_register ty) (iadd x (splat (sextend y @ (value_type sext_ty))))))
|
113
|
+
(if-let half_ty (ty_half_width ty))
|
114
|
+
(if-let $true (ty_equal (lane_type half_ty) sext_ty))
|
115
|
+
(rv_vwadd_wx x y (unmasked) (vstate_mf2 half_ty)))
|
116
|
+
|
117
|
+
(rule 10 (lower (has_type (ty_vec_fits_in_register ty) (iadd x (splat (uextend y @ (value_type uext_ty))))))
|
118
|
+
(if-let half_ty (ty_half_width ty))
|
119
|
+
(if-let $true (ty_equal (lane_type half_ty) uext_ty))
|
120
|
+
(rv_vwaddu_wx x y (unmasked) (vstate_mf2 half_ty)))
|
121
|
+
|
122
|
+
(rule 11 (lower (has_type (ty_vec_fits_in_register ty) (iadd x (replicated_imm5 y))))
|
123
|
+
(rv_vadd_vi x y (unmasked) ty))
|
124
|
+
|
125
|
+
|
126
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register ty) (iadd (splat x) y)))
|
127
|
+
(rv_vadd_vx y x (unmasked) ty))
|
128
|
+
|
129
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register ty) (iadd (splat (sextend x @ (value_type sext_ty))) y)))
|
130
|
+
(if-let half_ty (ty_half_width ty))
|
131
|
+
(if-let $true (ty_equal (lane_type half_ty) sext_ty))
|
132
|
+
(rv_vwadd_wx y x (unmasked) (vstate_mf2 half_ty)))
|
133
|
+
|
134
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register ty) (iadd (splat (uextend x @ (value_type uext_ty))) y)))
|
135
|
+
(if-let half_ty (ty_half_width ty))
|
136
|
+
(if-let $true (ty_equal (lane_type half_ty) uext_ty))
|
137
|
+
(rv_vwaddu_wx y x (unmasked) (vstate_mf2 half_ty)))
|
138
|
+
|
139
|
+
(rule 14 (lower (has_type (ty_vec_fits_in_register ty) (iadd (replicated_imm5 x) y)))
|
140
|
+
(rv_vadd_vi y x (unmasked) ty))
|
141
|
+
|
142
|
+
;; Signed Widening Low Additions
|
143
|
+
|
144
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register _) (iadd x (swiden_low y @ (value_type in_ty)))))
|
145
|
+
(rv_vwadd_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
146
|
+
|
147
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_low x @ (value_type in_ty)) y)))
|
148
|
+
(rv_vwadd_wv y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
149
|
+
|
150
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_low x @ (value_type in_ty))
|
151
|
+
(swiden_low y))))
|
152
|
+
(rv_vwadd_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
153
|
+
|
154
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_low x @ (value_type in_ty))
|
155
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
156
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
157
|
+
(rv_vwadd_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
158
|
+
|
159
|
+
(rule 14 (lower (has_type (ty_vec_fits_in_register _) (iadd (splat (sextend x @ (value_type sext_ty)))
|
160
|
+
(swiden_low y @ (value_type in_ty)))))
|
161
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
162
|
+
(rv_vwadd_vx y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
163
|
+
|
164
|
+
;; Signed Widening High Additions
|
165
|
+
;; These are the same as the low additions, but we first slide down the inputs.
|
166
|
+
|
167
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register _) (iadd x (swiden_high y @ (value_type in_ty)))))
|
168
|
+
(rv_vwadd_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
169
|
+
|
170
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_high x @ (value_type in_ty)) y)))
|
171
|
+
(rv_vwadd_wv y (gen_slidedown_half in_ty x) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
172
|
+
|
173
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_high x @ (value_type in_ty))
|
174
|
+
(swiden_high y))))
|
175
|
+
(rv_vwadd_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
176
|
+
|
177
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_high x @ (value_type in_ty))
|
178
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
179
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
180
|
+
(rv_vwadd_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
181
|
+
|
182
|
+
(rule 14 (lower (has_type (ty_vec_fits_in_register _) (iadd (splat (sextend x @ (value_type sext_ty)))
|
183
|
+
(swiden_high y @ (value_type in_ty)))))
|
184
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
185
|
+
(rv_vwadd_vx (gen_slidedown_half in_ty y) x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
186
|
+
|
187
|
+
;; Unsigned Widening Low Additions
|
188
|
+
|
189
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register _) (iadd x (uwiden_low y @ (value_type in_ty)))))
|
190
|
+
(rv_vwaddu_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
191
|
+
|
192
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_low x @ (value_type in_ty)) y)))
|
193
|
+
(rv_vwaddu_wv y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
194
|
+
|
195
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_low x @ (value_type in_ty))
|
196
|
+
(uwiden_low y))))
|
197
|
+
(rv_vwaddu_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
198
|
+
|
199
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_low x @ (value_type in_ty))
|
200
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
201
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
202
|
+
(rv_vwaddu_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
203
|
+
|
204
|
+
(rule 14 (lower (has_type (ty_vec_fits_in_register _) (iadd (splat (uextend x @ (value_type uext_ty)))
|
205
|
+
(uwiden_low y @ (value_type in_ty)))))
|
206
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
207
|
+
(rv_vwaddu_vx y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
208
|
+
|
209
|
+
;; Unsigned Widening High Additions
|
210
|
+
;; These are the same as the low additions, but we first slide down the inputs.
|
211
|
+
|
212
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register _) (iadd x (uwiden_high y @ (value_type in_ty)))))
|
213
|
+
(rv_vwaddu_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
214
|
+
|
215
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_high x @ (value_type in_ty)) y)))
|
216
|
+
(rv_vwaddu_wv y (gen_slidedown_half in_ty x) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
217
|
+
|
218
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_high x @ (value_type in_ty))
|
219
|
+
(uwiden_high y))))
|
220
|
+
(rv_vwaddu_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
221
|
+
|
222
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_high x @ (value_type in_ty))
|
223
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
224
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
225
|
+
(rv_vwaddu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
226
|
+
|
227
|
+
(rule 14 (lower (has_type (ty_vec_fits_in_register _) (iadd (splat (uextend y @ (value_type uext_ty)))
|
228
|
+
(uwiden_high x @ (value_type in_ty)))))
|
229
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
230
|
+
(rv_vwaddu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
231
|
+
|
232
|
+
;; Signed Widening Mixed High/Low Additions
|
233
|
+
|
234
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_low x @ (value_type in_ty))
|
235
|
+
(swiden_high y))))
|
236
|
+
(rv_vwadd_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
237
|
+
|
238
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (swiden_high x @ (value_type in_ty))
|
239
|
+
(swiden_low y))))
|
240
|
+
(rv_vwadd_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
241
|
+
|
242
|
+
;; Unsigned Widening Mixed High/Low Additions
|
243
|
+
|
244
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_low x @ (value_type in_ty))
|
245
|
+
(uwiden_high y))))
|
246
|
+
(rv_vwaddu_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
247
|
+
|
248
|
+
(rule 13 (lower (has_type (ty_vec_fits_in_register _) (iadd (uwiden_high x @ (value_type in_ty))
|
249
|
+
(uwiden_low y))))
|
250
|
+
(rv_vwaddu_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
251
|
+
|
252
|
+
|
253
|
+
;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;
|
254
|
+
(rule
|
255
|
+
(lower (has_type (fits_in_64 ty) (uadd_overflow_trap x y tc)))
|
256
|
+
(let ((res ValueRegs (lower_uadd_overflow x y ty))
|
257
|
+
(_ InstOutput (gen_trapif (value_regs_get res 1) tc)))
|
258
|
+
(value_regs_get res 0)))
|
259
|
+
|
260
|
+
|
261
|
+
;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
262
|
+
;; Base case, simply subtracting things in registers.
|
263
|
+
|
264
|
+
(rule (lower (has_type (ty_int_ref_scalar_64 ty) (isub x y)))
|
265
|
+
(rv_sub x y))
|
266
|
+
|
267
|
+
(rule 1 (lower (has_type (fits_in_32 (ty_int ty)) (isub x y)))
|
268
|
+
(rv_subw x y))
|
269
|
+
|
270
|
+
(rule 2 (lower (has_type $I128 (isub x y)))
|
271
|
+
(i128_sub x y))
|
272
|
+
|
273
|
+
;; SIMD Vectors
|
274
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (isub x y)))
|
275
|
+
(rv_vsub_vv x y (unmasked) ty))
|
276
|
+
|
277
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (isub x (splat y))))
|
278
|
+
(rv_vsub_vx x y (unmasked) ty))
|
279
|
+
|
280
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (isub x (splat (sextend y @ (value_type sext_ty))))))
|
281
|
+
(if-let half_ty (ty_half_width ty))
|
282
|
+
(if-let $true (ty_equal (lane_type half_ty) sext_ty))
|
283
|
+
(rv_vwsub_wx x y (unmasked) (vstate_mf2 half_ty)))
|
284
|
+
|
285
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (isub x (splat (uextend y @ (value_type uext_ty))))))
|
286
|
+
(if-let half_ty (ty_half_width ty))
|
287
|
+
(if-let $true (ty_equal (lane_type half_ty) uext_ty))
|
288
|
+
(rv_vwsubu_wx x y (unmasked) (vstate_mf2 half_ty)))
|
289
|
+
|
290
|
+
(rule 6 (lower (has_type (ty_vec_fits_in_register ty) (isub (splat x) y)))
|
291
|
+
(rv_vrsub_vx y x (unmasked) ty))
|
292
|
+
|
293
|
+
(rule 7 (lower (has_type (ty_vec_fits_in_register ty) (isub (replicated_imm5 x) y)))
|
294
|
+
(rv_vrsub_vi y x (unmasked) ty))
|
295
|
+
|
296
|
+
|
297
|
+
;; Signed Widening Low Subtractions
|
298
|
+
|
299
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register _) (isub x (swiden_low y @ (value_type in_ty)))))
|
300
|
+
(rv_vwsub_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
301
|
+
|
302
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_low x @ (value_type in_ty))
|
303
|
+
(swiden_low y))))
|
304
|
+
(rv_vwsub_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
305
|
+
|
306
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_low x @ (value_type in_ty))
|
307
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
308
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
309
|
+
(rv_vwsub_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
310
|
+
|
311
|
+
;; Signed Widening High Subtractions
|
312
|
+
;; These are the same as the low widenings, but we first slide down the inputs.
|
313
|
+
|
314
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register _) (isub x (swiden_high y @ (value_type in_ty)))))
|
315
|
+
(rv_vwsub_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
316
|
+
|
317
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_high x @ (value_type in_ty))
|
318
|
+
(swiden_high y))))
|
319
|
+
(rv_vwsub_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
320
|
+
|
321
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_high x @ (value_type in_ty))
|
322
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
323
|
+
(if-let $true (ty_equal (lane_type in_ty) sext_ty))
|
324
|
+
(rv_vwsub_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
325
|
+
|
326
|
+
;; Unsigned Widening Low Subtractions
|
327
|
+
|
328
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register _) (isub x (uwiden_low y @ (value_type in_ty)))))
|
329
|
+
(rv_vwsubu_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
330
|
+
|
331
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_low x @ (value_type in_ty))
|
332
|
+
(uwiden_low y))))
|
333
|
+
(rv_vwsubu_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
334
|
+
|
335
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_low x @ (value_type in_ty))
|
336
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
337
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
338
|
+
(rv_vwsubu_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
339
|
+
|
340
|
+
;; Unsigned Widening High Subtractions
|
341
|
+
;; These are the same as the low widenings, but we first slide down the inputs.
|
342
|
+
|
343
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register _) (isub x (uwiden_high y @ (value_type in_ty)))))
|
344
|
+
(rv_vwsubu_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
345
|
+
|
346
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_high x @ (value_type in_ty))
|
347
|
+
(uwiden_high y))))
|
348
|
+
(rv_vwsubu_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
349
|
+
|
350
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_high x @ (value_type in_ty))
|
351
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
352
|
+
(if-let $true (ty_equal (lane_type in_ty) uext_ty))
|
353
|
+
(rv_vwsubu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
354
|
+
|
355
|
+
;; Signed Widening Mixed High/Low Subtractions
|
356
|
+
|
357
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_low x @ (value_type in_ty))
|
358
|
+
(swiden_high y))))
|
359
|
+
(rv_vwsub_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
360
|
+
|
361
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (swiden_high x @ (value_type in_ty))
|
362
|
+
(swiden_low y))))
|
363
|
+
(rv_vwsub_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
364
|
+
|
365
|
+
;; Unsigned Widening Mixed High/Low Subtractions
|
366
|
+
|
367
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_low x @ (value_type in_ty))
|
368
|
+
(uwiden_high y))))
|
369
|
+
(rv_vwsubu_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
370
|
+
|
371
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register _) (isub (uwiden_high x @ (value_type in_ty))
|
372
|
+
(uwiden_low y))))
|
373
|
+
(rv_vwsubu_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
374
|
+
|
375
|
+
|
376
|
+
;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
377
|
+
|
378
|
+
(rule (lower (has_type (ty_int ty) (ineg val)))
|
379
|
+
(neg ty val))
|
380
|
+
|
381
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (ineg x)))
|
382
|
+
(rv_vneg_v x (unmasked) ty))
|
383
|
+
|
384
|
+
|
385
|
+
;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
386
|
+
|
387
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (imul x y)))
|
388
|
+
(rv_mul x y))
|
389
|
+
|
390
|
+
(rule 1 (lower (has_type (fits_in_32 (ty_int ty)) (imul x y)))
|
391
|
+
(rv_mulw x y))
|
392
|
+
|
393
|
+
;; for I128
|
394
|
+
(rule 2 (lower (has_type $I128 (imul x y)))
|
395
|
+
(let
|
396
|
+
((x_regs ValueRegs x)
|
397
|
+
(x_lo XReg (value_regs_get x_regs 0))
|
398
|
+
(x_hi XReg (value_regs_get x_regs 1))
|
399
|
+
|
400
|
+
;; Get the high/low registers for `y`.
|
401
|
+
(y_regs ValueRegs y)
|
402
|
+
(y_lo XReg (value_regs_get y_regs 0))
|
403
|
+
(y_hi XReg (value_regs_get y_regs 1))
|
404
|
+
|
405
|
+
;; 128bit mul formula:
|
406
|
+
;; dst_lo = x_lo * y_lo
|
407
|
+
;; dst_hi = mulhu(x_lo, y_lo) + (x_lo * y_hi) + (x_hi * y_lo)
|
408
|
+
;;
|
409
|
+
;; We can convert the above formula into the following
|
410
|
+
;; mulhu dst_hi, x_lo, y_lo
|
411
|
+
;; madd dst_hi, x_lo, y_hi, dst_hi
|
412
|
+
;; madd dst_hi, x_hi, y_lo, dst_hi
|
413
|
+
;; madd dst_lo, x_lo, y_lo, zero
|
414
|
+
(dst_hi1 XReg (rv_mulhu x_lo y_lo))
|
415
|
+
(dst_hi2 XReg (madd x_lo y_hi dst_hi1))
|
416
|
+
(dst_hi XReg (madd x_hi y_lo dst_hi2))
|
417
|
+
(dst_lo XReg (madd x_lo y_lo (zero_reg))))
|
418
|
+
(value_regs dst_lo dst_hi)))
|
419
|
+
|
420
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (imul x y)))
|
421
|
+
(rv_vmul_vv x y (unmasked) ty))
|
422
|
+
|
423
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (imul (splat x) y)))
|
424
|
+
(rv_vmul_vx y x (unmasked) ty))
|
425
|
+
|
426
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (imul x (splat y))))
|
427
|
+
(rv_vmul_vx x y (unmasked) ty))
|
428
|
+
|
429
|
+
;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
430
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (smulhi x y)))
|
431
|
+
(lower_smlhi ty (sext x ty $I64) (sext y ty $I64)))
|
432
|
+
|
433
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (smulhi x y)))
|
434
|
+
(rv_vmulh_vv x y (unmasked) ty))
|
435
|
+
|
436
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (smulhi (splat x) y)))
|
437
|
+
(rv_vmulh_vx y x (unmasked) ty))
|
438
|
+
|
439
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (smulhi x (splat y))))
|
440
|
+
(rv_vmulh_vx x y (unmasked) ty))
|
441
|
+
|
442
|
+
;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
443
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (umulhi x y)))
|
444
|
+
(lower_umlhi ty (zext x ty $I64) (zext y ty $I64)))
|
445
|
+
|
446
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (umulhi x y)))
|
447
|
+
(rv_vmulhu_vv x y (unmasked) ty))
|
448
|
+
|
449
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (umulhi (splat x) y)))
|
450
|
+
(rv_vmulhu_vx y x (unmasked) ty))
|
451
|
+
|
452
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (umulhi x (splat y))))
|
453
|
+
(rv_vmulhu_vx x y (unmasked) ty))
|
454
|
+
|
455
|
+
;;;; Rules for `div` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
456
|
+
|
457
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (udiv x y)))
|
458
|
+
(let
|
459
|
+
((y2 XReg (zext y ty $I64))
|
460
|
+
(_ InstOutput (gen_div_by_zero y2)))
|
461
|
+
(rv_divuw (zext x ty $I64) y2)))
|
462
|
+
|
463
|
+
(rule -1 (lower (has_type (fits_in_32 ty) (sdiv x y)))
|
464
|
+
(let
|
465
|
+
((a XReg (sext x ty $I64))
|
466
|
+
(b XReg (sext y ty $I64))
|
467
|
+
(_ InstOutput (gen_div_overflow a b ty))
|
468
|
+
(_ InstOutput (gen_div_by_zero b)))
|
469
|
+
(rv_divw a b)))
|
470
|
+
|
471
|
+
(rule (lower (has_type $I64 (sdiv x y)))
|
472
|
+
(let
|
473
|
+
((_ InstOutput (gen_div_overflow x y $I64))
|
474
|
+
(_ InstOutput (gen_div_by_zero y)) )
|
475
|
+
(rv_div x y)))
|
476
|
+
|
477
|
+
(rule (lower (has_type $I64 (udiv x y)))
|
478
|
+
(let
|
479
|
+
((_ InstOutput (gen_div_by_zero y)))
|
480
|
+
(rv_divu x y)))
|
481
|
+
|
482
|
+
;;;; Rules for `rem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
483
|
+
|
484
|
+
(rule -1 (lower (has_type (fits_in_16 ty) (urem x y)))
|
485
|
+
(let
|
486
|
+
((y2 XReg (zext y ty $I64))
|
487
|
+
(_ InstOutput (gen_div_by_zero y2)))
|
488
|
+
(rv_remuw (zext x ty $I64) y2)))
|
489
|
+
|
490
|
+
(rule -1 (lower (has_type (fits_in_16 ty) (srem x y)))
|
491
|
+
(let
|
492
|
+
((y2 XReg (sext y ty $I64))
|
493
|
+
(_ InstOutput (gen_div_by_zero y2)))
|
494
|
+
(rv_remw (sext x ty $I64) y2)))
|
495
|
+
|
496
|
+
(rule (lower (has_type $I32 (srem x y)))
|
497
|
+
(let
|
498
|
+
((y2 XReg (sext y $I32 $I64))
|
499
|
+
(_ InstOutput (gen_div_by_zero y2)))
|
500
|
+
(rv_remw x y2)))
|
501
|
+
|
502
|
+
(rule (lower (has_type $I32 (urem x y)))
|
503
|
+
(let
|
504
|
+
((y2 XReg (zext y $I32 $I64))
|
505
|
+
(_ InstOutput (gen_div_by_zero y2)))
|
506
|
+
(rv_remuw x y2)))
|
507
|
+
|
508
|
+
(rule (lower (has_type $I64 (srem x y)))
|
509
|
+
(let
|
510
|
+
((_ InstOutput (gen_div_by_zero y)))
|
511
|
+
(rv_rem x y)))
|
512
|
+
|
513
|
+
(rule (lower (has_type $I64 (urem x y)))
|
514
|
+
(let
|
515
|
+
((_ InstOutput (gen_div_by_zero y)))
|
516
|
+
(rv_remu x y)))
|
517
|
+
|
518
|
+
;;;; Rules for `and` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
519
|
+
(rule 0 (lower (has_type (ty_int ty) (band x y)))
|
520
|
+
(gen_and ty x y))
|
521
|
+
|
522
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
523
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (band x (imm12_from_value y))))
|
524
|
+
(rv_andi x y))
|
525
|
+
|
526
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (band (imm12_from_value x) y)))
|
527
|
+
(rv_andi y x))
|
528
|
+
|
529
|
+
(rule 3 (lower (has_type (ty_scalar_float ty) (band x y)))
|
530
|
+
(lower_float_binary (AluOPRRR.And) x y ty))
|
531
|
+
|
532
|
+
;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
|
533
|
+
;; by Cranelift's `band_not` instruction that is legalized into the simpler
|
534
|
+
;; forms early on.
|
535
|
+
|
536
|
+
(rule 4 (lower (has_type (fits_in_64 (ty_int ty)) (band x (bnot y))))
|
537
|
+
(if-let $true (has_zbb))
|
538
|
+
(rv_andn x y))
|
539
|
+
|
540
|
+
(rule 5 (lower (has_type (fits_in_64 (ty_int ty)) (band (bnot y) x)))
|
541
|
+
(if-let $true (has_zbb))
|
542
|
+
(rv_andn x y))
|
543
|
+
|
544
|
+
(rule 6 (lower (has_type $I128 (band x (bnot y))))
|
545
|
+
(if-let $true (has_zbb))
|
546
|
+
(let ((low XReg (rv_andn (value_regs_get x 0) (value_regs_get y 0)))
|
547
|
+
(high XReg (rv_andn (value_regs_get x 1) (value_regs_get y 1))))
|
548
|
+
(value_regs low high)))
|
549
|
+
|
550
|
+
(rule 7 (lower (has_type $I128 (band (bnot y) x)))
|
551
|
+
(if-let $true (has_zbb))
|
552
|
+
(let ((low XReg (rv_andn (value_regs_get x 0) (value_regs_get y 0)))
|
553
|
+
(high XReg (rv_andn (value_regs_get x 1) (value_regs_get y 1))))
|
554
|
+
(value_regs low high)))
|
555
|
+
|
556
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register ty) (band x y)))
|
557
|
+
(rv_vand_vv x y (unmasked) ty))
|
558
|
+
|
559
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register ty) (band x (splat y))))
|
560
|
+
(if (ty_vector_not_float ty))
|
561
|
+
(rv_vand_vx x y (unmasked) ty))
|
562
|
+
|
563
|
+
(rule 10 (lower (has_type (ty_vec_fits_in_register ty) (band (splat x) y)))
|
564
|
+
(if (ty_vector_not_float ty))
|
565
|
+
(rv_vand_vx y x (unmasked) ty))
|
566
|
+
|
567
|
+
(rule 11 (lower (has_type (ty_vec_fits_in_register ty) (band x (replicated_imm5 y))))
|
568
|
+
(rv_vand_vi x y (unmasked) ty))
|
569
|
+
|
570
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register ty) (band (replicated_imm5 x) y)))
|
571
|
+
(rv_vand_vi y x (unmasked) ty))
|
572
|
+
|
573
|
+
|
574
|
+
;;;; Rules for `or` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
575
|
+
(rule 0 (lower (has_type (ty_int ty) (bor x y)))
|
576
|
+
(gen_or ty x y))
|
577
|
+
|
578
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
579
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bor x (imm12_from_value y))))
|
580
|
+
(rv_ori x y))
|
581
|
+
|
582
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (bor (imm12_from_value x) y)))
|
583
|
+
(rv_ori y x))
|
584
|
+
|
585
|
+
(rule 3 (lower (has_type (ty_scalar_float ty) (bor x y)))
|
586
|
+
(lower_float_binary (AluOPRRR.Or) x y ty))
|
587
|
+
|
588
|
+
;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
|
589
|
+
;; by Cranelift's `bor_not` instruction that is legalized into the simpler
|
590
|
+
;; forms early on.
|
591
|
+
|
592
|
+
(rule 4 (lower (has_type (fits_in_64 (ty_int ty)) (bor x (bnot y))))
|
593
|
+
(if-let $true (has_zbb))
|
594
|
+
(rv_orn x y))
|
595
|
+
|
596
|
+
(rule 5 (lower (has_type (fits_in_64 (ty_int ty)) (bor (bnot y) x)))
|
597
|
+
(if-let $true (has_zbb))
|
598
|
+
(rv_orn x y))
|
599
|
+
|
600
|
+
(rule 6 (lower (has_type $I128 (bor x (bnot y))))
|
601
|
+
(if-let $true (has_zbb))
|
602
|
+
(let ((low XReg (rv_orn (value_regs_get x 0) (value_regs_get y 0)))
|
603
|
+
(high XReg (rv_orn (value_regs_get x 1) (value_regs_get y 1))))
|
604
|
+
(value_regs low high)))
|
605
|
+
|
606
|
+
(rule 7 (lower (has_type $I128 (bor (bnot y) x)))
|
607
|
+
(if-let $true (has_zbb))
|
608
|
+
(let ((low XReg (rv_orn (value_regs_get x 0) (value_regs_get y 0)))
|
609
|
+
(high XReg (rv_orn (value_regs_get x 1) (value_regs_get y 1))))
|
610
|
+
(value_regs low high)))
|
611
|
+
|
612
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register ty) (bor x y)))
|
613
|
+
(rv_vor_vv x y (unmasked) ty))
|
614
|
+
|
615
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register ty) (bor x (splat y))))
|
616
|
+
(if (ty_vector_not_float ty))
|
617
|
+
(rv_vor_vx x y (unmasked) ty))
|
618
|
+
|
619
|
+
(rule 10 (lower (has_type (ty_vec_fits_in_register ty) (bor (splat x) y)))
|
620
|
+
(if (ty_vector_not_float ty))
|
621
|
+
(rv_vor_vx y x (unmasked) ty))
|
622
|
+
|
623
|
+
(rule 11 (lower (has_type (ty_vec_fits_in_register ty) (bor x (replicated_imm5 y))))
|
624
|
+
(rv_vor_vi x y (unmasked) ty))
|
625
|
+
|
626
|
+
(rule 12 (lower (has_type (ty_vec_fits_in_register ty) (bor (replicated_imm5 x) y)))
|
627
|
+
(rv_vor_vi y x (unmasked) ty))
|
628
|
+
|
629
|
+
|
630
|
+
;;;; Rules for `xor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
631
|
+
(rule 0 (lower (has_type (fits_in_64 (ty_int ty)) (bxor x y)))
|
632
|
+
(rv_xor x y))
|
633
|
+
|
634
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
635
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bxor x (imm12_from_value y))))
|
636
|
+
(rv_xori x y))
|
637
|
+
|
638
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (bxor (imm12_from_value x) y)))
|
639
|
+
(rv_xori y x))
|
640
|
+
|
641
|
+
(rule 3 (lower (has_type $I128 (bxor x y)))
|
642
|
+
(lower_b128_binary (AluOPRRR.Xor) x y))
|
643
|
+
|
644
|
+
(rule 4 (lower (has_type (ty_scalar_float ty) (bxor x y)))
|
645
|
+
(lower_float_binary (AluOPRRR.Xor) x y ty))
|
646
|
+
|
647
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (bxor x y)))
|
648
|
+
(rv_vxor_vv x y (unmasked) ty))
|
649
|
+
|
650
|
+
(rule 6 (lower (has_type (ty_vec_fits_in_register ty) (bxor x (splat y))))
|
651
|
+
(if (ty_vector_not_float ty))
|
652
|
+
(rv_vxor_vx x y (unmasked) ty))
|
653
|
+
|
654
|
+
(rule 7 (lower (has_type (ty_vec_fits_in_register ty) (bxor (splat x) y)))
|
655
|
+
(if (ty_vector_not_float ty))
|
656
|
+
(rv_vxor_vx y x (unmasked) ty))
|
657
|
+
|
658
|
+
(rule 8 (lower (has_type (ty_vec_fits_in_register ty) (bxor x (replicated_imm5 y))))
|
659
|
+
(rv_vxor_vi x y (unmasked) ty))
|
660
|
+
|
661
|
+
(rule 9 (lower (has_type (ty_vec_fits_in_register ty) (bxor (replicated_imm5 x) y)))
|
662
|
+
(rv_vxor_vi y x (unmasked) ty))
|
663
|
+
|
664
|
+
|
665
|
+
;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
666
|
+
(rule 0 (lower (has_type (ty_scalar ty) (bnot x)))
|
667
|
+
(gen_bnot ty x))
|
668
|
+
|
669
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (bnot x)))
|
670
|
+
(rv_vnot_v x (unmasked) ty))
|
671
|
+
|
672
|
+
;;;; Rules for `bit_reverse` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
673
|
+
(rule (lower (has_type (fits_in_64 (ty_int ty)) (bitrev x)))
|
674
|
+
(lower_bit_reverse x ty))
|
675
|
+
|
676
|
+
(rule 1 (lower (has_type $I128 (bitrev x)))
|
677
|
+
(let ((val ValueRegs x)
|
678
|
+
(lo_rev XReg (lower_bit_reverse (value_regs_get val 0) $I64))
|
679
|
+
(hi_rev XReg (lower_bit_reverse (value_regs_get val 1) $I64)))
|
680
|
+
(value_regs hi_rev lo_rev)))
|
681
|
+
|
682
|
+
;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
683
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bswap x)))
|
684
|
+
(gen_bswap ty x))
|
685
|
+
|
686
|
+
(rule 2 (lower (has_type $I128 (bswap x)))
|
687
|
+
(value_regs
|
688
|
+
(gen_bswap $I64 (value_regs_get x 1))
|
689
|
+
(gen_bswap $I64 (value_regs_get x 0))))
|
690
|
+
|
691
|
+
|
692
|
+
;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
693
|
+
(rule (lower (has_type (fits_in_64 ty) (ctz x)))
|
694
|
+
(lower_ctz ty x))
|
695
|
+
|
696
|
+
(rule 1 (lower (has_type $I128 (ctz x)))
|
697
|
+
(lower_ctz_128 x))
|
698
|
+
|
699
|
+
;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
700
|
+
(rule (lower (has_type (fits_in_64 ty) (clz x)))
|
701
|
+
(lower_clz ty x))
|
702
|
+
|
703
|
+
(rule 1 (lower (has_type $I128 (clz x)))
|
704
|
+
(lower_clz_i128 x))
|
705
|
+
|
706
|
+
;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
707
|
+
(rule (lower (has_type (fits_in_64 ty) (cls x)))
|
708
|
+
(lower_cls ty x))
|
709
|
+
|
710
|
+
(rule 1 (lower (has_type $I128 (cls x)))
|
711
|
+
(lower_cls_i128 x))
|
712
|
+
|
713
|
+
;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
714
|
+
(rule (lower (has_type out_ty (uextend val @ (value_type in_ty))))
|
715
|
+
(extend val (ExtendOp.Zero) in_ty out_ty))
|
716
|
+
|
717
|
+
;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
718
|
+
(rule (lower (has_type out_ty (sextend val @ (value_type in_ty))))
|
719
|
+
(extend val (ExtendOp.Signed) in_ty out_ty))
|
720
|
+
|
721
|
+
;; The instructions below are present in RV64I and sign-extend the result to 64 bits.
|
722
|
+
|
723
|
+
(rule 1 (lower (has_type $I64 (sextend (has_type $I32 (iadd x y)))))
|
724
|
+
(rv_addw x y))
|
725
|
+
|
726
|
+
(rule 1 (lower (has_type $I64 (sextend (has_type $I32 (isub x y)))))
|
727
|
+
(rv_subw x y))
|
728
|
+
|
729
|
+
(rule 1 (lower (has_type $I64 (sextend (has_type $I32 (ishl x y)))))
|
730
|
+
(rv_sllw x (value_regs_get y 0)))
|
731
|
+
|
732
|
+
(rule 1 (lower (has_type $I64 (sextend (has_type $I32 (ushr x y)))))
|
733
|
+
(rv_srlw x (value_regs_get y 0)))
|
734
|
+
|
735
|
+
(rule 1 (lower (has_type $I64 (sextend (has_type $I32 (sshr x y)))))
|
736
|
+
(rv_sraw x (value_regs_get y 0)))
|
737
|
+
|
738
|
+
|
739
|
+
(rule 2 (lower (has_type $I64 (sextend (has_type $I32 (iadd x (imm12_from_value y))))))
|
740
|
+
(rv_addiw x y))
|
741
|
+
|
742
|
+
(rule 3 (lower (has_type $I64 (sextend (has_type $I32 (iadd (imm12_from_value x) y)))))
|
743
|
+
(rv_addiw y x))
|
744
|
+
|
745
|
+
(rule 2 (lower (has_type $I64 (sextend (has_type $I32 (ishl x (imm12_from_value y))))))
|
746
|
+
(rv_slliw x y))
|
747
|
+
|
748
|
+
(rule 2 (lower (has_type $I64 (sextend (has_type $I32 (ushr x (imm12_from_value y))))))
|
749
|
+
(rv_srliw x y))
|
750
|
+
|
751
|
+
(rule 2 (lower (has_type $I64 (sextend (has_type $I32 (sshr x (imm12_from_value y))))))
|
752
|
+
(rv_sraiw x y))
|
753
|
+
|
754
|
+
;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
755
|
+
|
756
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (popcnt x)))
|
757
|
+
(lower_popcnt x ty))
|
758
|
+
|
759
|
+
(rule 1 (lower (has_type $I128 (popcnt x)))
|
760
|
+
(lower_popcnt_i128 x))
|
761
|
+
|
762
|
+
;; Popcount using multiply.
|
763
|
+
;; This is popcount64c() from
|
764
|
+
;; http://en.wikipedia.org/wiki/Hamming_weight
|
765
|
+
;;
|
766
|
+
;; Here's the C version for 32 bits:
|
767
|
+
;; x = x - ((x>> 1) & 0x55555555);
|
768
|
+
;; x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
|
769
|
+
;; x = ((x + (x >> 4)) & 0x0F0F0F0F);
|
770
|
+
;; return (x * 0x01010101) >> 24; // Here 24 is the type width - 8.
|
771
|
+
;;
|
772
|
+
;; TODO: LLVM generates a much better implementation for I8X16. See: https://godbolt.org/z/qr6vf9Gr3
|
773
|
+
;; For the other types it seems to be largely the same.
|
774
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (popcnt x)))
|
775
|
+
(if-let one (u64_to_uimm5 1))
|
776
|
+
(if-let two (u64_to_uimm5 2))
|
777
|
+
(if-let four (u64_to_uimm5 4))
|
778
|
+
|
779
|
+
(let (;; x = x - ((x >> 1) & 0x55555555);
|
780
|
+
(mask_55 XReg (imm (lane_type ty) (u64_and 0x5555555555555555 (ty_mask (lane_type ty)))))
|
781
|
+
(count2_shr VReg (rv_vsrl_vi x one (unmasked) ty))
|
782
|
+
(count2_and VReg (rv_vand_vx count2_shr mask_55 (unmasked) ty))
|
783
|
+
(count2 VReg (rv_vsub_vv x count2_and (unmasked) ty))
|
784
|
+
|
785
|
+
;; x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
|
786
|
+
(mask_33 XReg (imm (lane_type ty) (u64_and 0x3333333333333333 (ty_mask (lane_type ty)))))
|
787
|
+
(count4_shr VReg (rv_vsrl_vi count2 two (unmasked) ty))
|
788
|
+
(count4_and VReg (rv_vand_vx count4_shr mask_33 (unmasked) ty))
|
789
|
+
(count4_lhs VReg (rv_vand_vx count2 mask_33 (unmasked) ty))
|
790
|
+
(count4 VReg (rv_vadd_vv count4_lhs count4_and (unmasked) ty))
|
791
|
+
|
792
|
+
;; x = (x + (x >> 4)) & 0x0F0F0F0F;
|
793
|
+
(mask_0f XReg (imm (lane_type ty) (u64_and 0x0f0f0f0f0f0f0f0f (ty_mask (lane_type ty)))))
|
794
|
+
(count8_shr VReg (rv_vsrl_vi count4 four (unmasked) ty))
|
795
|
+
(count8_add VReg (rv_vadd_vv count4 count8_shr (unmasked) ty))
|
796
|
+
(count8 VReg (rv_vand_vx count8_add mask_0f (unmasked) ty))
|
797
|
+
|
798
|
+
;; (x * 0x01010101) >> (<ty_width> - 8)
|
799
|
+
(mask_01 XReg (imm (lane_type ty) (u64_and 0x0101010101010101 (ty_mask (lane_type ty)))))
|
800
|
+
(mul VReg (rv_vmul_vx count8 mask_01 (unmasked) ty))
|
801
|
+
(shift XReg (imm $I64 (u64_sub (ty_bits (lane_type ty)) 8)))
|
802
|
+
(res VReg (rv_vsrl_vx mul shift (unmasked) ty)))
|
803
|
+
res))
|
804
|
+
|
805
|
+
;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
806
|
+
|
807
|
+
;; 8/16 bit types need a mask on the shift amount
|
808
|
+
(rule 0 (lower (has_type (ty_int (ty_8_or_16 ty)) (ishl x y)))
|
809
|
+
(if-let mask (u64_to_imm12 (shift_mask ty)))
|
810
|
+
(rv_sllw x (rv_andi (value_regs_get y 0) mask)))
|
811
|
+
|
812
|
+
;; Using the 32bit version of `sll` automatically masks the shift amount.
|
813
|
+
(rule 1 (lower (has_type $I32 (ishl x y)))
|
814
|
+
(rv_sllw x (value_regs_get y 0)))
|
815
|
+
|
816
|
+
;; Similarly, the 64bit version does the right thing.
|
817
|
+
(rule 1 (lower (has_type $I64 (ishl x y)))
|
818
|
+
(rv_sll x (value_regs_get y 0)))
|
819
|
+
|
820
|
+
;; If the shift amount is known. We can mask it and encode it in the instruction.
|
821
|
+
(rule 2 (lower (has_type (int_fits_in_32 ty) (ishl x (maybe_uextend (imm12_from_value y)))))
|
822
|
+
(rv_slliw x (imm12_and y (shift_mask ty))))
|
823
|
+
|
824
|
+
;; We technically don't need to mask the shift amount here. The instruction
|
825
|
+
;; does the right thing. But it's neater when pretty printing it.
|
826
|
+
(rule 3 (lower (has_type ty @ $I64 (ishl x (maybe_uextend (imm12_from_value y)))))
|
827
|
+
(rv_slli x (imm12_and y (shift_mask ty))))
|
828
|
+
|
829
|
+
;; With `Zba` we have a shift that zero extends the LHS argument.
|
830
|
+
(rule 4 (lower (has_type $I64 (ishl (uextend x @ (value_type $I32)) (maybe_uextend (imm12_from_value y)))))
|
831
|
+
(if-let $true (has_zba))
|
832
|
+
(rv_slliuw x y))
|
833
|
+
|
834
|
+
;; I128 cases
|
835
|
+
(rule 4 (lower (has_type $I128 (ishl x y)))
|
836
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
837
|
+
(shamt XReg (value_regs_get tmp 0))
|
838
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
839
|
+
;;
|
840
|
+
(low XReg (rv_sll (value_regs_get x 0) shamt))
|
841
|
+
;; high part.
|
842
|
+
(high_part1 XReg (rv_srl (value_regs_get x 0) len_sub_shamt))
|
843
|
+
(high_part2 XReg (gen_select_reg (IntCC.Equal) shamt (zero_reg) (zero_reg) high_part1))
|
844
|
+
;;
|
845
|
+
(high_part3 XReg (rv_sll (value_regs_get x 1) shamt))
|
846
|
+
(high XReg (rv_or high_part2 high_part3))
|
847
|
+
;;
|
848
|
+
(const64 XReg (load_u64_constant 64))
|
849
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
850
|
+
(value_regs
|
851
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 (zero_reg) low)
|
852
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 low high))))
|
853
|
+
|
854
|
+
;; SIMD Cases
|
855
|
+
;; We don't need to mask anything since it is done by the instruction according to SEW.
|
856
|
+
|
857
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (ishl x y)))
|
858
|
+
(rv_vsll_vx x (value_regs_get y 0) (unmasked) ty))
|
859
|
+
|
860
|
+
(rule 6 (lower (has_type (ty_vec_fits_in_register ty) (ishl x (maybe_uextend (uimm5_from_value y)))))
|
861
|
+
(rv_vsll_vi x y (unmasked) ty))
|
862
|
+
|
863
|
+
;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
864
|
+
|
865
|
+
;; 8/16 bit types need a mask on the shift amount, and the LHS needs to be
|
866
|
+
;; zero extended.
|
867
|
+
(rule 0 (lower (has_type (ty_int (fits_in_16 ty)) (ushr x y)))
|
868
|
+
(if-let mask (u64_to_imm12 (shift_mask ty)))
|
869
|
+
(rv_srlw (zext x ty $I64) (rv_andi (value_regs_get y 0) mask)))
|
870
|
+
|
871
|
+
;; Using the 32bit version of `srl` automatically masks the shift amount.
|
872
|
+
(rule 1 (lower (has_type $I32 (ushr x y)))
|
873
|
+
(rv_srlw x (value_regs_get y 0)))
|
874
|
+
|
875
|
+
;; Similarly, the 64bit version does the right thing.
|
876
|
+
(rule 1 (lower (has_type $I64 (ushr x y)))
|
877
|
+
(rv_srl x (value_regs_get y 0)))
|
878
|
+
|
879
|
+
;; When the RHS is known we can just encode it in the instruction.
|
880
|
+
(rule 2 (lower (has_type (ty_int (fits_in_16 ty)) (ushr x (maybe_uextend (imm12_from_value y)))))
|
881
|
+
(rv_srliw (zext x ty $I64) (imm12_and y (shift_mask ty))))
|
882
|
+
|
883
|
+
(rule 3 (lower (has_type $I32 (ushr x (maybe_uextend (imm12_from_value y)))))
|
884
|
+
(rv_srliw x y))
|
885
|
+
|
886
|
+
(rule 3 (lower (has_type $I64 (ushr x (maybe_uextend (imm12_from_value y)))))
|
887
|
+
(rv_srli x y))
|
888
|
+
|
889
|
+
(rule 3 (lower (has_type $I128 (ushr x y)))
|
890
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
891
|
+
(shamt XReg (value_regs_get tmp 0))
|
892
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
893
|
+
;; low part.
|
894
|
+
(low_part1 XReg (rv_sll (value_regs_get x 1) len_sub_shamt))
|
895
|
+
(low_part2 XReg (gen_select_reg (IntCC.Equal) shamt (zero_reg) (zero_reg) low_part1))
|
896
|
+
;;
|
897
|
+
(low_part3 XReg (rv_srl (value_regs_get x 0) shamt))
|
898
|
+
(low XReg (rv_or low_part2 low_part3))
|
899
|
+
;;
|
900
|
+
(const64 XReg (load_u64_constant 64))
|
901
|
+
;;
|
902
|
+
(high XReg (rv_srl (value_regs_get x 1) shamt))
|
903
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
904
|
+
(value_regs
|
905
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 high low)
|
906
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 (zero_reg) high))))
|
907
|
+
|
908
|
+
;; SIMD Cases
|
909
|
+
;; We don't need to mask or extend anything since it is done by the instruction according to SEW.
|
910
|
+
|
911
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (ushr x y)))
|
912
|
+
(rv_vsrl_vx x (value_regs_get y 0) (unmasked) ty))
|
913
|
+
|
914
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (ushr x (maybe_uextend (uimm5_from_value y)))))
|
915
|
+
(rv_vsrl_vi x y (unmasked) ty))
|
916
|
+
|
917
|
+
;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
918
|
+
|
919
|
+
;; 8/16 bit types need a mask on the shift amount, and the LHS needs to be
|
920
|
+
;; zero extended.
|
921
|
+
(rule 0 (lower (has_type (ty_int (fits_in_16 ty)) (sshr x y)))
|
922
|
+
(if-let mask (u64_to_imm12 (shift_mask ty)))
|
923
|
+
(rv_sraw (sext x ty $I64) (rv_andi (value_regs_get y 0) mask)))
|
924
|
+
|
925
|
+
;; Using the 32bit version of `sra` automatically masks the shift amount.
|
926
|
+
(rule 1 (lower (has_type $I32 (sshr x y)))
|
927
|
+
(rv_sraw x (value_regs_get y 0)))
|
928
|
+
|
929
|
+
;; Similarly, the 64bit version does the right thing.
|
930
|
+
(rule 1 (lower (has_type $I64 (sshr x y)))
|
931
|
+
(rv_sra x (value_regs_get y 0)))
|
932
|
+
|
933
|
+
;; When the RHS is known we can just encode it in the instruction.
|
934
|
+
(rule 2 (lower (has_type (ty_int (fits_in_16 ty)) (sshr x (maybe_uextend (imm12_from_value y)))))
|
935
|
+
(rv_sraiw (sext x ty $I64) (imm12_and y (shift_mask ty))))
|
936
|
+
|
937
|
+
(rule 3 (lower (has_type $I32 (sshr x (maybe_uextend (imm12_from_value y)))))
|
938
|
+
(rv_sraiw x y))
|
939
|
+
|
940
|
+
(rule 3 (lower (has_type $I64 (sshr x (maybe_uextend (imm12_from_value y)))))
|
941
|
+
(rv_srai x y))
|
942
|
+
|
943
|
+
(rule 3 (lower (has_type $I128 (sshr x y)))
|
944
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
945
|
+
(shamt XReg (value_regs_get tmp 0))
|
946
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
947
|
+
;; low part.
|
948
|
+
(low_part1 XReg (rv_sll (value_regs_get x 1) len_sub_shamt))
|
949
|
+
(low_part2 XReg (gen_select_reg (IntCC.Equal) shamt (zero_reg) (zero_reg) low_part1))
|
950
|
+
;;
|
951
|
+
(low_part3 XReg (rv_srl (value_regs_get x 0) shamt))
|
952
|
+
(low XReg (rv_or low_part2 low_part3))
|
953
|
+
;;
|
954
|
+
(const64 XReg (load_u64_constant 64))
|
955
|
+
;;
|
956
|
+
(high XReg (rv_sra (value_regs_get x 1) shamt))
|
957
|
+
;;
|
958
|
+
(const_neg_1 XReg (load_imm12 -1))
|
959
|
+
;;
|
960
|
+
(high_replacement XReg (gen_select_reg (IntCC.SignedLessThan) (value_regs_get x 1) (zero_reg) const_neg_1 (zero_reg)))
|
961
|
+
(const64 XReg (load_u64_constant 64))
|
962
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
963
|
+
(value_regs
|
964
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 high low)
|
965
|
+
(gen_select_reg (IntCC.UnsignedGreaterThanOrEqual) shamt_128 const64 high_replacement high))))
|
966
|
+
|
967
|
+
;; SIMD Cases
|
968
|
+
;; We don't need to mask or extend anything since it is done by the instruction according to SEW.
|
969
|
+
|
970
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (sshr x y)))
|
971
|
+
(rv_vsra_vx x (value_regs_get y 0) (unmasked) ty))
|
972
|
+
|
973
|
+
(rule 5 (lower (has_type (ty_vec_fits_in_register ty) (sshr x (maybe_uextend (uimm5_from_value y)))))
|
974
|
+
(rv_vsra_vi x y (unmasked) ty))
|
975
|
+
|
976
|
+
|
977
|
+
;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
978
|
+
(rule (lower (has_type (fits_in_64 ty) (rotl x y)))
|
979
|
+
(lower_rotl ty (zext x ty $I64) (value_regs_get y 0)))
|
980
|
+
|
981
|
+
(rule 1 (lower (has_type $I128 (rotl x y)))
|
982
|
+
(lower_i128_rotl x y))
|
983
|
+
|
984
|
+
;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
985
|
+
(rule (lower (has_type (fits_in_64 ty) (rotr x y)))
|
986
|
+
(lower_rotr ty (zext x ty $I64) (value_regs_get y 0)))
|
987
|
+
|
988
|
+
(rule 1 (lower (has_type $I128 (rotr x y)))
|
989
|
+
(lower_i128_rotr x y))
|
990
|
+
|
991
|
+
|
992
|
+
;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
993
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fabs x)))
|
994
|
+
(rv_fabs ty x))
|
995
|
+
|
996
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fabs x)))
|
997
|
+
(rv_vfabs_v x (unmasked) ty))
|
998
|
+
|
999
|
+
;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1000
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fneg x)))
|
1001
|
+
(rv_fneg ty x))
|
1002
|
+
|
1003
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fneg x)))
|
1004
|
+
(rv_vfneg_v x (unmasked) ty))
|
1005
|
+
|
1006
|
+
;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1007
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fcopysign x y)))
|
1008
|
+
(rv_fsgnj ty x y))
|
1009
|
+
|
1010
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fcopysign x y)))
|
1011
|
+
(rv_vfsgnj_vv x y (unmasked) ty))
|
1012
|
+
|
1013
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (fcopysign x (splat y))))
|
1014
|
+
(rv_vfsgnj_vf x y (unmasked) ty))
|
1015
|
+
|
1016
|
+
;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1017
|
+
(rule (lower (has_type ty (fma x y z)))
|
1018
|
+
(rv_fmadd ty x y z))
|
1019
|
+
|
1020
|
+
|
1021
|
+
;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1022
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (sqrt x)))
|
1023
|
+
(rv_fsqrt ty x))
|
1024
|
+
|
1025
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (sqrt x)))
|
1026
|
+
(rv_vfsqrt_v x (unmasked) ty))
|
1027
|
+
|
1028
|
+
;;;; Rules for `AtomicRMW` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1029
|
+
(rule -1
|
1030
|
+
;;
|
1031
|
+
(lower
|
1032
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw flags op addr x)))
|
1033
|
+
(gen_atomic (get_atomic_rmw_op ty op) addr x (atomic_amo)))
|
1034
|
+
|
1035
|
+
;;; for I8 and I16
|
1036
|
+
(rule 1
|
1037
|
+
(lower
|
1038
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw flags op addr x)))
|
1039
|
+
(gen_atomic_rmw_loop op ty addr x))
|
1040
|
+
|
1041
|
+
;;;special for I8 and I16 max min etc.
|
1042
|
+
;;;because I need uextend or sextend the value.
|
1043
|
+
(rule 2
|
1044
|
+
(lower
|
1045
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw flags (is_atomic_rmw_max_etc op $true) addr x)))
|
1046
|
+
(gen_atomic_rmw_loop op ty addr (sext x ty $I64)))
|
1047
|
+
|
1048
|
+
|
1049
|
+
(rule 2
|
1050
|
+
;;
|
1051
|
+
(lower
|
1052
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw flags (is_atomic_rmw_max_etc op $false) addr x)))
|
1053
|
+
;;
|
1054
|
+
(gen_atomic_rmw_loop op ty addr (zext x ty $I64)))
|
1055
|
+
|
1056
|
+
;;;;; Rules for `AtomicRmwOp.Sub`
|
1057
|
+
(rule
|
1058
|
+
(lower
|
1059
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw flags (AtomicRmwOp.Sub) addr x)))
|
1060
|
+
(let
|
1061
|
+
((tmp WritableReg (temp_writable_reg ty))
|
1062
|
+
(x2 Reg (rv_neg x)))
|
1063
|
+
(gen_atomic (get_atomic_rmw_op ty (AtomicRmwOp.Add)) addr x2 (atomic_amo))))
|
1064
|
+
|
1065
|
+
(decl gen_atomic_rmw_loop (AtomicRmwOp Type XReg XReg) XReg)
|
1066
|
+
(rule
|
1067
|
+
(gen_atomic_rmw_loop op ty addr x)
|
1068
|
+
(let
|
1069
|
+
((dst WritableXReg (temp_writable_xreg))
|
1070
|
+
(t0 WritableXReg (temp_writable_xreg))
|
1071
|
+
(_ Unit (emit (MInst.AtomicRmwLoop (gen_atomic_offset addr ty) op dst ty (gen_atomic_p addr ty) x t0))))
|
1072
|
+
(writable_reg_to_reg dst)))
|
1073
|
+
|
1074
|
+
;;;;; Rules for `AtomicRmwOp.Nand`
|
1075
|
+
(rule
|
1076
|
+
(lower
|
1077
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw flags (AtomicRmwOp.Nand) addr x)))
|
1078
|
+
(gen_atomic_rmw_loop (AtomicRmwOp.Nand) ty addr x))
|
1079
|
+
|
1080
|
+
(decl is_atomic_rmw_max_etc (AtomicRmwOp bool) AtomicRmwOp)
|
1081
|
+
(extern extractor is_atomic_rmw_max_etc is_atomic_rmw_max_etc)
|
1082
|
+
|
1083
|
+
;;;;; Rules for `atomic load`;;;;;;;;;;;;;;;;;
|
1084
|
+
(rule
|
1085
|
+
(lower (has_type (valid_atomic_transaction ty) (atomic_load flags p)))
|
1086
|
+
(gen_atomic_load p ty))
|
1087
|
+
|
1088
|
+
|
1089
|
+
;;;;; Rules for `atomic store`;;;;;;;;;;;;;;;;;
|
1090
|
+
(rule
|
1091
|
+
(lower (atomic_store flags src @ (value_type (valid_atomic_transaction ty)) p))
|
1092
|
+
(gen_atomic_store p ty src))
|
1093
|
+
|
1094
|
+
(decl gen_atomic_offset (XReg Type) XReg)
|
1095
|
+
(rule 1 (gen_atomic_offset p (fits_in_16 ty))
|
1096
|
+
(rv_slli (rv_andi p (imm12_const 3)) (imm12_const 3)))
|
1097
|
+
|
1098
|
+
(rule (gen_atomic_offset p _)
|
1099
|
+
(zero_reg))
|
1100
|
+
|
1101
|
+
(decl gen_atomic_p (XReg Type) XReg)
|
1102
|
+
(rule 1 (gen_atomic_p p (fits_in_16 ty))
|
1103
|
+
(rv_andi p (imm12_const -4)))
|
1104
|
+
|
1105
|
+
(rule (gen_atomic_p p _)
|
1106
|
+
p)
|
1107
|
+
|
1108
|
+
|
1109
|
+
;;;;; Rules for `atomic cas`;;;;;;;;;;;;;;;;;
|
1110
|
+
(rule
|
1111
|
+
(lower (has_type (valid_atomic_transaction ty) (atomic_cas flags p e x)))
|
1112
|
+
(let
|
1113
|
+
((t0 WritableReg (temp_writable_reg ty))
|
1114
|
+
(dst WritableReg (temp_writable_reg ty))
|
1115
|
+
(_ Unit (emit (MInst.AtomicCas (gen_atomic_offset p ty) t0 dst (zext e ty $I64) (gen_atomic_p p ty) x ty))))
|
1116
|
+
(writable_reg_to_reg dst)))
|
1117
|
+
|
1118
|
+
;;;;; Rules for `ireduce`;;;;;;;;;;;;;;;;;
|
1119
|
+
(rule
|
1120
|
+
(lower (has_type ty (ireduce x)))
|
1121
|
+
(value_regs_get x 0))
|
1122
|
+
|
1123
|
+
;;;;; Rules for `fpromote`;;;;;;;;;;;;;;;;;
|
1124
|
+
(rule (lower (fpromote x))
|
1125
|
+
(rv_fcvtds x))
|
1126
|
+
|
1127
|
+
;;;;; Rules for `fdemote`;;;;;;;;;;;;;;;;;;
|
1128
|
+
(rule (lower (fdemote x))
|
1129
|
+
(rv_fcvtsd x))
|
1130
|
+
|
1131
|
+
|
1132
|
+
;;;;; Rules for for float arithmetic
|
1133
|
+
|
1134
|
+
|
1135
|
+
;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1136
|
+
|
1137
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fadd x y)))
|
1138
|
+
(rv_fadd ty x y))
|
1139
|
+
|
1140
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fadd x y)))
|
1141
|
+
(rv_vfadd_vv x y (unmasked) ty))
|
1142
|
+
|
1143
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (fadd x (splat y))))
|
1144
|
+
(rv_vfadd_vf x y (unmasked) ty))
|
1145
|
+
|
1146
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (fadd (splat x) y)))
|
1147
|
+
(rv_vfadd_vf y x (unmasked) ty))
|
1148
|
+
|
1149
|
+
|
1150
|
+
;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1151
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fsub x y)))
|
1152
|
+
(rv_fsub ty x y))
|
1153
|
+
|
1154
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fsub x y)))
|
1155
|
+
(rv_vfsub_vv x y (unmasked) ty))
|
1156
|
+
|
1157
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (fsub x (splat y))))
|
1158
|
+
(rv_vfsub_vf x y (unmasked) ty))
|
1159
|
+
|
1160
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (fsub (splat x) y)))
|
1161
|
+
(rv_vfrsub_vf y x (unmasked) ty))
|
1162
|
+
|
1163
|
+
;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1164
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fmul x y)))
|
1165
|
+
(rv_fmul ty x y))
|
1166
|
+
|
1167
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fmul x y)))
|
1168
|
+
(rv_vfmul_vv x y (unmasked) ty))
|
1169
|
+
|
1170
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (fmul x (splat y))))
|
1171
|
+
(rv_vfmul_vf x y (unmasked) ty))
|
1172
|
+
|
1173
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (fmul (splat x) y)))
|
1174
|
+
(rv_vfmul_vf y x (unmasked) ty))
|
1175
|
+
|
1176
|
+
|
1177
|
+
;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1178
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fdiv x y)))
|
1179
|
+
(rv_fdiv ty x y))
|
1180
|
+
|
1181
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fdiv x y)))
|
1182
|
+
(rv_vfdiv_vv x y (unmasked) ty))
|
1183
|
+
|
1184
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (fdiv x (splat y))))
|
1185
|
+
(rv_vfdiv_vf x y (unmasked) ty))
|
1186
|
+
|
1187
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (fdiv (splat x) y)))
|
1188
|
+
(rv_vfrdiv_vf y x (unmasked) ty))
|
1189
|
+
|
1190
|
+
;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1191
|
+
|
1192
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fmin x y)))
|
1193
|
+
(gen_float_select (FloatSelectOP.Min) x y ty))
|
1194
|
+
|
1195
|
+
;; vfmin does almost the right thing, but it does not handle NaN's correctly.
|
1196
|
+
;; We should return a NaN if any of the inputs is a NaN, but vfmin returns the
|
1197
|
+
;; number input instead.
|
1198
|
+
;;
|
1199
|
+
;; TODO: We can improve this by using a masked `fmin` instruction that modifies
|
1200
|
+
;; the canonical nan register. That way we could avoid the `vmerge.vv` instruction.
|
1201
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fmin x y)))
|
1202
|
+
(let ((is_not_nan VReg (gen_fcmp_mask ty (FloatCC.Ordered) x y))
|
1203
|
+
(nan XReg (imm $I64 (canonical_nan_u64 (lane_type ty))))
|
1204
|
+
(vec_nan VReg (rv_vmv_vx nan ty))
|
1205
|
+
(min VReg (rv_vfmin_vv x y (unmasked) ty)))
|
1206
|
+
(rv_vmerge_vvm vec_nan min is_not_nan ty)))
|
1207
|
+
|
1208
|
+
;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1209
|
+
|
1210
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fmax x y)))
|
1211
|
+
(gen_float_select (FloatSelectOP.Max) x y ty))
|
1212
|
+
|
1213
|
+
;; vfmax does almost the right thing, but it does not handle NaN's correctly.
|
1214
|
+
;; We should return a NaN if any of the inputs is a NaN, but vfmax returns the
|
1215
|
+
;; number input instead.
|
1216
|
+
;;
|
1217
|
+
;; TODO: We can improve this by using a masked `fmax` instruction that modifies
|
1218
|
+
;; the canonical nan register. That way we could avoid the `vmerge.vv` instruction.
|
1219
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fmax x y)))
|
1220
|
+
(let ((is_not_nan VReg (gen_fcmp_mask ty (FloatCC.Ordered) x y))
|
1221
|
+
(nan XReg (imm $I64 (canonical_nan_u64 (lane_type ty))))
|
1222
|
+
(vec_nan VReg (rv_vmv_vx nan ty))
|
1223
|
+
(max VReg (rv_vfmax_vv x y (unmasked) ty)))
|
1224
|
+
(rv_vmerge_vvm vec_nan max is_not_nan ty)))
|
1225
|
+
|
1226
|
+
;;;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1227
|
+
|
1228
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fmin_pseudo x y)))
|
1229
|
+
(gen_float_select_pseudo (FloatSelectOP.Min) x y ty))
|
1230
|
+
|
1231
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fmin_pseudo x y)))
|
1232
|
+
(let ((mask VReg (gen_fcmp_mask ty (FloatCC.LessThan) y x)))
|
1233
|
+
(rv_vmerge_vvm x y mask ty)))
|
1234
|
+
|
1235
|
+
;;;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1236
|
+
|
1237
|
+
(rule 0 (lower (has_type (ty_scalar_float ty) (fmax_pseudo x y)))
|
1238
|
+
(gen_float_select_pseudo (FloatSelectOP.Max) x y ty))
|
1239
|
+
|
1240
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (fmax_pseudo x y)))
|
1241
|
+
(let ((mask VReg (gen_fcmp_mask ty (FloatCC.LessThan) x y)))
|
1242
|
+
(rv_vmerge_vvm x y mask ty)))
|
1243
|
+
|
1244
|
+
;;;;; Rules for `stack_addr`;;;;;;;;;
|
1245
|
+
(rule
|
1246
|
+
(lower (stack_addr ss offset))
|
1247
|
+
(gen_stack_addr ss offset))
|
1248
|
+
|
1249
|
+
;;;;; Rules for `is_null`;;;;;;;;;
|
1250
|
+
|
1251
|
+
;; Null references are represented by the constant value `0`.
|
1252
|
+
(rule (lower (is_null v))
|
1253
|
+
(rv_seqz v))
|
1254
|
+
|
1255
|
+
;;;;; Rules for `is_invalid`;;;;;;;;;
|
1256
|
+
|
1257
|
+
;; Invalid references are represented by the constant value `-1`.
|
1258
|
+
(rule (lower (is_invalid v))
|
1259
|
+
(rv_seqz (rv_addi v (imm12_const 1))))
|
1260
|
+
|
1261
|
+
;;;;; Rules for `select`;;;;;;;;;
|
1262
|
+
(rule
|
1263
|
+
(lower (has_type ty (select c @ (value_type cty) x y)))
|
1264
|
+
(gen_select ty (truthy_to_reg cty (normalize_cmp_value cty c (ExtendOp.Zero))) x y))
|
1265
|
+
|
1266
|
+
(rule 1
|
1267
|
+
(lower (has_type (fits_in_64 ty) (select (icmp cc a b @ (value_type (fits_in_64 in_ty))) x y)))
|
1268
|
+
(let ((a XReg (truthy_to_reg in_ty (normalize_cmp_value in_ty a (intcc_to_extend_op cc))))
|
1269
|
+
(b XReg (truthy_to_reg in_ty (normalize_cmp_value in_ty b (intcc_to_extend_op cc)))))
|
1270
|
+
(gen_select_reg cc a b x y)))
|
1271
|
+
|
1272
|
+
;;;;; Rules for `bitselect`;;;;;;;;;
|
1273
|
+
|
1274
|
+
;; Do a (c & x) | (~c & y) operation.
|
1275
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (bitselect c x y)))
|
1276
|
+
(let ((tmp_x XReg (rv_and c x))
|
1277
|
+
(c_inverse XReg (rv_not c))
|
1278
|
+
(tmp_y XReg (rv_and c_inverse y)))
|
1279
|
+
(rv_or tmp_x tmp_y)))
|
1280
|
+
|
1281
|
+
;; For vectors, we also do the same operation.
|
1282
|
+
;; We can technically use any type in the bitwise operations, but prefer
|
1283
|
+
;; using the type of the inputs so that we avoid emitting unnecessary
|
1284
|
+
;; `vsetvl` instructions. It's likeley that the vector unit is already
|
1285
|
+
;; configured for that type.
|
1286
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (bitselect c x y)))
|
1287
|
+
(let ((tmp_x VReg (rv_vand_vv c x (unmasked) ty))
|
1288
|
+
(c_inverse VReg (rv_vnot_v c (unmasked) ty))
|
1289
|
+
(tmp_y VReg (rv_vand_vv c_inverse y (unmasked) ty)))
|
1290
|
+
(rv_vor_vv tmp_x tmp_y (unmasked) ty)))
|
1291
|
+
|
1292
|
+
;;;;; Rules for `isplit`;;;;;;;;;
|
1293
|
+
(rule
|
1294
|
+
(lower (isplit x))
|
1295
|
+
(let
|
1296
|
+
((t1 XReg (value_regs_get x 0))
|
1297
|
+
(t2 XReg (value_regs_get x 1)))
|
1298
|
+
(output_pair t1 t2)))
|
1299
|
+
|
1300
|
+
;;;;; Rules for `iconcat`;;;;;;;;;
|
1301
|
+
(rule
|
1302
|
+
(lower (has_type $I128 (iconcat x y)))
|
1303
|
+
(let
|
1304
|
+
((t1 XReg x)
|
1305
|
+
(t2 XReg y))
|
1306
|
+
(value_regs t1 t2)))
|
1307
|
+
|
1308
|
+
|
1309
|
+
;;;;; Rules for `smax`;;;;;;;;;
|
1310
|
+
|
1311
|
+
(rule 0 (lower (has_type (ty_int ty) (smax x y)))
|
1312
|
+
(gen_int_select ty (IntSelectOP.Smax) (ext_int_if_need $true x ty) (ext_int_if_need $true y ty)))
|
1313
|
+
|
1314
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (smax x y)))
|
1315
|
+
(rv_vmax_vv x y (unmasked) ty))
|
1316
|
+
|
1317
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (smax x (splat y))))
|
1318
|
+
(rv_vmax_vx x y (unmasked) ty))
|
1319
|
+
|
1320
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (smax (splat x) y)))
|
1321
|
+
(rv_vmax_vx y x (unmasked) ty))
|
1322
|
+
|
1323
|
+
;;;;; Rules for `smin`;;;;;;;;;
|
1324
|
+
|
1325
|
+
(rule 0 (lower (has_type (ty_int ty) (smin x y)))
|
1326
|
+
(gen_int_select ty (IntSelectOP.Smin) (ext_int_if_need $true x ty) (ext_int_if_need $true y ty)))
|
1327
|
+
|
1328
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (smin x y)))
|
1329
|
+
(rv_vmin_vv x y (unmasked) ty))
|
1330
|
+
|
1331
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (smin x (splat y))))
|
1332
|
+
(rv_vmin_vx x y (unmasked) ty))
|
1333
|
+
|
1334
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (smin (splat x) y)))
|
1335
|
+
(rv_vmin_vx y x (unmasked) ty))
|
1336
|
+
|
1337
|
+
;;;;; Rules for `umax`;;;;;;;;;
|
1338
|
+
|
1339
|
+
(rule 0 (lower (has_type (ty_int ty) (umax x y)))
|
1340
|
+
(gen_int_select ty (IntSelectOP.Umax) (ext_int_if_need $false x ty) (ext_int_if_need $false y ty)))
|
1341
|
+
|
1342
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (umax x y)))
|
1343
|
+
(rv_vmaxu_vv x y (unmasked) ty))
|
1344
|
+
|
1345
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (umax x (splat y))))
|
1346
|
+
(rv_vmaxu_vx x y (unmasked) ty))
|
1347
|
+
|
1348
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (umax (splat x) y)))
|
1349
|
+
(rv_vmaxu_vx y x (unmasked) ty))
|
1350
|
+
|
1351
|
+
;;;;; Rules for `umin`;;;;;;;;;
|
1352
|
+
|
1353
|
+
(rule 0 (lower (has_type (ty_int ty) (umin x y)))
|
1354
|
+
(gen_int_select ty (IntSelectOP.Umin) (ext_int_if_need $false x ty) (ext_int_if_need $false y ty)))
|
1355
|
+
|
1356
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (umin x y)))
|
1357
|
+
(rv_vminu_vv x y (unmasked) ty))
|
1358
|
+
|
1359
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (umin x (splat y))))
|
1360
|
+
(rv_vminu_vx x y (unmasked) ty))
|
1361
|
+
|
1362
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (umin (splat x) y)))
|
1363
|
+
(rv_vminu_vx y x (unmasked) ty))
|
1364
|
+
|
1365
|
+
|
1366
|
+
;;;;; Rules for `debugtrap`;;;;;;;;;
|
1367
|
+
(rule
|
1368
|
+
(lower (debugtrap))
|
1369
|
+
(side_effect (SideEffectNoResult.Inst (MInst.EBreak))))
|
1370
|
+
|
1371
|
+
;;;;; Rules for `fence`;;;;;;;;;
|
1372
|
+
(rule
|
1373
|
+
(lower (fence))
|
1374
|
+
(side_effect (SideEffectNoResult.Inst (MInst.Fence 15 15))))
|
1375
|
+
|
1376
|
+
;;;;; Rules for `trap`;;;;;;;;;
|
1377
|
+
(rule
|
1378
|
+
(lower (trap code))
|
1379
|
+
(udf code))
|
1380
|
+
|
1381
|
+
;;;;; Rules for `resumable_trap`;;;;;;;;;
|
1382
|
+
(rule
|
1383
|
+
(lower (resumable_trap code))
|
1384
|
+
(udf code))
|
1385
|
+
|
1386
|
+
;;;;; Rules for `uload8`;;;;;;;;;
|
1387
|
+
(rule
|
1388
|
+
(lower (uload8 flags p @ (value_type (ty_addr64 _)) offset))
|
1389
|
+
(gen_load p offset (int_load_op $false 8) flags $I64))
|
1390
|
+
;;;;; Rules for `sload8`;;;;;;;;;
|
1391
|
+
(rule
|
1392
|
+
(lower (sload8 flags p @ (value_type (ty_addr64 _)) offset))
|
1393
|
+
(gen_load p offset (int_load_op $true 8) flags $I64))
|
1394
|
+
;;;;; Rules for `uload16`;;;;;;;;;
|
1395
|
+
(rule
|
1396
|
+
(lower (uload16 flags p @ (value_type (ty_addr64 _)) offset))
|
1397
|
+
(gen_load p offset (int_load_op $false 16) flags $I64))
|
1398
|
+
|
1399
|
+
;;;;; Rules for `iload16`;;;;;;;;;
|
1400
|
+
(rule
|
1401
|
+
(lower (sload16 flags p @ (value_type (ty_addr64 _)) offset))
|
1402
|
+
(gen_load p offset (int_load_op $true 16) flags $I64))
|
1403
|
+
|
1404
|
+
;;;;; Rules for `uload32`;;;;;;;;;
|
1405
|
+
(rule
|
1406
|
+
(lower (uload32 flags p @ (value_type (ty_addr64 _)) offset))
|
1407
|
+
(gen_load p offset (int_load_op $false 32) flags $I64))
|
1408
|
+
|
1409
|
+
;;;;; Rules for `iload16`;;;;;;;;;
|
1410
|
+
(rule
|
1411
|
+
(lower (sload32 flags p @ (value_type (ty_addr64 _)) offset))
|
1412
|
+
(gen_load p offset (int_load_op $true 32) flags $I64))
|
1413
|
+
|
1414
|
+
(rule
|
1415
|
+
(lower (has_type ty (load flags p @ (value_type (ty_addr64 _)) offset)))
|
1416
|
+
(gen_load p offset (load_op ty) flags ty)
|
1417
|
+
)
|
1418
|
+
;;;; for I128
|
1419
|
+
(rule 1
|
1420
|
+
(lower (has_type $I128 (load flags p @ (value_type (ty_addr64 _)) offset)))
|
1421
|
+
(gen_load_128 p offset flags))
|
1422
|
+
|
1423
|
+
(rule 2
|
1424
|
+
(lower (has_type (ty_vec_fits_in_register ty) (load flags p @ (value_type (ty_addr64 _)) offset)))
|
1425
|
+
(let ((eew VecElementWidth (element_width_from_type ty)))
|
1426
|
+
(vec_load eew (VecAMode.UnitStride (gen_amode p offset $I64)) flags (unmasked) ty)))
|
1427
|
+
|
1428
|
+
;;;;; Rules for Load + Extend Combos ;;;;;;;;;
|
1429
|
+
|
1430
|
+
;; These rules cover the special loads that load a 64bit value and do some sort of extension.
|
1431
|
+
;; We don't have any special instructions to do this, so just load the 64 bits as a vector, and
|
1432
|
+
;; do a SEW/2 extension. This only reads half width elements from the source vector register
|
1433
|
+
;; extends it, and writes the back the full register.
|
1434
|
+
|
1435
|
+
(decl gen_load64_extend (Type ExtendOp MemFlags XReg Offset32) VReg)
|
1436
|
+
|
1437
|
+
(rule (gen_load64_extend ty (ExtendOp.Signed) flags addr offset)
|
1438
|
+
(let ((eew VecElementWidth (element_width_from_type $I64))
|
1439
|
+
(load_state VState (vstate_from_type $I64))
|
1440
|
+
(loaded VReg (vec_load eew (VecAMode.UnitStride (gen_amode addr offset $I64)) flags (unmasked) load_state)))
|
1441
|
+
(rv_vsext_vf2 loaded (unmasked) ty)))
|
1442
|
+
|
1443
|
+
(rule (gen_load64_extend ty (ExtendOp.Zero) flags addr offset)
|
1444
|
+
(let ((eew VecElementWidth (element_width_from_type $I64))
|
1445
|
+
(load_state VState (vstate_from_type $I64))
|
1446
|
+
(loaded VReg (vec_load eew (VecAMode.UnitStride (gen_amode addr offset $I64)) flags (unmasked) load_state)))
|
1447
|
+
(rv_vzext_vf2 loaded (unmasked) ty)))
|
1448
|
+
|
1449
|
+
;;;;; Rules for `uload8x8`;;;;;;;;;;
|
1450
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I16X8) (uload8x8 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1451
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags addr offset))
|
1452
|
+
|
1453
|
+
;;;;; Rules for `uload16x4`;;;;;;;;;
|
1454
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I32X4) (uload16x4 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1455
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags addr offset))
|
1456
|
+
|
1457
|
+
;;;;; Rules for `uload32x2`;;;;;;;;;
|
1458
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I64X2) (uload32x2 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1459
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags addr offset))
|
1460
|
+
|
1461
|
+
;;;;; Rules for `sload8x8`;;;;;;;;;;
|
1462
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I16X8) (sload8x8 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1463
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags addr offset))
|
1464
|
+
|
1465
|
+
;;;;; Rules for `sload16x4`;;;;;;;;;
|
1466
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I32X4) (sload16x4 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1467
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags addr offset))
|
1468
|
+
|
1469
|
+
;;;;; Rules for `sload32x2`;;;;;;;;;
|
1470
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I64X2) (sload32x2 flags addr @ (value_type (ty_addr64 _)) offset)))
|
1471
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags addr offset))
|
1472
|
+
|
1473
|
+
;;;;; Rules for `istore8`;;;;;;;;;
|
1474
|
+
(rule
|
1475
|
+
(lower (istore8 flags x p @ (value_type (ty_addr64 _)) offset))
|
1476
|
+
(gen_store p offset (StoreOP.Sb) flags x))
|
1477
|
+
;;;;; Rules for `istore16`;;;;;;;;;
|
1478
|
+
(rule
|
1479
|
+
(lower (istore16 flags x p @ (value_type (ty_addr64 _)) offset))
|
1480
|
+
(gen_store p offset (StoreOP.Sh) flags x))
|
1481
|
+
|
1482
|
+
;;;;; Rules for `istore32`;;;;;;;;;
|
1483
|
+
(rule
|
1484
|
+
(lower (istore32 flags x p @ (value_type (ty_addr64 _)) offset))
|
1485
|
+
(gen_store p offset (StoreOP.Sw) flags x))
|
1486
|
+
|
1487
|
+
;;;;; Rules for `store`;;;;;;;;;
|
1488
|
+
(rule
|
1489
|
+
(lower (store flags x @ (value_type ty) p @ (value_type (ty_addr64 _)) offset))
|
1490
|
+
(gen_store p offset (store_op ty) flags x))
|
1491
|
+
|
1492
|
+
;;; special for I128
|
1493
|
+
(rule 1
|
1494
|
+
(lower (store flags x @ (value_type $I128 ) p @ (value_type (ty_addr64 _)) offset))
|
1495
|
+
(gen_store_128 p offset flags x))
|
1496
|
+
|
1497
|
+
(rule 2
|
1498
|
+
(lower (store flags x @ (value_type (ty_vec_fits_in_register ty)) p @ (value_type (ty_addr64 _)) offset))
|
1499
|
+
(let ((eew VecElementWidth (element_width_from_type ty)))
|
1500
|
+
(vec_store eew (VecAMode.UnitStride (gen_amode p offset $I64)) x flags (unmasked) ty)))
|
1501
|
+
|
1502
|
+
(decl gen_icmp (IntCC ValueRegs ValueRegs Type) XReg)
|
1503
|
+
(rule
|
1504
|
+
(gen_icmp cc x y ty)
|
1505
|
+
(let
|
1506
|
+
((result WritableXReg (temp_writable_xreg))
|
1507
|
+
(_ Unit (emit (MInst.Icmp cc result x y ty))))
|
1508
|
+
result))
|
1509
|
+
|
1510
|
+
;;;;; Rules for `icmp`;;;;;;;;;
|
1511
|
+
(rule 0 (lower (icmp cc x @ (value_type (ty_int ty)) y))
|
1512
|
+
(lower_icmp cc x y ty))
|
1513
|
+
|
1514
|
+
(rule 1 (lower (icmp cc x @ (value_type (ty_vec_fits_in_register ty)) y))
|
1515
|
+
(gen_expand_mask ty (gen_icmp_mask ty cc x y)))
|
1516
|
+
|
1517
|
+
|
1518
|
+
;;;;; Rules for `fcmp`;;;;;;;;;
|
1519
|
+
(rule 0 (lower (fcmp cc x @ (value_type (ty_scalar_float ty)) y))
|
1520
|
+
(cmp_value (emit_fcmp cc ty x y)))
|
1521
|
+
|
1522
|
+
(rule 1 (lower (fcmp cc x @ (value_type (ty_vec_fits_in_register ty)) y))
|
1523
|
+
(gen_expand_mask ty (gen_fcmp_mask ty cc x y)))
|
1524
|
+
|
1525
|
+
;;;;; Rules for `func_addr`;;;;;;;;;
|
1526
|
+
(rule
|
1527
|
+
(lower (func_addr (func_ref_data _ name _)))
|
1528
|
+
(load_ext_name name 0))
|
1529
|
+
|
1530
|
+
;;;;; Rules for `fcvt_to_uint`;;;;;;;;;
|
1531
|
+
(rule
|
1532
|
+
(lower (has_type to (fcvt_to_uint v @ (value_type from))))
|
1533
|
+
(gen_fcvt_int $false v $false from to))
|
1534
|
+
|
1535
|
+
;;;;; Rules for `fcvt_to_sint`;;;;;;;;;
|
1536
|
+
(rule
|
1537
|
+
(lower (has_type to (fcvt_to_sint v @ (value_type from))))
|
1538
|
+
(gen_fcvt_int $false v $true from to))
|
1539
|
+
|
1540
|
+
;;;;; Rules for `fcvt_to_sint_sat`;;;;;;;;;
|
1541
|
+
(rule
|
1542
|
+
(lower (has_type to (fcvt_to_sint_sat v @ (value_type from))))
|
1543
|
+
(gen_fcvt_int $true v $true from to))
|
1544
|
+
|
1545
|
+
;;;;; Rules for `fcvt_to_uint_sat`;;;;;;;;;
|
1546
|
+
(rule
|
1547
|
+
(lower (has_type to (fcvt_to_uint_sat v @ (value_type from))))
|
1548
|
+
(gen_fcvt_int $true v $false from to))
|
1549
|
+
|
1550
|
+
;;;;; Rules for `fcvt_from_sint`;;;;;;;;;
|
1551
|
+
(rule
|
1552
|
+
(lower (has_type to (fcvt_from_sint v @ (value_type from_ty))))
|
1553
|
+
(let ((float_op FpuOPRR (int_convert_2_float_op from_ty $true to))
|
1554
|
+
(value XReg (normalize_fcvt_from_int v from_ty (ExtendOp.Signed))))
|
1555
|
+
(fpu_rr float_op to value)))
|
1556
|
+
|
1557
|
+
;;;;; Rules for `fcvt_from_uint`;;;;;;;;;
|
1558
|
+
(rule
|
1559
|
+
(lower (has_type to (fcvt_from_uint v @ (value_type from_ty))))
|
1560
|
+
(let ((float_op FpuOPRR (int_convert_2_float_op from_ty $false to))
|
1561
|
+
(value XReg (normalize_fcvt_from_int v from_ty (ExtendOp.Zero))))
|
1562
|
+
(fpu_rr float_op to value)))
|
1563
|
+
|
1564
|
+
;;;;; Rules for `symbol_value`;;;;;;;;;
|
1565
|
+
(rule
|
1566
|
+
(lower (symbol_value (symbol_value_data name _ offset)))
|
1567
|
+
(load_ext_name name offset)
|
1568
|
+
)
|
1569
|
+
;;;;; Rules for `bitcast`;;;;;;;;;
|
1570
|
+
(rule
|
1571
|
+
(lower (has_type out_ty (bitcast _ v @ (value_type in_ty))))
|
1572
|
+
(gen_bitcast v in_ty out_ty))
|
1573
|
+
|
1574
|
+
;;;;; Rules for `ceil`;;;;;;;;;
|
1575
|
+
(rule
|
1576
|
+
(lower (has_type ty (ceil x)))
|
1577
|
+
(gen_float_round (FloatRoundOP.Ceil) x ty)
|
1578
|
+
)
|
1579
|
+
|
1580
|
+
;;;;; Rules for `floor`;;;;;;;;;
|
1581
|
+
(rule
|
1582
|
+
(lower (has_type ty (floor x)))
|
1583
|
+
(gen_float_round (FloatRoundOP.Floor) x ty))
|
1584
|
+
;;;;; Rules for `trunc`;;;;;;;;;
|
1585
|
+
(rule
|
1586
|
+
(lower (has_type ty (trunc x)))
|
1587
|
+
(gen_float_round (FloatRoundOP.Trunc) x ty))
|
1588
|
+
|
1589
|
+
;;;;; Rules for `nearest`;;;;;;;;;
|
1590
|
+
(rule
|
1591
|
+
(lower (has_type ty (nearest x)))
|
1592
|
+
(gen_float_round (FloatRoundOP.Nearest) x ty))
|
1593
|
+
|
1594
|
+
|
1595
|
+
;;;;; Rules for `select_spectre_guard`;;;;;;;;;
|
1596
|
+
|
1597
|
+
;; SelectSpectreGuard is equivalent to Select, but we should not use a branch based
|
1598
|
+
;; lowering for it. Instead we use a conditional move based lowering.
|
1599
|
+
;;
|
1600
|
+
;; We don't have cmov's in RISC-V either, but we can emulate those using bitwise
|
1601
|
+
;; operations, which is what we do below.
|
1602
|
+
(rule (lower (has_type ty (select_spectre_guard cmp @ (value_type cmp_ty) x @ (value_type arg_ty) y)))
|
1603
|
+
(let (;; Build a mask that is 0 or -1 depending on the input comparision value.
|
1604
|
+
;; `lower_bmask` handles normalizing the input.
|
1605
|
+
(mask ValueRegs (lower_bmask arg_ty cmp_ty cmp))
|
1606
|
+
;; Using the mask above we can select either `x` or `y` by
|
1607
|
+
;; performing a bitwise `and` on both sides and then merging them
|
1608
|
+
;; together. We know that only the bits of one of the sides will be selected.
|
1609
|
+
;; TODO: We can use `andn` here if we have `Zbb`
|
1610
|
+
(lhs ValueRegs (gen_and arg_ty x mask))
|
1611
|
+
(rhs ValueRegs (gen_and arg_ty y (gen_bnot arg_ty mask))))
|
1612
|
+
(gen_or arg_ty lhs rhs)))
|
1613
|
+
|
1614
|
+
;;;;; Rules for `bmask`;;;;;;;;;
|
1615
|
+
(rule
|
1616
|
+
(lower (has_type oty (bmask x @ (value_type ity))))
|
1617
|
+
(lower_bmask oty ity x))
|
1618
|
+
|
1619
|
+
;; N.B.: the Ret itself is generated by the ABI.
|
1620
|
+
(rule (lower (return args))
|
1621
|
+
(lower_return args))
|
1622
|
+
|
1623
|
+
;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;;
|
1624
|
+
|
1625
|
+
(rule (lower (get_frame_pointer))
|
1626
|
+
(gen_mov_from_preg (fp_reg)))
|
1627
|
+
|
1628
|
+
(rule (lower (get_stack_pointer))
|
1629
|
+
(gen_mov_from_preg (sp_reg)))
|
1630
|
+
|
1631
|
+
(rule (lower (get_return_address))
|
1632
|
+
(load_ra))
|
1633
|
+
|
1634
|
+
;;; Rules for `iabs` ;;;;;;;;;;;;;
|
1635
|
+
|
1636
|
+
;; I64 and lower
|
1637
|
+
;; Generate the following code:
|
1638
|
+
;; sext.{b,h,w} a0, a0
|
1639
|
+
;; neg a1, a0
|
1640
|
+
;; max a0, a0, a1
|
1641
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (iabs x)))
|
1642
|
+
(let ((extended XReg (sext x ty $I64))
|
1643
|
+
(negated XReg (rv_neg extended)))
|
1644
|
+
(max $I64 extended negated)))
|
1645
|
+
|
1646
|
+
;; For vectors we generate the same code, but with vector instructions
|
1647
|
+
;; we can skip the sign extension, since the vector unit will only process
|
1648
|
+
;; Element Sized chunks.
|
1649
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (iabs x)))
|
1650
|
+
(let ((negated VReg (rv_vneg_v x (unmasked) ty)))
|
1651
|
+
(rv_vmax_vv x negated (unmasked) ty)))
|
1652
|
+
|
1653
|
+
;;;; Rules for calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1654
|
+
|
1655
|
+
(rule (lower (call (func_ref_data sig_ref extname dist) inputs))
|
1656
|
+
(gen_call sig_ref extname dist inputs))
|
1657
|
+
|
1658
|
+
(rule (lower (call_indirect sig_ref val inputs))
|
1659
|
+
(gen_call_indirect sig_ref val inputs))
|
1660
|
+
|
1661
|
+
;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
|
1662
|
+
|
1663
|
+
(rule (lower (return_call (func_ref_data sig_ref extname dist) args))
|
1664
|
+
(gen_return_call sig_ref extname dist args))
|
1665
|
+
|
1666
|
+
(rule (lower (return_call_indirect sig_ref callee args))
|
1667
|
+
(gen_return_call_indirect sig_ref callee args))
|
1668
|
+
|
1669
|
+
|
1670
|
+
;;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1671
|
+
|
1672
|
+
(rule (lower (extractlane x @ (value_type ty) (u8_from_uimm8 idx)))
|
1673
|
+
(gen_extractlane ty x idx))
|
1674
|
+
|
1675
|
+
;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1676
|
+
|
1677
|
+
;; We can insert a lane by using a masked splat from an X register.
|
1678
|
+
;; Build a mask that is only enabled in the lane we want to insert.
|
1679
|
+
;; Then use a masked splat (vmerge) to insert the value.
|
1680
|
+
(rule 0 (lower (insertlane vec @ (value_type (ty_vec_fits_in_register ty))
|
1681
|
+
val @ (value_type (ty_int _))
|
1682
|
+
(u8_from_uimm8 lane)))
|
1683
|
+
(let ((mask VReg (gen_vec_mask (u64_shl 1 lane))))
|
1684
|
+
(rv_vmerge_vxm vec val mask ty)))
|
1685
|
+
|
1686
|
+
;; Similar to above, but using the float variants of the instructions.
|
1687
|
+
(rule 1 (lower (insertlane vec @ (value_type (ty_vec_fits_in_register ty))
|
1688
|
+
val @ (value_type (ty_scalar_float _))
|
1689
|
+
(u8_from_uimm8 lane)))
|
1690
|
+
(let ((mask VReg (gen_vec_mask (u64_shl 1 lane))))
|
1691
|
+
(rv_vfmerge_vfm vec val mask ty)))
|
1692
|
+
|
1693
|
+
;; If we are inserting from an Imm5 const we can use the immediate
|
1694
|
+
;; variant of vmerge.
|
1695
|
+
(rule 2 (lower (insertlane vec @ (value_type (ty_vec_fits_in_register ty))
|
1696
|
+
(iconst (u64_from_imm64 (imm5_from_u64 imm)))
|
1697
|
+
(u8_from_uimm8 lane)))
|
1698
|
+
(let ((mask VReg (gen_vec_mask (u64_shl 1 lane))))
|
1699
|
+
(rv_vmerge_vim vec imm mask ty)))
|
1700
|
+
|
1701
|
+
;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1702
|
+
|
1703
|
+
(rule 0 (lower (has_type ty (splat n @ (value_type (ty_scalar_float _)))))
|
1704
|
+
(rv_vfmv_vf n ty))
|
1705
|
+
|
1706
|
+
(rule 1 (lower (has_type ty (splat n @ (value_type (ty_int_ref_scalar_64 _)))))
|
1707
|
+
(rv_vmv_vx n ty))
|
1708
|
+
|
1709
|
+
(rule 2 (lower (has_type ty (splat (iconst (u64_from_imm64 (imm5_from_u64 imm))))))
|
1710
|
+
(rv_vmv_vi imm ty))
|
1711
|
+
|
1712
|
+
;; TODO: We can splat out more patterns by using for example a vmv.v.i i8x16 for
|
1713
|
+
;; a i64x2 const with a compatible bit pattern. The AArch64 Backend does something
|
1714
|
+
;; similar in its splat rules.
|
1715
|
+
;; TODO: Look through bitcasts when splatting out registers. We can use
|
1716
|
+
;; `vmv.v.x` in a `(splat.f32x4 (bitcast.f32 val))`. And vice versa for integers.
|
1717
|
+
|
1718
|
+
;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1719
|
+
|
1720
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (uadd_sat x y)))
|
1721
|
+
(rv_vsaddu_vv x y (unmasked) ty))
|
1722
|
+
|
1723
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (uadd_sat x (splat y))))
|
1724
|
+
(rv_vsaddu_vx x y (unmasked) ty))
|
1725
|
+
|
1726
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (uadd_sat (splat x) y)))
|
1727
|
+
(rv_vsaddu_vx y x (unmasked) ty))
|
1728
|
+
|
1729
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (uadd_sat x (replicated_imm5 y))))
|
1730
|
+
(rv_vsaddu_vi x y (unmasked) ty))
|
1731
|
+
|
1732
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (uadd_sat (replicated_imm5 x) y)))
|
1733
|
+
(rv_vsaddu_vi y x (unmasked) ty))
|
1734
|
+
|
1735
|
+
;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1736
|
+
|
1737
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (sadd_sat x y)))
|
1738
|
+
(rv_vsadd_vv x y (unmasked) ty))
|
1739
|
+
|
1740
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (sadd_sat x (splat y))))
|
1741
|
+
(rv_vsadd_vx x y (unmasked) ty))
|
1742
|
+
|
1743
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (sadd_sat (splat x) y)))
|
1744
|
+
(rv_vsadd_vx y x (unmasked) ty))
|
1745
|
+
|
1746
|
+
(rule 3 (lower (has_type (ty_vec_fits_in_register ty) (sadd_sat x (replicated_imm5 y))))
|
1747
|
+
(rv_vsadd_vi x y (unmasked) ty))
|
1748
|
+
|
1749
|
+
(rule 4 (lower (has_type (ty_vec_fits_in_register ty) (sadd_sat (replicated_imm5 x) y)))
|
1750
|
+
(rv_vsadd_vi y x (unmasked) ty))
|
1751
|
+
|
1752
|
+
;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1753
|
+
|
1754
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (usub_sat x y)))
|
1755
|
+
(rv_vssubu_vv x y (unmasked) ty))
|
1756
|
+
|
1757
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (usub_sat x (splat y))))
|
1758
|
+
(rv_vssubu_vx x y (unmasked) ty))
|
1759
|
+
|
1760
|
+
;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1761
|
+
|
1762
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (ssub_sat x y)))
|
1763
|
+
(rv_vssub_vv x y (unmasked) ty))
|
1764
|
+
|
1765
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (ssub_sat x (splat y))))
|
1766
|
+
(rv_vssub_vx x y (unmasked) ty))
|
1767
|
+
|
1768
|
+
;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1769
|
+
|
1770
|
+
;; Here we do a Vector Reduce operation. Get the unsigned minimum value of any
|
1771
|
+
;; lane in the vector. The fixed input to the reduce operation is a 1.
|
1772
|
+
;; This way, if any lane is 0, the result will be 0. Otherwise, the result will
|
1773
|
+
;; be a 1.
|
1774
|
+
;; The reduce operation leaves the result in the lowest lane, we then move it
|
1775
|
+
;; into the destination X register.
|
1776
|
+
(rule (lower (vall_true x @ (value_type (ty_vec_fits_in_register ty))))
|
1777
|
+
(if-let one (imm5_from_i8 1))
|
1778
|
+
;; We don't need to broadcast the immediate into all lanes, only into lane 0.
|
1779
|
+
;; I did it this way since it uses one less instruction than with a vmv.s.x.
|
1780
|
+
(let ((fixed VReg (rv_vmv_vi one ty))
|
1781
|
+
(min VReg (rv_vredminu_vs x fixed (unmasked) ty)))
|
1782
|
+
(rv_vmv_xs min ty)))
|
1783
|
+
|
1784
|
+
|
1785
|
+
;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1786
|
+
|
1787
|
+
;; Here we do a Vector Reduce operation. Get the unsigned maximum value of the
|
1788
|
+
;; input vector register. Move the max to an X register, and do a `snez` on it
|
1789
|
+
;; to ensure its either 1 or 0.
|
1790
|
+
(rule (lower (vany_true x @ (value_type (ty_vec_fits_in_register ty))))
|
1791
|
+
(let ((max VReg (rv_vredmaxu_vs x x (unmasked) ty))
|
1792
|
+
(x_max XReg (rv_vmv_xs max ty)))
|
1793
|
+
(rv_snez x_max)))
|
1794
|
+
|
1795
|
+
|
1796
|
+
;;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1797
|
+
|
1798
|
+
;; To check if the MSB of a lane is set, we do a `vmslt` with zero, this sets
|
1799
|
+
;; the mask bit to 1 if the value is negative (MSB 1) and 0 if not. We can then
|
1800
|
+
;; just move that mask to an X Register.
|
1801
|
+
;;
|
1802
|
+
;; We must ensure that the move to the X register has a SEW with enough bits
|
1803
|
+
;; to hold the full mask. Additionally, in some cases (e.g. i64x2) we are going
|
1804
|
+
;; to read some tail bits. These are undefined, so we need to further mask them
|
1805
|
+
;; off.
|
1806
|
+
(rule (lower (vhigh_bits x @ (value_type (ty_vec_fits_in_register ty))))
|
1807
|
+
(let ((mask VReg (rv_vmslt_vx x (zero_reg) (unmasked) ty))
|
1808
|
+
;; Here we only need I64X1, but emit an AVL of 2 since it
|
1809
|
+
;; saves one vector state change in the case of I64X2.
|
1810
|
+
;;
|
1811
|
+
;; TODO: For types that have more lanes than element bits, we can
|
1812
|
+
;; use the original type as a VState and avoid a state change.
|
1813
|
+
(x_mask XReg (rv_vmv_xs mask (vstate_from_type $I64X2))))
|
1814
|
+
(gen_andi x_mask (ty_lane_mask ty))))
|
1815
|
+
|
1816
|
+
;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1817
|
+
|
1818
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (swizzle x y)))
|
1819
|
+
(rv_vrgather_vv x y (unmasked) ty))
|
1820
|
+
|
1821
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (swizzle x (splat y))))
|
1822
|
+
(rv_vrgather_vx x y (unmasked) ty))
|
1823
|
+
|
1824
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (swizzle x (replicated_uimm5 y))))
|
1825
|
+
(rv_vrgather_vi x y (unmasked) ty))
|
1826
|
+
|
1827
|
+
;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1828
|
+
|
1829
|
+
;; Use a vrgather to load all 0-15 lanes from x. And then modify the mask to load all
|
1830
|
+
;; 16-31 lanes from y. Finally, use a vor to combine the two vectors.
|
1831
|
+
;;
|
1832
|
+
;; vrgather will insert a 0 for lanes that are out of bounds, so we can let it load
|
1833
|
+
;; negative and out of bounds indexes.
|
1834
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty @ $I8X16) (shuffle x y (vconst_from_immediate mask))))
|
1835
|
+
(if-let neg16 (imm5_from_i8 -16))
|
1836
|
+
(let ((x_mask VReg (gen_constant ty mask))
|
1837
|
+
(x_lanes VReg (rv_vrgather_vv x x_mask (unmasked) ty))
|
1838
|
+
(y_mask VReg (rv_vadd_vi x_mask neg16 (unmasked) ty))
|
1839
|
+
(y_lanes VReg (rv_vrgather_vv y y_mask (unmasked) ty)))
|
1840
|
+
(rv_vor_vv x_lanes y_lanes (unmasked) ty)))
|
1841
|
+
|
1842
|
+
;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1843
|
+
|
1844
|
+
;; Slide down half the vector, and do a signed extension.
|
1845
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_high x @ (value_type in_ty))))
|
1846
|
+
(rv_vsext_vf2 (gen_slidedown_half in_ty x) (unmasked) out_ty))
|
1847
|
+
|
1848
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_high (swiden_high x @ (value_type in_ty)))))
|
1849
|
+
(if-let (uimm5_from_u64 amt) (u64_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
1850
|
+
(rv_vsext_vf4 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
1851
|
+
|
1852
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_high (swiden_high (swiden_high x @ (value_type in_ty))))))
|
1853
|
+
(if-let (uimm5_from_u64 amt) (u64_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
1854
|
+
(rv_vsext_vf8 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
1855
|
+
|
1856
|
+
;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1857
|
+
|
1858
|
+
;; Slide down half the vector, and do a zero extension.
|
1859
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_high x @ (value_type in_ty))))
|
1860
|
+
(rv_vzext_vf2 (gen_slidedown_half in_ty x) (unmasked) out_ty))
|
1861
|
+
|
1862
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_high (uwiden_high x @ (value_type in_ty)))))
|
1863
|
+
(if-let (uimm5_from_u64 amt) (u64_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
1864
|
+
(rv_vzext_vf4 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
1865
|
+
|
1866
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_high (uwiden_high (uwiden_high x @ (value_type in_ty))))))
|
1867
|
+
(if-let (uimm5_from_u64 amt) (u64_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
1868
|
+
(rv_vzext_vf8 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
1869
|
+
|
1870
|
+
;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1871
|
+
|
1872
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_low x)))
|
1873
|
+
(rv_vsext_vf2 x (unmasked) out_ty))
|
1874
|
+
|
1875
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_low (swiden_low x))))
|
1876
|
+
(rv_vsext_vf4 x (unmasked) out_ty))
|
1877
|
+
|
1878
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register out_ty) (swiden_low (swiden_low (swiden_low x)))))
|
1879
|
+
(rv_vsext_vf8 x (unmasked) out_ty))
|
1880
|
+
|
1881
|
+
;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1882
|
+
|
1883
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_low x)))
|
1884
|
+
(rv_vzext_vf2 x (unmasked) out_ty))
|
1885
|
+
|
1886
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_low (uwiden_low x))))
|
1887
|
+
(rv_vzext_vf4 x (unmasked) out_ty))
|
1888
|
+
|
1889
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register out_ty) (uwiden_low (uwiden_low (uwiden_low x)))))
|
1890
|
+
(rv_vzext_vf8 x (unmasked) out_ty))
|
1891
|
+
|
1892
|
+
;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1893
|
+
|
1894
|
+
;; We don't have a dedicated instruction for this, rearrange the register elements
|
1895
|
+
;; and use a vadd.
|
1896
|
+
;;
|
1897
|
+
;; We do this by building two masks, one for the even elements and one for the odd
|
1898
|
+
;; elements. Using vcompress we can extract the elements and group them together.
|
1899
|
+
;;
|
1900
|
+
;; This is likely not the optimal way of doing this. LLVM does this using a bunch
|
1901
|
+
;; of vrgathers (See: https://godbolt.org/z/jq8Wj8WG4), that doesen't seem to be
|
1902
|
+
;; too much better than this.
|
1903
|
+
;;
|
1904
|
+
;; However V8 does something better. They use 2 vcompresses using LMUL2, that means
|
1905
|
+
;; that they can do the whole thing in 3 instructions (2 vcompress + vadd). We don't
|
1906
|
+
;; support LMUL > 1, so we can't do that.
|
1907
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty) (iadd_pairwise x y)))
|
1908
|
+
(if-let half_size (u64_to_uimm5 (u64_udiv (ty_lane_count ty) 2)))
|
1909
|
+
(let ((odd_mask VReg (gen_vec_mask 0x5555555555555555))
|
1910
|
+
(lhs_lo VReg (rv_vcompress_vm x odd_mask ty))
|
1911
|
+
(lhs_hi VReg (rv_vcompress_vm y odd_mask ty))
|
1912
|
+
(lhs VReg (rv_vslideup_vvi lhs_lo lhs_hi half_size (unmasked) ty))
|
1913
|
+
|
1914
|
+
(even_mask VReg (gen_vec_mask 0xAAAAAAAAAAAAAAAA))
|
1915
|
+
(rhs_lo VReg (rv_vcompress_vm x even_mask ty))
|
1916
|
+
(rhs_hi VReg (rv_vcompress_vm y even_mask ty))
|
1917
|
+
(rhs VReg (rv_vslideup_vvi rhs_lo rhs_hi half_size (unmasked) ty)))
|
1918
|
+
(rv_vadd_vv lhs rhs (unmasked) ty)))
|
1919
|
+
|
1920
|
+
;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1921
|
+
|
1922
|
+
;; `avg_round` computes the unsigned average with rounding: a := (x + y + 1) // 2
|
1923
|
+
;;
|
1924
|
+
;; See Section "2–5 Average of Two Integers" of the Hacker's Delight book
|
1925
|
+
;;
|
1926
|
+
;; The floor average of two integers without overflow can be computed as:
|
1927
|
+
;; t = (x & y) + ((x ^ y) >> 1)
|
1928
|
+
;;
|
1929
|
+
;; The right shift should be a logical shift if the integers are unsigned.
|
1930
|
+
;;
|
1931
|
+
;; We are however interested in the ceiling average (x + y + 1). For that
|
1932
|
+
;; we use a special rounding mode in the right shift instruction.
|
1933
|
+
;;
|
1934
|
+
;; For the right shift instruction we use `vssrl` which is a Scaling Shift
|
1935
|
+
;; Right Logical instruction using the `vxrm` fixed-point rouding mode. The
|
1936
|
+
;; default rounding mode is `rnu` (round-to-nearest-up (add +0.5 LSB)).
|
1937
|
+
;; Which is coincidentally the rounding mode we want for `avg_round`.
|
1938
|
+
(rule (lower (has_type (ty_vec_fits_in_register ty) (avg_round x y)))
|
1939
|
+
(if-let one (u64_to_uimm5 1))
|
1940
|
+
(let ((lhs VReg (rv_vand_vv x y (unmasked) ty))
|
1941
|
+
(xor VReg (rv_vxor_vv x y (unmasked) ty))
|
1942
|
+
(rhs VReg (rv_vssrl_vi xor one (unmasked) ty)))
|
1943
|
+
(rv_vadd_vv lhs rhs (unmasked) ty)))
|
1944
|
+
|
1945
|
+
;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1946
|
+
|
1947
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (scalar_to_vector x)))
|
1948
|
+
(if (ty_vector_not_float ty))
|
1949
|
+
(let ((zero VReg (rv_vmv_vx (zero_reg) ty))
|
1950
|
+
(mask VReg (gen_vec_mask 1)))
|
1951
|
+
(rv_vmerge_vxm zero x mask ty)))
|
1952
|
+
|
1953
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (scalar_to_vector x)))
|
1954
|
+
(if (ty_vector_float ty))
|
1955
|
+
(let ((zero VReg (rv_vmv_vx (zero_reg) ty))
|
1956
|
+
(elem VReg (rv_vfmv_sf x ty))
|
1957
|
+
(mask VReg (gen_vec_mask 1)))
|
1958
|
+
(rv_vmerge_vvm zero elem mask ty)))
|
1959
|
+
|
1960
|
+
;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1961
|
+
|
1962
|
+
(rule 0 (lower (has_type (ty_vec_fits_in_register ty) (sqmul_round_sat x y)))
|
1963
|
+
(rv_vsmul_vv x y (unmasked) ty))
|
1964
|
+
|
1965
|
+
(rule 1 (lower (has_type (ty_vec_fits_in_register ty) (sqmul_round_sat x (splat y))))
|
1966
|
+
(rv_vsmul_vx x y (unmasked) ty))
|
1967
|
+
|
1968
|
+
(rule 2 (lower (has_type (ty_vec_fits_in_register ty) (sqmul_round_sat (splat x) y)))
|
1969
|
+
(rv_vsmul_vx y x (unmasked) ty))
|
1970
|
+
|
1971
|
+
;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1972
|
+
|
1973
|
+
(rule (lower (has_type (ty_vec_fits_in_register out_ty) (snarrow x @ (value_type in_ty) y)))
|
1974
|
+
(if-let lane_diff (u64_to_uimm5 (u64_udiv (ty_lane_count out_ty) 2)))
|
1975
|
+
(if-let zero (u64_to_uimm5 0))
|
1976
|
+
(let ((x_clip VReg (rv_vnclip_wi x zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
1977
|
+
(y_clip VReg (rv_vnclip_wi y zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
1978
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|
1979
|
+
|
1980
|
+
;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1981
|
+
|
1982
|
+
(rule (lower (has_type (ty_vec_fits_in_register out_ty) (uunarrow x @ (value_type in_ty) y)))
|
1983
|
+
(if-let lane_diff (u64_to_uimm5 (u64_udiv (ty_lane_count out_ty) 2)))
|
1984
|
+
(if-let zero (u64_to_uimm5 0))
|
1985
|
+
(let ((x_clip VReg (rv_vnclipu_wi x zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
1986
|
+
(y_clip VReg (rv_vnclipu_wi y zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
1987
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|
1988
|
+
|
1989
|
+
;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1990
|
+
|
1991
|
+
;; We don't have a instruction that saturates a signed source into an unsigned destination.
|
1992
|
+
;; To correct for this we just remove negative values using `vmax` and then use the normal
|
1993
|
+
;; unsigned to unsigned narrowing instruction.
|
1994
|
+
|
1995
|
+
(rule (lower (has_type (ty_vec_fits_in_register out_ty) (unarrow x @ (value_type in_ty) y)))
|
1996
|
+
(if-let lane_diff (u64_to_uimm5 (u64_udiv (ty_lane_count out_ty) 2)))
|
1997
|
+
(if-let zero (u64_to_uimm5 0))
|
1998
|
+
(let ((x_pos VReg (rv_vmax_vx x (zero_reg) (unmasked) in_ty))
|
1999
|
+
(y_pos VReg (rv_vmax_vx y (zero_reg) (unmasked) in_ty))
|
2000
|
+
(x_clip VReg (rv_vnclipu_wi x_pos zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
2001
|
+
(y_clip VReg (rv_vnclipu_wi y_pos zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
2002
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|