wasmtime 37.0.2 → 38.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +82 -107
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/cap-primitives-3.4.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.lock +340 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.toml +96 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.toml.orig +47 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/src/fs/via_parent/open_parent.rs +126 -0
- data/ext/cargo-vendor/cap-primitives-3.4.5/src/rustix/linux/fs/stat_impl.rs +56 -0
- data/ext/cargo-vendor/cap-std-3.4.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-std-3.4.5/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cap-std-3.4.5/Cargo.lock +313 -0
- data/ext/cargo-vendor/cap-std-3.4.5/Cargo.toml +77 -0
- data/ext/cargo-vendor/cap-std-3.4.5/Cargo.toml.orig +32 -0
- data/ext/cargo-vendor/cap-std-3.4.5/src/net/tcp_listener.rs +248 -0
- data/ext/cargo-vendor/cap-std-3.4.5/src/os/unix/net/unix_listener.rs +156 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.lock +133 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.toml +98 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.toml.orig +25 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/src/rex.rs +236 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.toml +73 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.toml.orig +13 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/src/generate/inst.rs +322 -0
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/src/generate.rs +110 -0
- data/ext/cargo-vendor/cranelift-bforest-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.lock +25 -0
- data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.toml +79 -0
- data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.toml.orig +19 -0
- data/ext/cargo-vendor/cranelift-bitset-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.lock +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.toml +94 -0
- data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.toml.orig +22 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.lock +1352 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.toml +252 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.toml.orig +130 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/inline.rs +1546 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/ir/instructions.rs +1540 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/abi.rs +1619 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/args.rs +726 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/emit.rs +3678 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/mod.rs +3106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst.isle +5205 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/lower.isle +3273 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/call_conv.rs +145 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst/emit.rs +699 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst/mod.rs +936 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst.isle +794 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/lower.isle +1838 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst/emit.rs +2877 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst/mod.rs +1933 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst.isle +3264 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/lower.isle +3140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/mod.rs +300 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/abi.rs +1526 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst/emit.rs +3551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst/mod.rs +3542 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst.isle +4946 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/lower.isle +4075 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/abi.rs +1336 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/args.rs +1063 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/emit.rs +2188 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/mod.rs +1662 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst.isle +4099 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/lower/isle.rs +1250 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/lower.isle +5061 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/mod.rs +272 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/pcc.rs +324 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/lib.rs +123 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/abi.rs +2572 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/blockorder.rs +485 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/isle.rs +839 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/lower.rs +1777 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/arithmetic.isle +343 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/bitops.isle +231 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/icmp.isle +304 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/selects.isle +104 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/shifts.isle +314 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/prelude_lower.isle +1204 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/settings.rs +568 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/verifier/mod.rs +2258 -0
- data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/write.rs +724 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.lock +110 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.toml +90 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.toml.orig +26 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/formats.rs +158 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/instructions.rs +504 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/mod.rs +61 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/operands.rs +173 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/settings.rs +336 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_asm.rs +740 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_inst.rs +1387 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_isle.rs +1226 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_settings.rs +423 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/isa/riscv64.rs +190 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/isa/x86.rs +428 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/entities.rs +142 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/formats.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/instructions.rs +3905 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/settings.rs +376 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.toml +34 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.toml.orig +14 -0
- data/ext/cargo-vendor/cranelift-control-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.toml +45 -0
- data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.toml.orig +25 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.lock +77 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.toml +95 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.toml.orig +24 -0
- data/ext/cargo-vendor/cranelift-entity-0.125.4/src/primary.rs +570 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.lock +531 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.toml +117 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.toml.orig +32 -0
- data/ext/cargo-vendor/cranelift-frontend-0.125.4/src/frontend.rs +2030 -0
- data/ext/cargo-vendor/cranelift-isle-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.lock +322 -0
- data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.toml +89 -0
- data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.toml.orig +26 -0
- data/ext/cargo-vendor/cranelift-native-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.lock +305 -0
- data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.toml +54 -0
- data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.toml.orig +24 -0
- data/ext/cargo-vendor/cranelift-srcgen-0.125.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-srcgen-0.125.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.toml +70 -0
- data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.toml.orig +14 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.lock +2181 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.toml +79 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.toml.orig +27 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.lock +138 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.toml +56 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.toml.orig +21 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/README.md +31 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/category.rs +86 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/category_color.rs +41 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/counters.rs +156 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/cpu_delta.rs +60 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/fast_hash_map.rs +3 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/frame.rs +75 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/frame_table.rs +146 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/func_table.rs +110 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/global_lib_table.rs +119 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/lib.rs +81 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/lib_mappings.rs +161 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/library_info.rs +121 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/marker_table.rs +251 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/markers.rs +831 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/native_symbols.rs +71 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/process.rs +121 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/profile.rs +1169 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/reference_timestamp.rs +44 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/resource_table.rs +62 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/sample_table.rs +335 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/serialization_helpers.rs +41 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/stack_table.rs +79 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/string_table.rs +66 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/thread.rs +263 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/thread_string_table.rs +50 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/timestamp.rs +68 -0
- data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/tests/integration_tests/main.rs +1540 -0
- data/ext/cargo-vendor/pulley-interpreter-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/pulley-interpreter-38.0.4/Cargo.lock +426 -0
- data/ext/cargo-vendor/pulley-interpreter-38.0.4/Cargo.toml +144 -0
- data/ext/cargo-vendor/pulley-interpreter-38.0.4/src/lib.rs +1423 -0
- data/ext/cargo-vendor/pulley-macros-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-macros-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/pulley-macros-38.0.4/Cargo.lock +47 -0
- data/ext/cargo-vendor/pulley-macros-38.0.4/Cargo.toml +42 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.lock +2231 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.toml +552 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.toml.orig +410 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/build.rs +100 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/compile.rs +1052 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/config.rs +3776 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/engine/serialization.rs +801 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/engine.rs +963 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/lib.rs +440 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/component.rs +913 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/concurrent/futures_and_streams.rs +4326 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/concurrent.rs +4687 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func/host.rs +957 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func/typed.rs +2888 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func.rs +977 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/instance.rs +1030 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/mod.rs +758 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/coredump.rs +356 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/func.rs +2666 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/instantiate.rs +285 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/memory.rs +1118 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/module.rs +1231 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/profiling.rs +350 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/store.rs +2785 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/memory.rs +275 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/table.rs +51 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/tag.rs +55 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trap.rs +634 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/component/libcalls.rs +1363 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/component.rs +1042 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/helpers.c +50 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/instance.rs +1864 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/interpreter.rs +506 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/interpreter_disabled.rs +63 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching/stack/unix/x86_64.rs +86 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching/stack/unix.rs +350 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching.rs +691 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/custom/capi.rs +185 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/custom/traphandlers.rs +46 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/miri/traphandlers.rs +6 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/machports.rs +513 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/signals.rs +558 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/traphandlers.rs +59 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/windows/traphandlers.rs +11 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/windows/vectored_exceptions.rs +289 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/throw.rs +128 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/traphandlers.rs +1369 -0
- data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/vmcontext.rs +1727 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.lock +681 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.toml +241 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.toml.orig +82 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/address_map.rs +138 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/builtin.rs +458 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/mod.rs +487 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/module_artifacts.rs +310 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/module_environ.rs +1313 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/artifacts.rs +30 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/compiler.rs +22 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/dfg.rs +1235 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/info.rs +1186 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/translate/inline.rs +1867 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component.rs +213 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/hostcall.rs +83 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/key.rs +452 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/lib.rs +82 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/module.rs +796 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/module_artifacts.rs +812 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/trap_encoding.rs +251 -0
- data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/vmoffsets.rs +1177 -0
- data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/Cargo.lock +840 -0
- data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/Cargo.toml +128 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/Cargo.lock +285 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/Cargo.toml +146 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/codegen.rs +787 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_async.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_concurrent.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_tracing_async.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_async.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_concurrent.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_tracing_async.rs +206 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_concurrent.rs +272 -0
- data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/Cargo.toml +38 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/Cargo.lock +711 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/Cargo.toml +187 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/compiler/component.rs +1721 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/compiler.rs +1541 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/func_environ/stack_switching/instructions.rs +1917 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/func_environ.rs +4313 -0
- data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/lib.rs +449 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.lock +343 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.toml +107 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.toml.orig +41 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/build.rs +35 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/lib.rs +431 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/aarch64.rs +189 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/arm.rs +95 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/riscv64.rs +166 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/s390x.rs +117 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/x86.rs +118 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/x86_64.rs +168 -0
- data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch.rs +73 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/Cargo.lock +203 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/Cargo.toml +110 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/Cargo.lock +104 -0
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/Cargo.toml +91 -0
- data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/Cargo.toml +78 -0
- data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/Cargo.toml +70 -0
- data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/Cargo.lock +328 -0
- data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/src/stackwalk.rs +261 -0
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/Cargo.lock +47 -0
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/Cargo.lock +649 -0
- data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/Cargo.toml +132 -0
- data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/src/compiler.rs +401 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/Cargo.lock +193 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/src/config.rs +164 -0
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/src/lib.rs +3530 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/Cargo.lock +2501 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/Cargo.toml +262 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/lib.rs +48 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/sockets/tcp.rs +819 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/view.rs +95 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/tests/all/p3/mod.rs +154 -0
- data/ext/cargo-vendor/wasmtime-wasi-38.0.4/tests/all/store.rs +86 -0
- data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/Cargo.lock +1200 -0
- data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/Cargo.toml +105 -0
- data/ext/cargo-vendor/wiggle-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wiggle-38.0.4/Cargo.lock +1157 -0
- data/ext/cargo-vendor/wiggle-38.0.4/Cargo.toml +139 -0
- data/ext/cargo-vendor/wiggle-generate-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wiggle-generate-38.0.4/Cargo.lock +115 -0
- data/ext/cargo-vendor/wiggle-generate-38.0.4/Cargo.toml +102 -0
- data/ext/cargo-vendor/wiggle-macro-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/wiggle-macro-38.0.4/Cargo.lock +127 -0
- data/ext/cargo-vendor/wiggle-macro-38.0.4/Cargo.toml +98 -0
- data/ext/cargo-vendor/winch-codegen-38.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-38.0.4/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/winch-codegen-38.0.4/Cargo.lock +620 -0
- data/ext/cargo-vendor/winch-codegen-38.0.4/Cargo.toml +133 -0
- data/ext/cargo-vendor/winch-codegen-38.0.4/src/codegen/env.rs +415 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +1627 -1652
- data/ext/cargo-vendor/byteorder-1.5.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/byteorder-1.5.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/byteorder-1.5.0/.github/workflows/ci.yml +0 -183
- data/ext/cargo-vendor/byteorder-1.5.0/CHANGELOG.md +0 -143
- data/ext/cargo-vendor/byteorder-1.5.0/COPYING +0 -3
- data/ext/cargo-vendor/byteorder-1.5.0/Cargo.toml +0 -54
- data/ext/cargo-vendor/byteorder-1.5.0/Cargo.toml.orig +0 -34
- data/ext/cargo-vendor/byteorder-1.5.0/LICENSE-MIT +0 -21
- data/ext/cargo-vendor/byteorder-1.5.0/README.md +0 -77
- data/ext/cargo-vendor/byteorder-1.5.0/UNLICENSE +0 -24
- data/ext/cargo-vendor/byteorder-1.5.0/benches/bench.rs +0 -326
- data/ext/cargo-vendor/byteorder-1.5.0/rustfmt.toml +0 -2
- data/ext/cargo-vendor/byteorder-1.5.0/src/io.rs +0 -1592
- data/ext/cargo-vendor/byteorder-1.5.0/src/lib.rs +0 -3975
- data/ext/cargo-vendor/cap-primitives-3.4.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-primitives-3.4.4/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.lock +0 -260
- data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.toml +0 -96
- data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.toml.orig +0 -47
- data/ext/cargo-vendor/cap-primitives-3.4.4/src/fs/via_parent/open_parent.rs +0 -126
- data/ext/cargo-vendor/cap-primitives-3.4.4/src/rustix/linux/fs/stat_impl.rs +0 -55
- data/ext/cargo-vendor/cap-std-3.4.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-std-3.4.4/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cap-std-3.4.4/Cargo.lock +0 -233
- data/ext/cargo-vendor/cap-std-3.4.4/Cargo.toml +0 -77
- data/ext/cargo-vendor/cap-std-3.4.4/Cargo.toml.orig +0 -32
- data/ext/cargo-vendor/cap-std-3.4.4/src/net/tcp_listener.rs +0 -248
- data/ext/cargo-vendor/cap-std-3.4.4/src/os/unix/net/unix_listener.rs +0 -156
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.lock +0 -133
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.toml +0 -98
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.toml.orig +0 -25
- data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/src/rex.rs +0 -236
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.lock +0 -16
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.toml +0 -73
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.toml.orig +0 -13
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/src/generate/inst.rs +0 -307
- data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/src/generate.rs +0 -150
- data/ext/cargo-vendor/cranelift-bforest-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.lock +0 -25
- data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.toml +0 -79
- data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.toml.orig +0 -19
- data/ext/cargo-vendor/cranelift-bitset-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.lock +0 -73
- data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.toml +0 -94
- data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.toml.orig +0 -22
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.lock +0 -1352
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.toml +0 -252
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.toml.orig +0 -130
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/inline.rs +0 -1542
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/ir/instructions.rs +0 -1515
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/abi.rs +0 -1616
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/emit.rs +0 -3666
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/mod.rs +0 -3098
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst.isle +0 -5184
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/lower.isle +0 -3240
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/call_conv.rs +0 -145
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst/emit.rs +0 -693
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst/mod.rs +0 -927
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst.isle +0 -783
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/lower.isle +0 -1831
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst/emit.rs +0 -2856
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst/mod.rs +0 -1925
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst.isle +0 -3252
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/lower.isle +0 -3133
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/mod.rs +0 -294
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/abi.rs +0 -1526
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst/emit.rs +0 -3543
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst/mod.rs +0 -3533
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst.isle +0 -4934
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/lower.isle +0 -4069
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/abi.rs +0 -1334
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/args.rs +0 -1048
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/emit.rs +0 -2183
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/mod.rs +0 -1652
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst.isle +0 -4074
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/lower/isle.rs +0 -1245
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/lower.isle +0 -5055
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/mod.rs +0 -262
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/pcc.rs +0 -322
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/lib.rs +0 -123
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/abi.rs +0 -2567
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/blockorder.rs +0 -471
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/isle.rs +0 -815
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/lower.rs +0 -1763
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/arithmetic.isle +0 -333
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/bitops.isle +0 -204
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/icmp.isle +0 -300
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/selects.isle +0 -100
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/shifts.isle +0 -307
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/prelude_lower.isle +0 -1196
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/settings.rs +0 -572
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/verifier/mod.rs +0 -2205
- data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/write.rs +0 -723
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.lock +0 -110
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.toml +0 -90
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.toml.orig +0 -26
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/formats.rs +0 -144
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/instructions.rs +0 -494
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/mod.rs +0 -72
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/operands.rs +0 -169
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/settings.rs +0 -429
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_asm.rs +0 -740
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_inst.rs +0 -1311
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_isle.rs +0 -1199
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_settings.rs +0 -452
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/isa/riscv64.rs +0 -195
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/isa/x86.rs +0 -448
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/entities.rs +0 -131
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/formats.rs +0 -224
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/instructions.rs +0 -3873
- data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/settings.rs +0 -411
- data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.lock +0 -7
- data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.toml +0 -34
- data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.toml.orig +0 -14
- data/ext/cargo-vendor/cranelift-control-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.lock +0 -16
- data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.toml.orig +0 -25
- data/ext/cargo-vendor/cranelift-entity-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.lock +0 -77
- data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.toml +0 -95
- data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.toml.orig +0 -24
- data/ext/cargo-vendor/cranelift-entity-0.124.2/src/primary.rs +0 -548
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.lock +0 -531
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.toml +0 -117
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.toml.orig +0 -32
- data/ext/cargo-vendor/cranelift-frontend-0.124.2/src/frontend.rs +0 -2028
- data/ext/cargo-vendor/cranelift-isle-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.lock +0 -322
- data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.toml +0 -89
- data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.toml.orig +0 -26
- data/ext/cargo-vendor/cranelift-native-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.lock +0 -305
- data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.toml +0 -54
- data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.toml.orig +0 -24
- data/ext/cargo-vendor/cranelift-srcgen-0.124.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-srcgen-0.124.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.lock +0 -7
- data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.toml +0 -70
- data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.toml.orig +0 -14
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.lock +0 -2192
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.toml +0 -79
- data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.toml.orig +0 -27
- data/ext/cargo-vendor/fxhash-0.2.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/fxhash-0.2.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/fxhash-0.2.1/Cargo.toml.orig +0 -26
- data/ext/cargo-vendor/fxhash-0.2.1/README.md +0 -62
- data/ext/cargo-vendor/fxhash-0.2.1/bench.rs +0 -78
- data/ext/cargo-vendor/fxhash-0.2.1/lib.rs +0 -324
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/Cargo.toml +0 -41
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/Cargo.toml.orig +0 -20
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/README.md +0 -27
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/category.rs +0 -98
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/category_color.rs +0 -41
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/counters.rs +0 -130
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/cpu_delta.rs +0 -59
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/fast_hash_map.rs +0 -5
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/frame.rs +0 -54
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/frame_table.rs +0 -166
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/func_table.rs +0 -110
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/global_lib_table.rs +0 -76
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/lib.rs +0 -74
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/lib_mappings.rs +0 -140
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/library_info.rs +0 -120
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/marker_table.rs +0 -78
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/markers.rs +0 -224
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/native_symbols.rs +0 -73
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/process.rs +0 -117
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/profile.rs +0 -718
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/reference_timestamp.rs +0 -43
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/resource_table.rs +0 -63
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/sample_table.rs +0 -50
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/serialization_helpers.rs +0 -30
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/stack_table.rs +0 -80
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/string_table.rs +0 -66
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/thread.rs +0 -225
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/thread_string_table.rs +0 -50
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/timestamp.rs +0 -29
- data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/tests/integration_tests/main.rs +0 -1270
- data/ext/cargo-vendor/pulley-interpreter-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/pulley-interpreter-37.0.2/Cargo.lock +0 -426
- data/ext/cargo-vendor/pulley-interpreter-37.0.2/Cargo.toml +0 -144
- data/ext/cargo-vendor/pulley-interpreter-37.0.2/src/lib.rs +0 -1423
- data/ext/cargo-vendor/pulley-macros-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-macros-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/pulley-macros-37.0.2/Cargo.lock +0 -47
- data/ext/cargo-vendor/pulley-macros-37.0.2/Cargo.toml +0 -42
- data/ext/cargo-vendor/wasmtime-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.lock +0 -2250
- data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.toml +0 -558
- data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.toml.orig +0 -412
- data/ext/cargo-vendor/wasmtime-37.0.2/build.rs +0 -99
- data/ext/cargo-vendor/wasmtime-37.0.2/src/compile.rs +0 -1271
- data/ext/cargo-vendor/wasmtime-37.0.2/src/config.rs +0 -3792
- data/ext/cargo-vendor/wasmtime-37.0.2/src/engine/serialization.rs +0 -801
- data/ext/cargo-vendor/wasmtime-37.0.2/src/engine.rs +0 -976
- data/ext/cargo-vendor/wasmtime-37.0.2/src/lib.rs +0 -440
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/component.rs +0 -898
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/concurrent/futures_and_streams.rs +0 -4239
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/concurrent.rs +0 -4585
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func/host.rs +0 -957
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func/typed.rs +0 -2888
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func.rs +0 -972
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/instance.rs +0 -1024
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/mod.rs +0 -758
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/coredump.rs +0 -350
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/func.rs +0 -2680
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/instantiate.rs +0 -300
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/memory.rs +0 -1115
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/module.rs +0 -1224
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/profiling.rs +0 -338
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/store.rs +0 -2782
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/memory.rs +0 -277
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/table.rs +0 -50
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/tag.rs +0 -54
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trap.rs +0 -634
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/component/libcalls.rs +0 -1257
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/component.rs +0 -1022
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/helpers.c +0 -121
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/instance.rs +0 -1862
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/interpreter.rs +0 -619
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/interpreter_disabled.rs +0 -70
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching/stack/unix/x86_64.rs +0 -83
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching/stack/unix.rs +0 -353
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching.rs +0 -691
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/custom/capi.rs +0 -219
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/custom/traphandlers.rs +0 -69
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/miri/traphandlers.rs +0 -34
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/machports.rs +0 -515
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/signals.rs +0 -566
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/traphandlers.rs +0 -79
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/windows/traphandlers.rs +0 -31
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/windows/vectored_exceptions.rs +0 -125
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/throw.rs +0 -123
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/traphandlers.rs +0 -1438
- data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/vmcontext.rs +0 -1705
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.lock +0 -650
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.toml +0 -234
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.toml.orig +0 -80
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/address_map.rs +0 -126
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/builtin.rs +0 -451
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/key.rs +0 -221
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/mod.rs +0 -490
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/module_artifacts.rs +0 -318
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/module_environ.rs +0 -1312
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/artifacts.rs +0 -68
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/compiler.rs +0 -21
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/dfg.rs +0 -1100
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/info.rs +0 -1124
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/translate/inline.rs +0 -1792
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component.rs +0 -213
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/hostcall.rs +0 -82
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/lib.rs +0 -80
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/module.rs +0 -760
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/module_artifacts.rs +0 -119
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/trap_encoding.rs +0 -244
- data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/vmoffsets.rs +0 -1167
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.lock +0 -16
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.toml +0 -35
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.toml.orig +0 -14
- data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/src/lib.rs +0 -90
- data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/Cargo.lock +0 -840
- data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/Cargo.toml +0 -128
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/Cargo.lock +0 -285
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/Cargo.toml +0 -146
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/codegen.rs +0 -731
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_async.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_concurrent.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_tracing_async.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_async.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_concurrent.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_tracing_async.rs +0 -206
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_async.rs +0 -272
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_concurrent.rs +0 -272
- data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_tracing_async.rs +0 -280
- data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/Cargo.lock +0 -7
- data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/Cargo.toml +0 -38
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/Cargo.lock +0 -711
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/Cargo.toml +0 -187
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/compiler/component.rs +0 -1623
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/compiler.rs +0 -1476
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/func_environ/stack_switching/instructions.rs +0 -1917
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/func_environ.rs +0 -4313
- data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/lib.rs +0 -449
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.lock +0 -353
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.toml +0 -111
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.toml.orig +0 -42
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/build.rs +0 -39
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/lib.rs +0 -434
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/aarch64.rs +0 -184
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/arm.rs +0 -86
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/riscv64.rs +0 -158
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/s390x.S +0 -123
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/x86.rs +0 -109
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/x86_64.rs +0 -160
- data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch.rs +0 -80
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/Cargo.lock +0 -203
- data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/Cargo.lock +0 -104
- data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/Cargo.toml +0 -91
- data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/Cargo.lock +0 -16
- data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/Cargo.toml +0 -78
- data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/Cargo.lock +0 -7
- data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/Cargo.toml +0 -70
- data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/Cargo.lock +0 -328
- data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/Cargo.toml +0 -106
- data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/src/stackwalk.rs +0 -219
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/Cargo.lock +0 -47
- data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/Cargo.toml +0 -43
- data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/Cargo.lock +0 -649
- data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/Cargo.toml +0 -132
- data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/src/compiler.rs +0 -402
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/Cargo.lock +0 -193
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/src/config.rs +0 -164
- data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/src/lib.rs +0 -3527
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/Cargo.lock +0 -2512
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/Cargo.toml +0 -262
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/lib.rs +0 -48
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/sockets/tcp.rs +0 -819
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/view.rs +0 -95
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/tests/all/p3/mod.rs +0 -144
- data/ext/cargo-vendor/wasmtime-wasi-37.0.2/tests/all/store.rs +0 -81
- data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/Cargo.lock +0 -1211
- data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/Cargo.toml +0 -105
- data/ext/cargo-vendor/wiggle-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wiggle-37.0.2/Cargo.lock +0 -1168
- data/ext/cargo-vendor/wiggle-37.0.2/Cargo.toml +0 -139
- data/ext/cargo-vendor/wiggle-generate-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wiggle-generate-37.0.2/Cargo.lock +0 -115
- data/ext/cargo-vendor/wiggle-generate-37.0.2/Cargo.toml +0 -102
- data/ext/cargo-vendor/wiggle-macro-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/wiggle-macro-37.0.2/Cargo.lock +0 -127
- data/ext/cargo-vendor/wiggle-macro-37.0.2/Cargo.toml +0 -98
- data/ext/cargo-vendor/winch-codegen-37.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-37.0.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/winch-codegen-37.0.2/Cargo.lock +0 -620
- data/ext/cargo-vendor/winch-codegen-37.0.2/Cargo.toml +0 -133
- data/ext/cargo-vendor/winch-codegen-37.0.2/src/codegen/env.rs +0 -415
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/access.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/assert_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file_path_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file_type.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/follow_symlinks.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/is_file_read_write.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/canonical_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/cow_component.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/open_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/read_link_one.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/maybe_owned_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_ambient.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_unchecked_error.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/set_times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/stat.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/access.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_symlink_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_times_nofollow.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/check.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/remove_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/remove_file_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/stat_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/access_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/copy_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/cvt.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_root_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/metadata_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/open_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/permissions_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_symlink_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/file_metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/procfs.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/monotonic_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/system_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/system_time.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/access_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/create_file_at_w.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/get_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/metadata_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_link_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_open_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_symlink_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/udp_socket.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/unix_datagram.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/unix_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/api.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/custom.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/features.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/fixed.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/gpr.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/imm.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/mem.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/xmm.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/custom.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/features.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/format.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/features.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/format.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/operand.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/abs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/add.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/align.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/and.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/atomic.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/avg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/bitmanip.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cmov.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cmp.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cvt.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/div.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/fma.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/jmp.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/lanes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/max.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/min.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/misc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/mov.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/mul.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/neg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/nop.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/or.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/pack.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/pma.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/recip.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/round.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/setcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/shift.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/sqrt.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/stack.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/sub.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/unpack.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/xor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/scalar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dominator_tree/simple.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/inst_specs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/exception_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/winarm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/winch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/external.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/branch_to_trap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/buffer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/div_const.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/skeleton.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/take_and_replace.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/pulley.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/pulley.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/veri_spec.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-srcgen-0.124.2 → cranelift-srcgen-0.125.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-srcgen-0.124.2 → cranelift-srcgen-0.125.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/scheduling.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/examples/profiler-html.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/decode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/disas.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/imms.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/debug.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/match_loop.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/tail_loop.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/opcode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/profile.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/profile_disabled.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/regs.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/disas.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/interp.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/src/interp_disable_if_cfg.rs +0 -0
- /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/call_graph.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/code_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/scc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/stratify.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/pulley.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_7_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_8_store_in_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/abort.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/error_contexts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/futures_and_streams/buffers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/tls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/has_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/exception.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/tag.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/fiber.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/exnref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/exnref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/none_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/token.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/always_mut.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/byte_count.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/component/handle_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/cow_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/exnref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/func_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/metrics.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/malloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/static_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/pagemap_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/provenance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/stack_switching/stack/dummy.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/stack_switching/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/pagemap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/unwind64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/signals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/custom_signal_handler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/engine_across_forks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/host_segfault.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/pooling_alloc_near_oom.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/unload-engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/stack_switching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/host-world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/path1/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/path2/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/unstable-features.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multi-return.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/path1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/path2.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_concurrent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/worlds-with-types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-util-37.0.2 → wasmtime-internal-component-util-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-component-util-37.0.2 → wasmtime-internal-component-util-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/debug_transform_logging.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/synthetic.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/control_effect.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/fatpointer.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/code_translator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/environ/spec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/heap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/gdbjit.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-math-37.0.2 → wasmtime-internal-math-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-math-37.0.2 → wasmtime-internal-math-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-slab-37.0.2 → wasmtime-internal-slab-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-slab-37.0.2 → wasmtime-internal-slab-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/exception_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/throw.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-versioned-export-macros-37.0.2 → wasmtime-internal-versioned-export-macros-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-versioned-export-macros-37.0.2 → wasmtime-internal-versioned-export-macros-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/file.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/locked_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/mem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/stdout.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/bindings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/bindings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/cli/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/cli/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/clocks/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/filesystem/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/filesystem/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/random/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/random/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/conv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/package.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/util.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/bindings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/impls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/streams.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/world.wit +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/Cargo.toml.orig +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/bounds.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/context.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/error.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/phase.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/constant_pool.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/visitor.rs +0 -0
|
@@ -0,0 +1,3140 @@
|
|
|
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_supported_vec ty) (vconst n)))
|
|
15
|
+
(gen_constant ty (const_to_vconst n)))
|
|
16
|
+
|
|
17
|
+
;;;; Rules for `f16const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
18
|
+
|
|
19
|
+
(rule (lower (f16const (u16_from_ieee16 n)))
|
|
20
|
+
(imm $F16 n))
|
|
21
|
+
|
|
22
|
+
;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
23
|
+
|
|
24
|
+
(rule (lower (f32const (u32_from_ieee32 n)))
|
|
25
|
+
(imm $F32 n))
|
|
26
|
+
|
|
27
|
+
;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
28
|
+
|
|
29
|
+
(rule (lower (f64const (u64_from_ieee64 n)))
|
|
30
|
+
(imm $F64 n))
|
|
31
|
+
|
|
32
|
+
;;;; Rules for `f128const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
33
|
+
|
|
34
|
+
(rule (lower (f128const (u128_from_constant n)))
|
|
35
|
+
(value_regs (imm $I64 (u128_low_bits n)) (imm $I64 (u128_high_bits n))))
|
|
36
|
+
|
|
37
|
+
(rule 1 (lower (f128const (u128_from_constant (u128_replicated_u64 n))))
|
|
38
|
+
(let ((r Reg (imm $I64 n)))
|
|
39
|
+
(value_regs r r)))
|
|
40
|
+
|
|
41
|
+
;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
42
|
+
|
|
43
|
+
;; Base case, simply adding things in registers.
|
|
44
|
+
(rule -1 (lower (has_type (fits_in_32 (ty_int ty)) (iadd x y)))
|
|
45
|
+
(rv_addw x y))
|
|
46
|
+
|
|
47
|
+
(rule 0 (lower (has_type $I64 (iadd x y)))
|
|
48
|
+
(rv_add x y))
|
|
49
|
+
|
|
50
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
|
51
|
+
(rule 1 (lower (has_type (ty_int_ref_scalar_64 ty) (iadd x (imm12_from_value y))))
|
|
52
|
+
(alu_rr_imm12 (select_addi ty) x y))
|
|
53
|
+
|
|
54
|
+
(rule 2 (lower (has_type (ty_int_ref_scalar_64 ty) (iadd (imm12_from_value x) y)))
|
|
55
|
+
(alu_rr_imm12 (select_addi ty) y x))
|
|
56
|
+
|
|
57
|
+
;; Special case when one of the operands is uextended
|
|
58
|
+
;; Needs `Zba`
|
|
59
|
+
(rule 3 (lower (has_type $I64 (iadd x (uextend y @ (value_type $I32)))))
|
|
60
|
+
(if-let true (has_zba))
|
|
61
|
+
(rv_adduw y x))
|
|
62
|
+
|
|
63
|
+
(rule 4 (lower (has_type $I64 (iadd (uextend x @ (value_type $I32)) y)))
|
|
64
|
+
(if-let true (has_zba))
|
|
65
|
+
(rv_adduw x y))
|
|
66
|
+
|
|
67
|
+
;; Add with const shift. We have a few of these instructions with `Zba`.
|
|
68
|
+
(decl pure partial match_shnadd (Imm64) AluOPRRR)
|
|
69
|
+
(rule (match_shnadd (u64_from_imm64 1)) (AluOPRRR.Sh1add))
|
|
70
|
+
(rule (match_shnadd (u64_from_imm64 2)) (AluOPRRR.Sh2add))
|
|
71
|
+
(rule (match_shnadd (u64_from_imm64 3)) (AluOPRRR.Sh3add))
|
|
72
|
+
|
|
73
|
+
(rule 3 (lower (has_type $I64 (iadd x (ishl y (maybe_uextend (iconst n))))))
|
|
74
|
+
(if-let true (has_zba))
|
|
75
|
+
(if-let shnadd (match_shnadd n))
|
|
76
|
+
(alu_rrr shnadd y x))
|
|
77
|
+
|
|
78
|
+
(rule 4 (lower (has_type $I64 (iadd (ishl x (maybe_uextend (iconst n))) y)))
|
|
79
|
+
(if-let true (has_zba))
|
|
80
|
+
(if-let shnadd (match_shnadd n))
|
|
81
|
+
(alu_rrr shnadd x y))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
;; Add with uextended const shift. We have a few of these instructions with `Zba`.
|
|
85
|
+
;;
|
|
86
|
+
;; !!! Important !!!
|
|
87
|
+
;; These rules only work for (ishl (uextend _) _) and not for (uextend (ishl _ _))!
|
|
88
|
+
;; Getting this wrong means a potential misscalculation of the shift amount.
|
|
89
|
+
;; Additionally we can only ensure that this is correct if the uextend is 32 to 64 bits.
|
|
90
|
+
(decl pure partial match_shnadd_uw (Imm64) AluOPRRR)
|
|
91
|
+
(rule (match_shnadd_uw (u64_from_imm64 1)) (AluOPRRR.Sh1adduw))
|
|
92
|
+
(rule (match_shnadd_uw (u64_from_imm64 2)) (AluOPRRR.Sh2adduw))
|
|
93
|
+
(rule (match_shnadd_uw (u64_from_imm64 3)) (AluOPRRR.Sh3adduw))
|
|
94
|
+
|
|
95
|
+
(rule 5 (lower (has_type $I64 (iadd x (ishl (uextend y @ (value_type $I32)) (maybe_uextend (iconst n))))))
|
|
96
|
+
(if-let true (has_zba))
|
|
97
|
+
(if-let shnadd_uw (match_shnadd_uw n))
|
|
98
|
+
(alu_rrr shnadd_uw y x))
|
|
99
|
+
|
|
100
|
+
(rule 6 (lower (has_type $I64 (iadd (ishl (uextend x @ (value_type $I32)) (maybe_uextend (iconst n))) y)))
|
|
101
|
+
(if-let true (has_zba))
|
|
102
|
+
(if-let shnadd_uw (match_shnadd_uw n))
|
|
103
|
+
(alu_rrr shnadd_uw x y))
|
|
104
|
+
|
|
105
|
+
;; I128 cases
|
|
106
|
+
(rule 7 (lower (has_type $I128 (iadd x y)))
|
|
107
|
+
(let ((low XReg (rv_add (value_regs_get x 0) (value_regs_get y 0)))
|
|
108
|
+
;; compute carry.
|
|
109
|
+
(carry XReg (rv_sltu low (value_regs_get y 0)))
|
|
110
|
+
;;
|
|
111
|
+
(high_tmp XReg (rv_add (value_regs_get x 1) (value_regs_get y 1)))
|
|
112
|
+
;; add carry.
|
|
113
|
+
(high XReg (rv_add high_tmp carry)))
|
|
114
|
+
(value_regs low high)))
|
|
115
|
+
|
|
116
|
+
;; SIMD Vectors
|
|
117
|
+
(rule 8 (lower (has_type (ty_supported_vec ty) (iadd x y)))
|
|
118
|
+
(rv_vadd_vv x y (unmasked) ty))
|
|
119
|
+
|
|
120
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (iadd x (splat y))))
|
|
121
|
+
(rv_vadd_vx x y (unmasked) ty))
|
|
122
|
+
|
|
123
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (iadd x (splat (sextend y @ (value_type sext_ty))))))
|
|
124
|
+
(if-let half_ty (ty_half_width ty))
|
|
125
|
+
(if-let true (ty_equal (lane_type half_ty) sext_ty))
|
|
126
|
+
(rv_vwadd_wx x y (unmasked) (vstate_mf2 half_ty)))
|
|
127
|
+
|
|
128
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (iadd x (splat (uextend y @ (value_type uext_ty))))))
|
|
129
|
+
(if-let half_ty (ty_half_width ty))
|
|
130
|
+
(if-let true (ty_equal (lane_type half_ty) uext_ty))
|
|
131
|
+
(rv_vwaddu_wx x y (unmasked) (vstate_mf2 half_ty)))
|
|
132
|
+
|
|
133
|
+
(rule 20 (lower (has_type (ty_supported_vec ty) (iadd x y)))
|
|
134
|
+
(if-let y_imm (replicated_imm5 y))
|
|
135
|
+
(rv_vadd_vi x y_imm (unmasked) ty))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
(rule 12 (lower (has_type (ty_supported_vec ty) (iadd (splat x) y)))
|
|
139
|
+
(rv_vadd_vx y x (unmasked) ty))
|
|
140
|
+
|
|
141
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (iadd (splat (sextend x @ (value_type sext_ty))) y)))
|
|
142
|
+
(if-let half_ty (ty_half_width ty))
|
|
143
|
+
(if-let true (ty_equal (lane_type half_ty) sext_ty))
|
|
144
|
+
(rv_vwadd_wx y x (unmasked) (vstate_mf2 half_ty)))
|
|
145
|
+
|
|
146
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (iadd (splat (uextend x @ (value_type uext_ty))) y)))
|
|
147
|
+
(if-let half_ty (ty_half_width ty))
|
|
148
|
+
(if-let true (ty_equal (lane_type half_ty) uext_ty))
|
|
149
|
+
(rv_vwaddu_wx y x (unmasked) (vstate_mf2 half_ty)))
|
|
150
|
+
|
|
151
|
+
(rule 21 (lower (has_type (ty_supported_vec ty) (iadd x y)))
|
|
152
|
+
(if-let x_imm (replicated_imm5 x))
|
|
153
|
+
(rv_vadd_vi y x_imm (unmasked) ty))
|
|
154
|
+
|
|
155
|
+
;; Signed Widening Low Additions
|
|
156
|
+
|
|
157
|
+
(rule 9 (lower (has_type (ty_supported_vec _) (iadd x (swiden_low y @ (value_type in_ty)))))
|
|
158
|
+
(rv_vwadd_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
159
|
+
|
|
160
|
+
(rule 12 (lower (has_type (ty_supported_vec _) (iadd (swiden_low x @ (value_type in_ty)) y)))
|
|
161
|
+
(rv_vwadd_wv y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
162
|
+
|
|
163
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_low x @ (value_type in_ty))
|
|
164
|
+
(swiden_low y))))
|
|
165
|
+
(rv_vwadd_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
166
|
+
|
|
167
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_low x @ (value_type in_ty))
|
|
168
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
|
169
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
170
|
+
(rv_vwadd_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
171
|
+
|
|
172
|
+
(rule 15 (lower (has_type (ty_supported_vec _) (iadd (splat (sextend x @ (value_type sext_ty)))
|
|
173
|
+
(swiden_low y @ (value_type in_ty)))))
|
|
174
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
175
|
+
(rv_vwadd_vx y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
176
|
+
|
|
177
|
+
;; Signed Widening High Additions
|
|
178
|
+
;; These are the same as the low additions, but we first slide down the inputs.
|
|
179
|
+
|
|
180
|
+
(rule 9 (lower (has_type (ty_supported_vec _) (iadd x (swiden_high y @ (value_type in_ty)))))
|
|
181
|
+
(rv_vwadd_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
182
|
+
|
|
183
|
+
(rule 12 (lower (has_type (ty_supported_vec _) (iadd (swiden_high x @ (value_type in_ty)) y)))
|
|
184
|
+
(rv_vwadd_wv y (gen_slidedown_half in_ty x) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
185
|
+
|
|
186
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_high x @ (value_type in_ty))
|
|
187
|
+
(swiden_high y))))
|
|
188
|
+
(rv_vwadd_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
189
|
+
|
|
190
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_high x @ (value_type in_ty))
|
|
191
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
|
192
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
193
|
+
(rv_vwadd_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
194
|
+
|
|
195
|
+
(rule 15 (lower (has_type (ty_supported_vec _) (iadd (splat (sextend x @ (value_type sext_ty)))
|
|
196
|
+
(swiden_high y @ (value_type in_ty)))))
|
|
197
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
198
|
+
(rv_vwadd_vx (gen_slidedown_half in_ty y) x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
199
|
+
|
|
200
|
+
;; Unsigned Widening Low Additions
|
|
201
|
+
|
|
202
|
+
(rule 9 (lower (has_type (ty_supported_vec _) (iadd x (uwiden_low y @ (value_type in_ty)))))
|
|
203
|
+
(rv_vwaddu_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
204
|
+
|
|
205
|
+
(rule 12 (lower (has_type (ty_supported_vec _) (iadd (uwiden_low x @ (value_type in_ty)) y)))
|
|
206
|
+
(rv_vwaddu_wv y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
207
|
+
|
|
208
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_low x @ (value_type in_ty))
|
|
209
|
+
(uwiden_low y))))
|
|
210
|
+
(rv_vwaddu_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
211
|
+
|
|
212
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_low x @ (value_type in_ty))
|
|
213
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
|
214
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
215
|
+
(rv_vwaddu_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
216
|
+
|
|
217
|
+
(rule 15 (lower (has_type (ty_supported_vec _) (iadd (splat (uextend x @ (value_type uext_ty)))
|
|
218
|
+
(uwiden_low y @ (value_type in_ty)))))
|
|
219
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
220
|
+
(rv_vwaddu_vx y x (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
221
|
+
|
|
222
|
+
;; Unsigned Widening High Additions
|
|
223
|
+
;; These are the same as the low additions, but we first slide down the inputs.
|
|
224
|
+
|
|
225
|
+
(rule 9 (lower (has_type (ty_supported_vec _) (iadd x (uwiden_high y @ (value_type in_ty)))))
|
|
226
|
+
(rv_vwaddu_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
227
|
+
|
|
228
|
+
(rule 12 (lower (has_type (ty_supported_vec _) (iadd (uwiden_high x @ (value_type in_ty)) y)))
|
|
229
|
+
(rv_vwaddu_wv y (gen_slidedown_half in_ty x) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
230
|
+
|
|
231
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_high x @ (value_type in_ty))
|
|
232
|
+
(uwiden_high y))))
|
|
233
|
+
(rv_vwaddu_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
234
|
+
|
|
235
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_high x @ (value_type in_ty))
|
|
236
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
|
237
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
238
|
+
(rv_vwaddu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
239
|
+
|
|
240
|
+
(rule 15 (lower (has_type (ty_supported_vec _) (iadd (splat (uextend y @ (value_type uext_ty)))
|
|
241
|
+
(uwiden_high x @ (value_type in_ty)))))
|
|
242
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
243
|
+
(rv_vwaddu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
244
|
+
|
|
245
|
+
;; Signed Widening Mixed High/Low Additions
|
|
246
|
+
|
|
247
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_low x @ (value_type in_ty))
|
|
248
|
+
(swiden_high y))))
|
|
249
|
+
(rv_vwadd_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
250
|
+
|
|
251
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (swiden_high x @ (value_type in_ty))
|
|
252
|
+
(swiden_low y))))
|
|
253
|
+
(rv_vwadd_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
254
|
+
|
|
255
|
+
;; Unsigned Widening Mixed High/Low Additions
|
|
256
|
+
|
|
257
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_low x @ (value_type in_ty))
|
|
258
|
+
(uwiden_high y))))
|
|
259
|
+
(rv_vwaddu_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
260
|
+
|
|
261
|
+
(rule 13 (lower (has_type (ty_supported_vec _) (iadd (uwiden_high x @ (value_type in_ty))
|
|
262
|
+
(uwiden_low y))))
|
|
263
|
+
(rv_vwaddu_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
264
|
+
|
|
265
|
+
;; Fused Multiply Accumulate Rules `vmacc`
|
|
266
|
+
;;
|
|
267
|
+
;; I dont think we can use `vmadd`/`vmnsub` here since it just modifies the multiplication
|
|
268
|
+
;; register instead of the addition one. The actual pattern matched seems to be
|
|
269
|
+
;; exactly the same.
|
|
270
|
+
|
|
271
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (iadd x (imul y z))))
|
|
272
|
+
(rv_vmacc_vv x y z (unmasked) ty))
|
|
273
|
+
|
|
274
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (iadd x (imul y (splat z)))))
|
|
275
|
+
(rv_vmacc_vx x y z (unmasked) ty))
|
|
276
|
+
|
|
277
|
+
(rule 11 (lower (has_type (ty_supported_vec ty) (iadd x (imul (splat y) z))))
|
|
278
|
+
(rv_vmacc_vx x z y (unmasked) ty))
|
|
279
|
+
|
|
280
|
+
(rule 12 (lower (has_type (ty_supported_vec ty) (iadd (imul x y) z)))
|
|
281
|
+
(rv_vmacc_vv z x y (unmasked) ty))
|
|
282
|
+
|
|
283
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (iadd (imul x (splat y)) z)))
|
|
284
|
+
(rv_vmacc_vx z x y (unmasked) ty))
|
|
285
|
+
|
|
286
|
+
(rule 14 (lower (has_type (ty_supported_vec ty) (iadd (imul (splat x) y) z)))
|
|
287
|
+
(rv_vmacc_vx z y x (unmasked) ty))
|
|
288
|
+
|
|
289
|
+
;; Fused Multiply Subtract Rules `vnmsac`
|
|
290
|
+
|
|
291
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (iadd x (ineg (imul y z)))))
|
|
292
|
+
(rv_vnmsac_vv x y z (unmasked) ty))
|
|
293
|
+
|
|
294
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (iadd x (ineg (imul y (splat z))))))
|
|
295
|
+
(rv_vnmsac_vx x y z (unmasked) ty))
|
|
296
|
+
|
|
297
|
+
(rule 11 (lower (has_type (ty_supported_vec ty) (iadd x (ineg (imul (splat y) z)))))
|
|
298
|
+
(rv_vnmsac_vx x z y (unmasked) ty))
|
|
299
|
+
|
|
300
|
+
(rule 12 (lower (has_type (ty_supported_vec ty) (iadd (ineg (imul x y)) z)))
|
|
301
|
+
(rv_vnmsac_vv z x y (unmasked) ty))
|
|
302
|
+
|
|
303
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (iadd (ineg (imul x (splat y))) z)))
|
|
304
|
+
(rv_vnmsac_vx z x y (unmasked) ty))
|
|
305
|
+
|
|
306
|
+
(rule 14 (lower (has_type (ty_supported_vec ty) (iadd (ineg (imul (splat x) y)) z)))
|
|
307
|
+
(rv_vnmsac_vx z y x (unmasked) ty))
|
|
308
|
+
|
|
309
|
+
;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;
|
|
310
|
+
(rule 0 (lower (has_type (fits_in_32 ty) (uadd_overflow_trap x y tc)))
|
|
311
|
+
(let ((tmp_x XReg (zext x))
|
|
312
|
+
(tmp_y XReg (zext y))
|
|
313
|
+
(sum XReg (rv_add tmp_x tmp_y))
|
|
314
|
+
(test XReg (rv_srli sum (imm12_const (ty_bits ty))))
|
|
315
|
+
(_ InstOutput (gen_trapnz test tc)))
|
|
316
|
+
sum))
|
|
317
|
+
|
|
318
|
+
(rule 1 (lower (has_type $I64 (uadd_overflow_trap x y tc)))
|
|
319
|
+
(let ((tmp XReg (rv_add x y))
|
|
320
|
+
(_ InstOutput (gen_trapif (IntCC.UnsignedLessThan) tmp x tc)))
|
|
321
|
+
tmp))
|
|
322
|
+
|
|
323
|
+
;;;; Rules for uadd_overflow ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
324
|
+
|
|
325
|
+
;; For i64, we can use the fact that if a + b < a, then overflow occurred
|
|
326
|
+
(rule 0 (lower (has_type $I64 (uadd_overflow x y)))
|
|
327
|
+
(let ((sum XReg (rv_add x y))
|
|
328
|
+
(overflow XReg (rv_sltu sum x)))
|
|
329
|
+
(output_pair sum overflow)))
|
|
330
|
+
|
|
331
|
+
;; i32 case (on RV64 use addw to detect 32-bit overflow correctly)
|
|
332
|
+
(rule 1 (lower (has_type $I32 (uadd_overflow x y)))
|
|
333
|
+
(let ((x64 XReg (zext x))
|
|
334
|
+
(sum XReg (rv_addw x y))
|
|
335
|
+
(overflow XReg (rv_sltu sum x64)))
|
|
336
|
+
(output_pair sum overflow)))
|
|
337
|
+
|
|
338
|
+
;; For i128, we need to handle the high and low parts separately
|
|
339
|
+
(rule 2 (lower (has_type $I128 (uadd_overflow x y)))
|
|
340
|
+
(let ((x_regs ValueRegs x)
|
|
341
|
+
(y_regs ValueRegs y)
|
|
342
|
+
(x_lo XReg (value_regs_get x_regs 0))
|
|
343
|
+
(x_hi XReg (value_regs_get x_regs 1))
|
|
344
|
+
(y_lo XReg (value_regs_get y_regs 0))
|
|
345
|
+
(y_hi XReg (value_regs_get y_regs 1))
|
|
346
|
+
(sum_lo XReg (rv_add x_lo y_lo))
|
|
347
|
+
(carry XReg (rv_sltu sum_lo x_lo))
|
|
348
|
+
(sum_hi XReg (rv_add x_hi y_hi))
|
|
349
|
+
(sum_hi_with_carry XReg (rv_add sum_hi carry))
|
|
350
|
+
(overflow XReg (rv_or (rv_sltu sum_hi_with_carry x_hi)
|
|
351
|
+
(rv_and carry (rv_seqz (rv_xor sum_hi_with_carry x_hi))))))
|
|
352
|
+
(output_pair (value_regs sum_lo sum_hi_with_carry) overflow)))
|
|
353
|
+
|
|
354
|
+
;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
355
|
+
;; Base case, simply subtracting things in registers.
|
|
356
|
+
|
|
357
|
+
(rule 0 (lower (has_type (fits_in_32 (ty_int ty)) (isub x y)))
|
|
358
|
+
(rv_subw x y))
|
|
359
|
+
|
|
360
|
+
(rule 1 (lower (has_type $I64 (isub x y)))
|
|
361
|
+
(rv_sub x y))
|
|
362
|
+
|
|
363
|
+
(rule 2 (lower (has_type $I128 (isub x y)))
|
|
364
|
+
(sub_i128 x y))
|
|
365
|
+
|
|
366
|
+
;; Switch to an `addi` by a negative if we can fit the value in an `imm12`.
|
|
367
|
+
(rule 3 (lower (has_type (ty_int_ref_scalar_64 ty) (isub x y)))
|
|
368
|
+
(if-let imm12_neg (imm12_from_negated_value y))
|
|
369
|
+
(alu_rr_imm12 (select_addi ty) x imm12_neg))
|
|
370
|
+
|
|
371
|
+
;; SIMD Vectors
|
|
372
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (isub x y)))
|
|
373
|
+
(rv_vsub_vv x y (unmasked) ty))
|
|
374
|
+
|
|
375
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (isub x (splat y))))
|
|
376
|
+
(rv_vsub_vx x y (unmasked) ty))
|
|
377
|
+
|
|
378
|
+
(rule 6 (lower (has_type (ty_supported_vec ty) (isub x (splat (sextend y @ (value_type sext_ty))))))
|
|
379
|
+
(if-let half_ty (ty_half_width ty))
|
|
380
|
+
(if-let true (ty_equal (lane_type half_ty) sext_ty))
|
|
381
|
+
(rv_vwsub_wx x y (unmasked) (vstate_mf2 half_ty)))
|
|
382
|
+
|
|
383
|
+
(rule 6 (lower (has_type (ty_supported_vec ty) (isub x (splat (uextend y @ (value_type uext_ty))))))
|
|
384
|
+
(if-let half_ty (ty_half_width ty))
|
|
385
|
+
(if-let true (ty_equal (lane_type half_ty) uext_ty))
|
|
386
|
+
(rv_vwsubu_wx x y (unmasked) (vstate_mf2 half_ty)))
|
|
387
|
+
|
|
388
|
+
(rule 7 (lower (has_type (ty_supported_vec ty) (isub (splat x) y)))
|
|
389
|
+
(rv_vrsub_vx y x (unmasked) ty))
|
|
390
|
+
|
|
391
|
+
(rule 8 (lower (has_type (ty_supported_vec ty) (isub x y)))
|
|
392
|
+
(if-let imm5_neg (negated_replicated_imm5 y))
|
|
393
|
+
(rv_vadd_vi x imm5_neg (unmasked) ty))
|
|
394
|
+
|
|
395
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (isub x y)))
|
|
396
|
+
(if-let x_imm (replicated_imm5 x))
|
|
397
|
+
(rv_vrsub_vi y x_imm (unmasked) ty))
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
;; Signed Widening Low Subtractions
|
|
401
|
+
|
|
402
|
+
(rule 6 (lower (has_type (ty_supported_vec _) (isub x (swiden_low y @ (value_type in_ty)))))
|
|
403
|
+
(rv_vwsub_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
404
|
+
|
|
405
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_low x @ (value_type in_ty))
|
|
406
|
+
(swiden_low y))))
|
|
407
|
+
(rv_vwsub_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
408
|
+
|
|
409
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_low x @ (value_type in_ty))
|
|
410
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
|
411
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
412
|
+
(rv_vwsub_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
413
|
+
|
|
414
|
+
;; Signed Widening High Subtractions
|
|
415
|
+
;; These are the same as the low widenings, but we first slide down the inputs.
|
|
416
|
+
|
|
417
|
+
(rule 6 (lower (has_type (ty_supported_vec _) (isub x (swiden_high y @ (value_type in_ty)))))
|
|
418
|
+
(rv_vwsub_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
419
|
+
|
|
420
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_high x @ (value_type in_ty))
|
|
421
|
+
(swiden_high y))))
|
|
422
|
+
(rv_vwsub_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
423
|
+
|
|
424
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_high x @ (value_type in_ty))
|
|
425
|
+
(splat (sextend y @ (value_type sext_ty))))))
|
|
426
|
+
(if-let true (ty_equal (lane_type in_ty) sext_ty))
|
|
427
|
+
(rv_vwsub_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
428
|
+
|
|
429
|
+
;; Unsigned Widening Low Subtractions
|
|
430
|
+
|
|
431
|
+
(rule 6 (lower (has_type (ty_supported_vec _) (isub x (uwiden_low y @ (value_type in_ty)))))
|
|
432
|
+
(rv_vwsubu_wv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
433
|
+
|
|
434
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_low x @ (value_type in_ty))
|
|
435
|
+
(uwiden_low y))))
|
|
436
|
+
(rv_vwsubu_vv x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
437
|
+
|
|
438
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_low x @ (value_type in_ty))
|
|
439
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
|
440
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
441
|
+
(rv_vwsubu_vx x y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
442
|
+
|
|
443
|
+
;; Unsigned Widening High Subtractions
|
|
444
|
+
;; These are the same as the low widenings, but we first slide down the inputs.
|
|
445
|
+
|
|
446
|
+
(rule 6 (lower (has_type (ty_supported_vec _) (isub x (uwiden_high y @ (value_type in_ty)))))
|
|
447
|
+
(rv_vwsubu_wv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
448
|
+
|
|
449
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_high x @ (value_type in_ty))
|
|
450
|
+
(uwiden_high y))))
|
|
451
|
+
(rv_vwsubu_vv (gen_slidedown_half in_ty x) (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
452
|
+
|
|
453
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_high x @ (value_type in_ty))
|
|
454
|
+
(splat (uextend y @ (value_type uext_ty))))))
|
|
455
|
+
(if-let true (ty_equal (lane_type in_ty) uext_ty))
|
|
456
|
+
(rv_vwsubu_vx (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
457
|
+
|
|
458
|
+
;; Signed Widening Mixed High/Low Subtractions
|
|
459
|
+
|
|
460
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_low x @ (value_type in_ty))
|
|
461
|
+
(swiden_high y))))
|
|
462
|
+
(rv_vwsub_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
463
|
+
|
|
464
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (swiden_high x @ (value_type in_ty))
|
|
465
|
+
(swiden_low y))))
|
|
466
|
+
(rv_vwsub_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
467
|
+
|
|
468
|
+
;; Unsigned Widening Mixed High/Low Subtractions
|
|
469
|
+
|
|
470
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_low x @ (value_type in_ty))
|
|
471
|
+
(uwiden_high y))))
|
|
472
|
+
(rv_vwsubu_vv x (gen_slidedown_half in_ty y) (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
473
|
+
|
|
474
|
+
(rule 10 (lower (has_type (ty_supported_vec _) (isub (uwiden_high x @ (value_type in_ty))
|
|
475
|
+
(uwiden_low y))))
|
|
476
|
+
(rv_vwsubu_vv (gen_slidedown_half in_ty x) y (unmasked) (vstate_mf2 (ty_half_lanes in_ty))))
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
480
|
+
|
|
481
|
+
(rule (lower (has_type (ty_int ty) (ineg val)))
|
|
482
|
+
(neg ty val))
|
|
483
|
+
|
|
484
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (ineg x)))
|
|
485
|
+
(rv_vneg_v x (unmasked) ty))
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
489
|
+
|
|
490
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (imul x y)))
|
|
491
|
+
(rv_mul x y))
|
|
492
|
+
|
|
493
|
+
(rule 1 (lower (has_type (fits_in_32 (ty_int ty)) (imul x y)))
|
|
494
|
+
(rv_mulw x y))
|
|
495
|
+
|
|
496
|
+
;; for I128
|
|
497
|
+
(rule 2 (lower (has_type $I128 (imul x y)))
|
|
498
|
+
(let
|
|
499
|
+
((x_regs ValueRegs x)
|
|
500
|
+
(x_lo XReg (value_regs_get x_regs 0))
|
|
501
|
+
(x_hi XReg (value_regs_get x_regs 1))
|
|
502
|
+
|
|
503
|
+
;; Get the high/low registers for `y`.
|
|
504
|
+
(y_regs ValueRegs y)
|
|
505
|
+
(y_lo XReg (value_regs_get y_regs 0))
|
|
506
|
+
(y_hi XReg (value_regs_get y_regs 1))
|
|
507
|
+
|
|
508
|
+
;; 128bit mul formula:
|
|
509
|
+
;; dst_lo = x_lo * y_lo
|
|
510
|
+
;; dst_hi = mulhu(x_lo, y_lo) + (x_lo * y_hi) + (x_hi * y_lo)
|
|
511
|
+
;;
|
|
512
|
+
;; We can convert the above formula into the following
|
|
513
|
+
;; mulhu dst_hi, x_lo, y_lo
|
|
514
|
+
;; madd dst_hi, x_lo, y_hi, dst_hi
|
|
515
|
+
;; madd dst_hi, x_hi, y_lo, dst_hi
|
|
516
|
+
;; madd dst_lo, x_lo, y_lo, zero
|
|
517
|
+
(dst_hi1 XReg (rv_mulhu x_lo y_lo))
|
|
518
|
+
(dst_hi2 XReg (madd x_lo y_hi dst_hi1))
|
|
519
|
+
(dst_hi XReg (madd x_hi y_lo dst_hi2))
|
|
520
|
+
(dst_lo XReg (madd x_lo y_lo (zero_reg))))
|
|
521
|
+
(value_regs dst_lo dst_hi)))
|
|
522
|
+
|
|
523
|
+
;; Special case 128-bit multiplication where the operands are extended since
|
|
524
|
+
;; that maps directly to the `mulhu` and `mulh` instructions.
|
|
525
|
+
(rule 6 (lower (has_type $I128 (imul (uextend x) (uextend y))))
|
|
526
|
+
(let ((x XReg (zext x))
|
|
527
|
+
(y XReg (zext y)))
|
|
528
|
+
(value_regs (rv_mul x y) (rv_mulhu x y))))
|
|
529
|
+
|
|
530
|
+
(rule 6 (lower (has_type $I128 (imul (sextend x) (sextend y))))
|
|
531
|
+
(let ((x XReg (sext x))
|
|
532
|
+
(y XReg (sext y)))
|
|
533
|
+
(value_regs (rv_mul x y) (rv_mulh x y))))
|
|
534
|
+
|
|
535
|
+
;; Vector multiplication
|
|
536
|
+
|
|
537
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (imul x y)))
|
|
538
|
+
(rv_vmul_vv x y (unmasked) ty))
|
|
539
|
+
|
|
540
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (imul (splat x) y)))
|
|
541
|
+
(rv_vmul_vx y x (unmasked) ty))
|
|
542
|
+
|
|
543
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (imul x (splat y))))
|
|
544
|
+
(rv_vmul_vx x y (unmasked) ty))
|
|
545
|
+
|
|
546
|
+
;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
547
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (smulhi x y)))
|
|
548
|
+
(lower_smlhi ty (sext x) (sext y)))
|
|
549
|
+
|
|
550
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (smulhi x y)))
|
|
551
|
+
(rv_vmulh_vv x y (unmasked) ty))
|
|
552
|
+
|
|
553
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (smulhi (splat x) y)))
|
|
554
|
+
(rv_vmulh_vx y x (unmasked) ty))
|
|
555
|
+
|
|
556
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (smulhi x (splat y))))
|
|
557
|
+
(rv_vmulh_vx x y (unmasked) ty))
|
|
558
|
+
|
|
559
|
+
;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
560
|
+
(rule 0 (lower (has_type (fits_in_32 ty) (umulhi x y)))
|
|
561
|
+
(let ((tmp XReg (rv_mul (zext x) (zext y))))
|
|
562
|
+
(rv_srli tmp (imm12_const (ty_bits ty)))))
|
|
563
|
+
|
|
564
|
+
(rule 1 (lower (has_type $I64 (umulhi x y)))
|
|
565
|
+
(rv_mulhu x y))
|
|
566
|
+
|
|
567
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (umulhi x y)))
|
|
568
|
+
(rv_vmulhu_vv x y (unmasked) ty))
|
|
569
|
+
|
|
570
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (umulhi (splat x) y)))
|
|
571
|
+
(rv_vmulhu_vx y x (unmasked) ty))
|
|
572
|
+
|
|
573
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (umulhi x (splat y))))
|
|
574
|
+
(rv_vmulhu_vx x y (unmasked) ty))
|
|
575
|
+
|
|
576
|
+
;;;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
577
|
+
|
|
578
|
+
(rule 0 (lower (has_type (fits_in_16 ty) (udiv x y)))
|
|
579
|
+
(if-let true (has_m))
|
|
580
|
+
(rv_divuw (zext x) (nonzero_divisor (zext y))))
|
|
581
|
+
|
|
582
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (udiv x y @ (iconst imm))))
|
|
583
|
+
(if-let true (has_m))
|
|
584
|
+
(if (safe_divisor_from_imm64 ty imm))
|
|
585
|
+
(rv_divuw (zext x) (zext y)))
|
|
586
|
+
|
|
587
|
+
(rule 2 (lower (has_type $I32 (udiv x y)))
|
|
588
|
+
(if-let true (has_m))
|
|
589
|
+
(rv_divuw x (nonzero_divisor (zext y))))
|
|
590
|
+
|
|
591
|
+
(rule 3 (lower (has_type $I32 (udiv x y @ (iconst imm))))
|
|
592
|
+
(if-let true (has_m))
|
|
593
|
+
(if (safe_divisor_from_imm64 $I32 imm))
|
|
594
|
+
(rv_divuw x y))
|
|
595
|
+
|
|
596
|
+
(rule 2 (lower (has_type $I64 (udiv x y)))
|
|
597
|
+
(if-let true (has_m))
|
|
598
|
+
(rv_divu x (nonzero_divisor y)))
|
|
599
|
+
|
|
600
|
+
(rule 3 (lower (has_type $I64 (udiv x y @ (iconst imm))))
|
|
601
|
+
(if-let true (has_m))
|
|
602
|
+
(if (safe_divisor_from_imm64 $I64 imm))
|
|
603
|
+
(rv_divu x y))
|
|
604
|
+
|
|
605
|
+
;; Traps if the input register is zero, otherwise returns the same register.
|
|
606
|
+
(decl nonzero_divisor (XReg) XReg)
|
|
607
|
+
(rule (nonzero_divisor val)
|
|
608
|
+
(let ((_ InstOutput (gen_trapif (IntCC.Equal) val (zero_reg) (TrapCode.INTEGER_DIVISION_BY_ZERO))))
|
|
609
|
+
val))
|
|
610
|
+
|
|
611
|
+
;;;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
612
|
+
|
|
613
|
+
(rule 0 (lower (has_type (fits_in_16 ty) (sdiv x y)))
|
|
614
|
+
(if-let true (has_m))
|
|
615
|
+
(let ((x XReg (sext x)))
|
|
616
|
+
(rv_divw x (safe_sdiv_divisor ty x (sext y)))))
|
|
617
|
+
|
|
618
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (sdiv x y @ (iconst imm))))
|
|
619
|
+
(if-let true (has_m))
|
|
620
|
+
(if (safe_divisor_from_imm64 ty imm))
|
|
621
|
+
(rv_divw (sext x) (sext y)))
|
|
622
|
+
|
|
623
|
+
(rule 2 (lower (has_type $I32 (sdiv x y)))
|
|
624
|
+
(if-let true (has_m))
|
|
625
|
+
(let ((x XReg (sext x)))
|
|
626
|
+
(rv_divw x (safe_sdiv_divisor $I32 x (sext y)))))
|
|
627
|
+
|
|
628
|
+
(rule 3 (lower (has_type $I32 (sdiv x y @ (iconst imm))))
|
|
629
|
+
(if-let true (has_m))
|
|
630
|
+
(if (safe_divisor_from_imm64 $I32 imm))
|
|
631
|
+
(rv_divw x y))
|
|
632
|
+
|
|
633
|
+
(rule 2 (lower (has_type $I64 (sdiv x y)))
|
|
634
|
+
(if-let true (has_m))
|
|
635
|
+
(rv_div x (safe_sdiv_divisor $I64 x y)))
|
|
636
|
+
|
|
637
|
+
(rule 3 (lower (has_type $I64 (sdiv x y @ (iconst imm))))
|
|
638
|
+
(if-let true (has_m))
|
|
639
|
+
(if (safe_divisor_from_imm64 $I64 imm))
|
|
640
|
+
(rv_div x y))
|
|
641
|
+
|
|
642
|
+
;; Check for two trapping conditions:
|
|
643
|
+
;;
|
|
644
|
+
;; * the divisor is 0, or...
|
|
645
|
+
;; * the divisor is -1 and the dividend is $ty::MIN
|
|
646
|
+
(decl safe_sdiv_divisor (Type XReg XReg) XReg)
|
|
647
|
+
(rule (safe_sdiv_divisor ty x y)
|
|
648
|
+
(let (
|
|
649
|
+
(y XReg (nonzero_divisor y))
|
|
650
|
+
(min XReg (imm $I64 (u64_wrapping_shl 0xffffffff_ffffffff
|
|
651
|
+
(u32_wrapping_sub (ty_bits ty) 1))))
|
|
652
|
+
(x_is_not_min XReg (rv_xor x min))
|
|
653
|
+
(y_is_not_neg_one XReg (rv_not y))
|
|
654
|
+
(no_int_overflow XReg (rv_or x_is_not_min y_is_not_neg_one))
|
|
655
|
+
(_ InstOutput (gen_trapif
|
|
656
|
+
(IntCC.Equal)
|
|
657
|
+
no_int_overflow (zero_reg)
|
|
658
|
+
(TrapCode.INTEGER_OVERFLOW))))
|
|
659
|
+
y))
|
|
660
|
+
|
|
661
|
+
;;;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
662
|
+
|
|
663
|
+
(rule 0 (lower (has_type (fits_in_16 ty) (urem x y)))
|
|
664
|
+
(if-let true (has_m))
|
|
665
|
+
(rv_remuw (zext x) (nonzero_divisor (zext y))))
|
|
666
|
+
|
|
667
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (urem x y @ (iconst imm))))
|
|
668
|
+
(if-let true (has_m))
|
|
669
|
+
(if (safe_divisor_from_imm64 ty imm))
|
|
670
|
+
(rv_remuw (zext x) (zext y)))
|
|
671
|
+
|
|
672
|
+
(rule 2 (lower (has_type $I32 (urem x y)))
|
|
673
|
+
(if-let true (has_m))
|
|
674
|
+
(rv_remuw x (nonzero_divisor (zext y))))
|
|
675
|
+
|
|
676
|
+
(rule 3 (lower (has_type $I32 (urem x y @ (iconst imm))))
|
|
677
|
+
(if-let true (has_m))
|
|
678
|
+
(if (safe_divisor_from_imm64 $I32 imm))
|
|
679
|
+
(rv_remuw x y))
|
|
680
|
+
|
|
681
|
+
(rule 2 (lower (has_type $I64 (urem x y)))
|
|
682
|
+
(if-let true (has_m))
|
|
683
|
+
(rv_remu x (nonzero_divisor y)))
|
|
684
|
+
|
|
685
|
+
(rule 3 (lower (has_type $I64 (urem x y @ (iconst imm))))
|
|
686
|
+
(if-let true (has_m))
|
|
687
|
+
(if (safe_divisor_from_imm64 $I64 imm))
|
|
688
|
+
(rv_remu x y))
|
|
689
|
+
|
|
690
|
+
;;;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
691
|
+
|
|
692
|
+
(rule 0 (lower (has_type (fits_in_16 ty) (srem x y)))
|
|
693
|
+
(if-let true (has_m))
|
|
694
|
+
(rv_remw (sext x) (nonzero_divisor (sext y))))
|
|
695
|
+
|
|
696
|
+
(rule 1 (lower (has_type (fits_in_16 ty) (srem x y @ (iconst imm))))
|
|
697
|
+
(if-let true (has_m))
|
|
698
|
+
(if (safe_divisor_from_imm64 ty imm))
|
|
699
|
+
(rv_remw (sext x) (sext y)))
|
|
700
|
+
|
|
701
|
+
(rule 2 (lower (has_type $I32 (srem x y)))
|
|
702
|
+
(if-let true (has_m))
|
|
703
|
+
(rv_remw x (nonzero_divisor (sext y))))
|
|
704
|
+
|
|
705
|
+
(rule 3 (lower (has_type $I32 (srem x y @ (iconst imm))))
|
|
706
|
+
(if-let true (has_m))
|
|
707
|
+
(if (safe_divisor_from_imm64 $I32 imm))
|
|
708
|
+
(rv_remw x y))
|
|
709
|
+
|
|
710
|
+
(rule 2 (lower (has_type $I64 (srem x y)))
|
|
711
|
+
(if-let true (has_m))
|
|
712
|
+
(rv_rem x (nonzero_divisor y)))
|
|
713
|
+
|
|
714
|
+
(rule 3 (lower (has_type $I64 (srem x y @ (iconst imm))))
|
|
715
|
+
(if-let true (has_m))
|
|
716
|
+
(if (safe_divisor_from_imm64 $I64 imm))
|
|
717
|
+
(rv_rem x y))
|
|
718
|
+
|
|
719
|
+
;;;; Rules for `and` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
720
|
+
(rule -1 (lower (has_type (fits_in_64 ty) (band x y)))
|
|
721
|
+
(rv_and x y))
|
|
722
|
+
|
|
723
|
+
(rule 0 (lower (has_type (ty_reg_pair _) (band x y)))
|
|
724
|
+
(value_regs
|
|
725
|
+
(rv_and (value_regs_get x 0) (value_regs_get y 0))
|
|
726
|
+
(rv_and (value_regs_get x 1) (value_regs_get y 1))))
|
|
727
|
+
|
|
728
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
|
729
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (band x (imm12_from_value y))))
|
|
730
|
+
(rv_andi x y))
|
|
731
|
+
|
|
732
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (band (imm12_from_value x) y)))
|
|
733
|
+
(rv_andi y x))
|
|
734
|
+
|
|
735
|
+
(rule 3 (lower (has_type (ty_supported_float_size ty) (band x y)))
|
|
736
|
+
(lower_float_binary (AluOPRRR.And) x y ty))
|
|
737
|
+
|
|
738
|
+
;; No need to NaN-box when moving back to the floating point register as the high
|
|
739
|
+
;; bits will already be set.
|
|
740
|
+
(rule 4 (lower (has_type (ty_supported_float_size $F16) (band x y)))
|
|
741
|
+
(if-let false (has_zfhmin))
|
|
742
|
+
(lower_float_binary (AluOPRRR.And) x y $F32))
|
|
743
|
+
|
|
744
|
+
;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
|
|
745
|
+
;; by Cranelift's `band_not` instruction that is legalized into the simpler
|
|
746
|
+
;; forms early on.
|
|
747
|
+
|
|
748
|
+
(rule 5 (lower (has_type (fits_in_64 (ty_int ty)) (band x (bnot y))))
|
|
749
|
+
(if-let true (has_zbb))
|
|
750
|
+
(rv_andn x y))
|
|
751
|
+
|
|
752
|
+
(rule 6 (lower (has_type (fits_in_64 (ty_int ty)) (band (bnot y) x)))
|
|
753
|
+
(if-let true (has_zbb))
|
|
754
|
+
(rv_andn x y))
|
|
755
|
+
|
|
756
|
+
(rule 7 (lower (has_type (ty_reg_pair _) (band x (bnot y))))
|
|
757
|
+
(if-let true (has_zbb))
|
|
758
|
+
(let ((low XReg (rv_andn (value_regs_get x 0) (value_regs_get y 0)))
|
|
759
|
+
(high XReg (rv_andn (value_regs_get x 1) (value_regs_get y 1))))
|
|
760
|
+
(value_regs low high)))
|
|
761
|
+
|
|
762
|
+
(rule 8 (lower (has_type (ty_reg_pair _) (band (bnot y) x)))
|
|
763
|
+
(if-let true (has_zbb))
|
|
764
|
+
(let ((low XReg (rv_andn (value_regs_get x 0) (value_regs_get y 0)))
|
|
765
|
+
(high XReg (rv_andn (value_regs_get x 1) (value_regs_get y 1))))
|
|
766
|
+
(value_regs low high)))
|
|
767
|
+
|
|
768
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (band x y)))
|
|
769
|
+
(rv_vand_vv x y (unmasked) ty))
|
|
770
|
+
|
|
771
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (band x (splat y))))
|
|
772
|
+
(if (ty_vector_not_float ty))
|
|
773
|
+
(rv_vand_vx x y (unmasked) ty))
|
|
774
|
+
|
|
775
|
+
(rule 11 (lower (has_type (ty_supported_vec ty) (band (splat x) y)))
|
|
776
|
+
(if (ty_vector_not_float ty))
|
|
777
|
+
(rv_vand_vx y x (unmasked) ty))
|
|
778
|
+
|
|
779
|
+
(rule 12 (lower (has_type (ty_supported_vec ty) (band x y)))
|
|
780
|
+
(if-let y_imm (replicated_imm5 y))
|
|
781
|
+
(rv_vand_vi x y_imm (unmasked) ty))
|
|
782
|
+
|
|
783
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (band x y)))
|
|
784
|
+
(if-let x_imm (replicated_imm5 x))
|
|
785
|
+
(rv_vand_vi y x_imm (unmasked) ty))
|
|
786
|
+
|
|
787
|
+
;; `bclr{,i}` specializations from `zbs`
|
|
788
|
+
|
|
789
|
+
(rule 14 (lower (has_type (fits_in_32 ty) (band x (bnot (ishl (i64_from_iconst 1) y)))))
|
|
790
|
+
(if-let true (has_zbs))
|
|
791
|
+
(rv_bclr x (rv_andi y (imm12_const (u8_wrapping_sub (ty_bits ty) 1)))))
|
|
792
|
+
(rule 15 (lower (has_type (fits_in_32 ty) (band (bnot (ishl (i64_from_iconst 1) y)) x)))
|
|
793
|
+
(if-let true (has_zbs))
|
|
794
|
+
(rv_bclr x (rv_andi y (imm12_const (u8_wrapping_sub (ty_bits ty) 1)))))
|
|
795
|
+
|
|
796
|
+
(rule 16 (lower (has_type $I64 (band x (bnot (ishl (i64_from_iconst 1) y)))))
|
|
797
|
+
(if-let true (has_zbs))
|
|
798
|
+
(rv_bclr x y))
|
|
799
|
+
(rule 17 (lower (has_type $I64 (band (bnot (ishl (i64_from_iconst 1) y)) x)))
|
|
800
|
+
(if-let true (has_zbs))
|
|
801
|
+
(rv_bclr x y))
|
|
802
|
+
|
|
803
|
+
(rule 18 (lower (has_type (fits_in_64 ty) (band x (u64_from_iconst n))))
|
|
804
|
+
(if-let true (has_zbs))
|
|
805
|
+
(if-let imm (bclr_imm ty n))
|
|
806
|
+
(rv_bclri x imm))
|
|
807
|
+
(rule 19 (lower (has_type (fits_in_64 ty) (band (u64_from_iconst n) x)))
|
|
808
|
+
(if-let true (has_zbs))
|
|
809
|
+
(if-let imm (bclr_imm ty n))
|
|
810
|
+
(rv_bclri x imm))
|
|
811
|
+
|
|
812
|
+
(decl pure partial bclr_imm (Type u64) Imm12)
|
|
813
|
+
(extern constructor bclr_imm bclr_imm)
|
|
814
|
+
|
|
815
|
+
;; `bext{,i}` specializations from `zbs`
|
|
816
|
+
|
|
817
|
+
(rule 20 (lower (has_type $I32 (band (ushr x y) (u64_from_iconst 1))))
|
|
818
|
+
(if-let true (has_zbs))
|
|
819
|
+
(rv_bext x (rv_andi y (imm12_const 31))))
|
|
820
|
+
(rule 20 (lower (has_type $I32 (band (sshr x y) (u64_from_iconst 1))))
|
|
821
|
+
(if-let true (has_zbs))
|
|
822
|
+
(rv_bext x (rv_andi y (imm12_const 31))))
|
|
823
|
+
(rule 20 (lower (has_type $I32 (band (u64_from_iconst 1) (ushr x y))))
|
|
824
|
+
(if-let true (has_zbs))
|
|
825
|
+
(rv_bext x (rv_andi y (imm12_const 31))))
|
|
826
|
+
(rule 20 (lower (has_type $I32 (band (u64_from_iconst 1) (sshr x y))))
|
|
827
|
+
(if-let true (has_zbs))
|
|
828
|
+
(rv_bext x (rv_andi y (imm12_const 31))))
|
|
829
|
+
|
|
830
|
+
(rule 20 (lower (has_type $I64 (band (ushr x y) (u64_from_iconst 1))))
|
|
831
|
+
(if-let true (has_zbs))
|
|
832
|
+
(rv_bext x y))
|
|
833
|
+
(rule 20 (lower (has_type $I64 (band (sshr x y) (u64_from_iconst 1))))
|
|
834
|
+
(if-let true (has_zbs))
|
|
835
|
+
(rv_bext x y))
|
|
836
|
+
(rule 20 (lower (has_type $I64 (band (u64_from_iconst 1) (ushr x y))))
|
|
837
|
+
(if-let true (has_zbs))
|
|
838
|
+
(rv_bext x y))
|
|
839
|
+
(rule 20 (lower (has_type $I64 (band (u64_from_iconst 1) (sshr x y))))
|
|
840
|
+
(if-let true (has_zbs))
|
|
841
|
+
(rv_bext x y))
|
|
842
|
+
|
|
843
|
+
(rule 21 (lower (has_type $I32 (band (ushr x (imm12_from_value y)) (u64_from_iconst 1))))
|
|
844
|
+
(if-let true (has_zbs))
|
|
845
|
+
(rv_bexti x (imm12_and y 31)))
|
|
846
|
+
(rule 21 (lower (has_type $I32 (band (sshr x (imm12_from_value y)) (u64_from_iconst 1))))
|
|
847
|
+
(if-let true (has_zbs))
|
|
848
|
+
(rv_bexti x (imm12_and y 31)))
|
|
849
|
+
(rule 21 (lower (has_type $I64 (band (ushr x (imm12_from_value y)) (u64_from_iconst 1))))
|
|
850
|
+
(if-let true (has_zbs))
|
|
851
|
+
(rv_bexti x (imm12_and y 63)))
|
|
852
|
+
(rule 21 (lower (has_type $I64 (band (sshr x (imm12_from_value y)) (u64_from_iconst 1))))
|
|
853
|
+
(if-let true (has_zbs))
|
|
854
|
+
(rv_bexti x (imm12_and y 63)))
|
|
855
|
+
|
|
856
|
+
;;;; Rules for `or` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
857
|
+
(rule -1 (lower (has_type (ty_int ty) (bor x y)))
|
|
858
|
+
(gen_or ty x y))
|
|
859
|
+
|
|
860
|
+
(rule 0 (lower (has_type $F128 (bor x y)))
|
|
861
|
+
(gen_or $I128 x y))
|
|
862
|
+
|
|
863
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
|
864
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bor x (imm12_from_value y))))
|
|
865
|
+
(rv_ori x y))
|
|
866
|
+
|
|
867
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (bor (imm12_from_value x) y)))
|
|
868
|
+
(rv_ori y x))
|
|
869
|
+
|
|
870
|
+
(rule 3 (lower (has_type (ty_supported_float_size ty) (bor x y)))
|
|
871
|
+
(lower_float_binary (AluOPRRR.Or) x y ty))
|
|
872
|
+
|
|
873
|
+
;; No need to NaN-box when moving back to the floating point register as the high
|
|
874
|
+
;; bits will already be set.
|
|
875
|
+
(rule 4 (lower (has_type (ty_supported_float_size $F16) (bor x y)))
|
|
876
|
+
(if-let false (has_zfhmin))
|
|
877
|
+
(lower_float_binary (AluOPRRR.Or) x y $F32))
|
|
878
|
+
|
|
879
|
+
;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
|
|
880
|
+
;; by Cranelift's `bor_not` instruction that is legalized into the simpler
|
|
881
|
+
;; forms early on.
|
|
882
|
+
|
|
883
|
+
(rule 5 (lower (has_type (fits_in_64 (ty_int ty)) (bor x (bnot y))))
|
|
884
|
+
(if-let true (has_zbb))
|
|
885
|
+
(rv_orn x y))
|
|
886
|
+
|
|
887
|
+
(rule 6 (lower (has_type (fits_in_64 (ty_int ty)) (bor (bnot y) x)))
|
|
888
|
+
(if-let true (has_zbb))
|
|
889
|
+
(rv_orn x y))
|
|
890
|
+
|
|
891
|
+
(rule 7 (lower (has_type (ty_reg_pair _) (bor x (bnot y))))
|
|
892
|
+
(if-let true (has_zbb))
|
|
893
|
+
(let ((low XReg (rv_orn (value_regs_get x 0) (value_regs_get y 0)))
|
|
894
|
+
(high XReg (rv_orn (value_regs_get x 1) (value_regs_get y 1))))
|
|
895
|
+
(value_regs low high)))
|
|
896
|
+
|
|
897
|
+
(rule 8 (lower (has_type (ty_reg_pair _) (bor (bnot y) x)))
|
|
898
|
+
(if-let true (has_zbb))
|
|
899
|
+
(let ((low XReg (rv_orn (value_regs_get x 0) (value_regs_get y 0)))
|
|
900
|
+
(high XReg (rv_orn (value_regs_get x 1) (value_regs_get y 1))))
|
|
901
|
+
(value_regs low high)))
|
|
902
|
+
|
|
903
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (bor x y)))
|
|
904
|
+
(rv_vor_vv x y (unmasked) ty))
|
|
905
|
+
|
|
906
|
+
(rule 10 (lower (has_type (ty_supported_vec ty) (bor x (splat y))))
|
|
907
|
+
(if (ty_vector_not_float ty))
|
|
908
|
+
(rv_vor_vx x y (unmasked) ty))
|
|
909
|
+
|
|
910
|
+
(rule 11 (lower (has_type (ty_supported_vec ty) (bor (splat x) y)))
|
|
911
|
+
(if (ty_vector_not_float ty))
|
|
912
|
+
(rv_vor_vx y x (unmasked) ty))
|
|
913
|
+
|
|
914
|
+
(rule 12 (lower (has_type (ty_supported_vec ty) (bor x y)))
|
|
915
|
+
(if-let y_imm (replicated_imm5 y))
|
|
916
|
+
(rv_vor_vi x y_imm (unmasked) ty))
|
|
917
|
+
|
|
918
|
+
(rule 13 (lower (has_type (ty_supported_vec ty) (bor x y)))
|
|
919
|
+
(if-let x_imm (replicated_imm5 x))
|
|
920
|
+
(rv_vor_vi y x_imm (unmasked) ty))
|
|
921
|
+
|
|
922
|
+
;; `bset{,i}` specializations from `zbs`
|
|
923
|
+
|
|
924
|
+
(rule 14 (lower (has_type $I32 (bor x (ishl (i64_from_iconst 1) y))))
|
|
925
|
+
(if-let true (has_zbs))
|
|
926
|
+
(rv_bset x (rv_andi y (imm12_const 31))))
|
|
927
|
+
(rule 15 (lower (has_type $I32 (bor (ishl (i64_from_iconst 1) y) x)))
|
|
928
|
+
(if-let true (has_zbs))
|
|
929
|
+
(rv_bset x (rv_andi y (imm12_const 31))))
|
|
930
|
+
|
|
931
|
+
(rule 14 (lower (has_type $I64 (bor x (ishl (i64_from_iconst 1) y))))
|
|
932
|
+
(if-let true (has_zbs))
|
|
933
|
+
(rv_bset x y))
|
|
934
|
+
(rule 15 (lower (has_type $I64 (bor (ishl (i64_from_iconst 1) y) x)))
|
|
935
|
+
(if-let true (has_zbs))
|
|
936
|
+
(rv_bset x y))
|
|
937
|
+
|
|
938
|
+
(rule 16 (lower (has_type (fits_in_64 _) (bor x (u64_from_iconst n))))
|
|
939
|
+
(if-let true (has_zbs))
|
|
940
|
+
(if-let imm (bseti_imm n))
|
|
941
|
+
(rv_bseti x imm))
|
|
942
|
+
(rule 17 (lower (has_type (fits_in_64 _) (bor (u64_from_iconst n) x)))
|
|
943
|
+
(if-let true (has_zbs))
|
|
944
|
+
(if-let imm (bseti_imm n))
|
|
945
|
+
(rv_bseti x imm))
|
|
946
|
+
|
|
947
|
+
(decl pure partial bseti_imm (u64) Imm12)
|
|
948
|
+
(extern constructor bseti_imm bseti_imm)
|
|
949
|
+
|
|
950
|
+
;;;; Rules for `xor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
951
|
+
(rule 0 (lower (has_type (fits_in_64 (ty_int ty)) (bxor x y)))
|
|
952
|
+
(rv_xor x y))
|
|
953
|
+
|
|
954
|
+
;; Special cases for when one operand is an immediate that fits in 12 bits.
|
|
955
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bxor x (imm12_from_value y))))
|
|
956
|
+
(rv_xori x y))
|
|
957
|
+
|
|
958
|
+
(rule 2 (lower (has_type (fits_in_64 (ty_int ty)) (bxor (imm12_from_value x) y)))
|
|
959
|
+
(rv_xori y x))
|
|
960
|
+
|
|
961
|
+
(rule 3 (lower (has_type (ty_reg_pair _) (bxor x y)))
|
|
962
|
+
(lower_b128_binary (AluOPRRR.Xor) x y))
|
|
963
|
+
|
|
964
|
+
(rule 4 (lower (has_type (ty_supported_float_size ty) (bxor x y)))
|
|
965
|
+
(lower_float_binary (AluOPRRR.Xor) x y ty))
|
|
966
|
+
|
|
967
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (bxor x y)))
|
|
968
|
+
(rv_vxor_vv x y (unmasked) ty))
|
|
969
|
+
|
|
970
|
+
(rule 6 (lower (has_type (ty_supported_vec ty) (bxor x (splat y))))
|
|
971
|
+
(if (ty_vector_not_float ty))
|
|
972
|
+
(rv_vxor_vx x y (unmasked) ty))
|
|
973
|
+
|
|
974
|
+
(rule 7 (lower (has_type (ty_supported_vec ty) (bxor (splat x) y)))
|
|
975
|
+
(if (ty_vector_not_float ty))
|
|
976
|
+
(rv_vxor_vx y x (unmasked) ty))
|
|
977
|
+
|
|
978
|
+
(rule 8 (lower (has_type (ty_supported_vec ty) (bxor x y)))
|
|
979
|
+
(if-let y_imm (replicated_imm5 y))
|
|
980
|
+
(rv_vxor_vi x y_imm (unmasked) ty))
|
|
981
|
+
|
|
982
|
+
(rule 9 (lower (has_type (ty_supported_vec ty) (bxor x y)))
|
|
983
|
+
(if-let x_imm (replicated_imm5 x))
|
|
984
|
+
(rv_vxor_vi y x_imm (unmasked) ty))
|
|
985
|
+
|
|
986
|
+
;; `binv{,i}` specializations from `zbs`
|
|
987
|
+
|
|
988
|
+
(rule 13 (lower (has_type $I32 (bxor x (ishl (i64_from_iconst 1) y))))
|
|
989
|
+
(if-let true (has_zbs))
|
|
990
|
+
(rv_binv x (rv_andi y (imm12_const 31))))
|
|
991
|
+
(rule 14 (lower (has_type $I32 (bxor (ishl (i64_from_iconst 1) y) x)))
|
|
992
|
+
(if-let true (has_zbs))
|
|
993
|
+
(rv_binv x (rv_andi y (imm12_const 31))))
|
|
994
|
+
|
|
995
|
+
(rule 13 (lower (has_type $I64 (bxor x (ishl (i64_from_iconst 1) y))))
|
|
996
|
+
(if-let true (has_zbs))
|
|
997
|
+
(rv_binv x y))
|
|
998
|
+
(rule 14 (lower (has_type $I64 (bxor (ishl (i64_from_iconst 1) y) x)))
|
|
999
|
+
(if-let true (has_zbs))
|
|
1000
|
+
(rv_binv x y))
|
|
1001
|
+
|
|
1002
|
+
(rule 15 (lower (has_type (fits_in_64 _) (bxor x (u64_from_iconst n))))
|
|
1003
|
+
(if-let true (has_zbs))
|
|
1004
|
+
(if-let imm (binvi_imm n))
|
|
1005
|
+
(rv_binvi x imm))
|
|
1006
|
+
(rule 16 (lower (has_type (fits_in_64 _) (bxor (u64_from_iconst n) x)))
|
|
1007
|
+
(if-let true (has_zbs))
|
|
1008
|
+
(if-let imm (binvi_imm n))
|
|
1009
|
+
(rv_binvi x imm))
|
|
1010
|
+
|
|
1011
|
+
(decl pure partial binvi_imm (u64) Imm12)
|
|
1012
|
+
(extern constructor binvi_imm binvi_imm)
|
|
1013
|
+
|
|
1014
|
+
;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1015
|
+
|
|
1016
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 _) (bnot x)))
|
|
1017
|
+
(rv_not x))
|
|
1018
|
+
|
|
1019
|
+
(rule 1 (lower (has_type (ty_supported_float_size ty) (bnot x)))
|
|
1020
|
+
(move_x_to_f (rv_not (move_f_to_x x ty)) ty))
|
|
1021
|
+
|
|
1022
|
+
(rule 2 (lower (has_type (ty_reg_pair _) (bnot x)))
|
|
1023
|
+
(value_regs
|
|
1024
|
+
(rv_not (value_regs_get x 0))
|
|
1025
|
+
(rv_not (value_regs_get x 1))))
|
|
1026
|
+
|
|
1027
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (bnot x)))
|
|
1028
|
+
(rv_vnot_v x (unmasked) ty))
|
|
1029
|
+
|
|
1030
|
+
(rule 4 (lower (has_type (ty_int_ref_scalar_64 _) (bnot (bxor x y))))
|
|
1031
|
+
(if-let true (has_zbb))
|
|
1032
|
+
(rv_xnor x y))
|
|
1033
|
+
|
|
1034
|
+
;;;; Rules for `bit_reverse` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1035
|
+
|
|
1036
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (bitrev x)))
|
|
1037
|
+
(gen_bitrev ty x))
|
|
1038
|
+
|
|
1039
|
+
(rule 1 (lower (has_type $I128 (bitrev x)))
|
|
1040
|
+
(value_regs
|
|
1041
|
+
(gen_bitrev $I64 (value_regs_get x 1))
|
|
1042
|
+
(gen_bitrev $I64 (value_regs_get x 0))))
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
;; Constructs a sequence of instructions that reverse all bits in `x` up to
|
|
1046
|
+
;; the given type width.
|
|
1047
|
+
(decl gen_bitrev (Type XReg) XReg)
|
|
1048
|
+
|
|
1049
|
+
(rule 0 (gen_bitrev (ty_16_or_32 (ty_int ty)) x)
|
|
1050
|
+
(if-let shift_amt (u64_to_imm12 (u64_wrapping_sub 64 (ty_bits ty))))
|
|
1051
|
+
(rv_srli (gen_bitrev $I64 x) shift_amt))
|
|
1052
|
+
|
|
1053
|
+
(rule 1 (gen_bitrev $I8 x)
|
|
1054
|
+
(gen_brev8 x $I8))
|
|
1055
|
+
|
|
1056
|
+
(rule 1 (gen_bitrev $I64 x)
|
|
1057
|
+
(gen_brev8 (gen_bswap $I64 x) $I64))
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1061
|
+
|
|
1062
|
+
(rule 1 (lower (has_type (fits_in_64 (ty_int ty)) (bswap x)))
|
|
1063
|
+
(gen_bswap ty x))
|
|
1064
|
+
|
|
1065
|
+
(rule 2 (lower (has_type $I128 (bswap x)))
|
|
1066
|
+
(value_regs
|
|
1067
|
+
(gen_bswap $I64 (value_regs_get x 1))
|
|
1068
|
+
(gen_bswap $I64 (value_regs_get x 0))))
|
|
1069
|
+
|
|
1070
|
+
;; Builds a sequence of instructions that swaps the bytes in `x` up to the given
|
|
1071
|
+
;; type width.
|
|
1072
|
+
(decl gen_bswap (Type XReg) XReg)
|
|
1073
|
+
|
|
1074
|
+
;; This is only here to make the rule below work. bswap.i8 isn't valid
|
|
1075
|
+
(rule 0 (gen_bswap $I8 x) x)
|
|
1076
|
+
(rule 1 (gen_bswap (ty_int_ref_16_to_64 ty) x)
|
|
1077
|
+
(if-let half_ty (ty_half_width ty))
|
|
1078
|
+
(if-let half_size (u64_to_imm12 (ty_bits half_ty)))
|
|
1079
|
+
(let (
|
|
1080
|
+
;; This swaps the top bytes and zeroes the bottom bytes, so that
|
|
1081
|
+
;; we can or it with the bottom bytes later.
|
|
1082
|
+
(swap_top XReg (gen_bswap half_ty x))
|
|
1083
|
+
(top XReg (rv_slli swap_top half_size))
|
|
1084
|
+
|
|
1085
|
+
;; Get the top half, swap it, and zero extend it so we can `or` it
|
|
1086
|
+
;; with the bottom half. Note that zero extension here already knows
|
|
1087
|
+
;; that `zbb` isn't available and that `half_ty` is not `$I64`, so this
|
|
1088
|
+
;; falls back to the shift-then-shift sequence.
|
|
1089
|
+
(shifted XReg (rv_srli x half_size))
|
|
1090
|
+
(swap_bot XReg (gen_bswap half_ty shifted))
|
|
1091
|
+
(shift Imm12 (imm_from_bits (u64_wrapping_sub 64 (ty_bits half_ty))))
|
|
1092
|
+
(bot_shifted_left XReg (rv_slli swap_bot shift))
|
|
1093
|
+
(bot XReg (rv_srli bot_shifted_left shift)))
|
|
1094
|
+
(rv_or top bot)))
|
|
1095
|
+
|
|
1096
|
+
(rule 2 (gen_bswap (ty_16_or_32 (ty_int ty)) x)
|
|
1097
|
+
(if-let true (has_zbb))
|
|
1098
|
+
(if-let shift_amt (u64_to_imm12 (u64_wrapping_sub 64 (ty_bits ty))))
|
|
1099
|
+
(rv_srli (rv_rev8 x) shift_amt))
|
|
1100
|
+
|
|
1101
|
+
(rule 3 (gen_bswap $I64 x)
|
|
1102
|
+
(if-let true (has_zbb))
|
|
1103
|
+
(rv_rev8 x))
|
|
1104
|
+
|
|
1105
|
+
;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1106
|
+
(rule (lower (has_type (fits_in_64 ty) (ctz x)))
|
|
1107
|
+
(lower_ctz ty x))
|
|
1108
|
+
|
|
1109
|
+
(rule 1 (lower (has_type $I128 (ctz x)))
|
|
1110
|
+
(let ((x_lo XReg (value_regs_get x 0))
|
|
1111
|
+
(x_hi XReg (value_regs_get x 1))
|
|
1112
|
+
;; Count both halves
|
|
1113
|
+
(high XReg (lower_ctz $I64 x_hi))
|
|
1114
|
+
(low XReg (lower_ctz $I64 x_lo))
|
|
1115
|
+
;; Only add the top half if the bottom is zero
|
|
1116
|
+
(high XReg (gen_select_xreg (cmp_eqz x_lo) high (zero_reg)))
|
|
1117
|
+
(result XReg (rv_add low high)))
|
|
1118
|
+
(value_regs result (imm $I64 0))))
|
|
1119
|
+
|
|
1120
|
+
;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1121
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (clz x)))
|
|
1122
|
+
(gen_cltz true x ty))
|
|
1123
|
+
|
|
1124
|
+
(rule 1 (lower (has_type $I128 (clz x)))
|
|
1125
|
+
(let ((x_lo XReg (value_regs_get x 0))
|
|
1126
|
+
(x_hi XReg (value_regs_get x 1))
|
|
1127
|
+
;; Count both halves
|
|
1128
|
+
(high XReg (gen_clz x_hi))
|
|
1129
|
+
(low XReg (gen_clz x_lo))
|
|
1130
|
+
;; Only add the bottom zeros if the top half is zero
|
|
1131
|
+
(low XReg (gen_select_xreg (cmp_eqz x_hi) low (zero_reg))))
|
|
1132
|
+
(value_regs (rv_add high low) (imm $I64 0))))
|
|
1133
|
+
|
|
1134
|
+
(rule 2 (lower (has_type (fits_in_16 ty) (clz x)))
|
|
1135
|
+
(if-let true (has_zbb))
|
|
1136
|
+
(let ((tmp XReg (zext x))
|
|
1137
|
+
(count XReg (rv_clz tmp)))
|
|
1138
|
+
;; We always do the operation on the full 64-bit register, so subtract 64 from the result.
|
|
1139
|
+
(rv_addi count (imm12_const_add (ty_bits ty) -64))))
|
|
1140
|
+
|
|
1141
|
+
(rule 3 (lower (has_type $I32 (clz x)))
|
|
1142
|
+
(if-let true (has_zbb))
|
|
1143
|
+
(rv_clzw x))
|
|
1144
|
+
|
|
1145
|
+
(rule 3 (lower (has_type $I64 (clz x)))
|
|
1146
|
+
(if-let true (has_zbb))
|
|
1147
|
+
(rv_clz x))
|
|
1148
|
+
|
|
1149
|
+
(decl gen_clz (XReg) XReg)
|
|
1150
|
+
(rule 0 (gen_clz rs)
|
|
1151
|
+
(gen_cltz true rs $I64))
|
|
1152
|
+
(rule 1 (gen_clz rs)
|
|
1153
|
+
(if-let true (has_zbb))
|
|
1154
|
+
(rv_clz rs))
|
|
1155
|
+
|
|
1156
|
+
;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1157
|
+
|
|
1158
|
+
(rule (lower (has_type (fits_in_64 ty) (cls x)))
|
|
1159
|
+
(let ((tmp XReg (sext x))
|
|
1160
|
+
(tmp2 XReg (gen_select_xreg (cmp_ltz tmp) (rv_not tmp) tmp))
|
|
1161
|
+
(tmp3 XReg (gen_clz tmp2)))
|
|
1162
|
+
;; clz counted the full register width, so subtract (64-$width), and then
|
|
1163
|
+
;; additionally subtract one more, meaning here -65+width is added.
|
|
1164
|
+
(rv_addi tmp3 (imm12_const_add (ty_bits ty) -65))))
|
|
1165
|
+
|
|
1166
|
+
;; If the sign bit is set, we count the leading zeros of the inverted value.
|
|
1167
|
+
;; Otherwise we can just count the leading zeros of the original value.
|
|
1168
|
+
;; Subtract 1 since the sign bit does not count.
|
|
1169
|
+
(rule 1 (lower (has_type $I128 (cls x)))
|
|
1170
|
+
(let ((low XReg (value_regs_get x 0))
|
|
1171
|
+
(high XReg (value_regs_get x 1))
|
|
1172
|
+
(low XReg (gen_select_xreg (cmp_ltz high) (rv_not low) low))
|
|
1173
|
+
(high XReg (gen_select_xreg (cmp_ltz high) (rv_not high) high))
|
|
1174
|
+
|
|
1175
|
+
;; Count both halves
|
|
1176
|
+
(high_cnt XReg (gen_clz high))
|
|
1177
|
+
(low_cnt XReg (gen_clz low))
|
|
1178
|
+
;; Only add the bottom zeros if the top half is zero
|
|
1179
|
+
(low_cnt XReg (gen_select_xreg (cmp_eqz high) low_cnt (zero_reg)))
|
|
1180
|
+
(count XReg (rv_add high_cnt low_cnt))
|
|
1181
|
+
(result XReg (rv_addi count (imm12_const -1))))
|
|
1182
|
+
(value_regs result (imm $I64 0))))
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1186
|
+
(rule 0 (lower (has_type (fits_in_64 _) (uextend val)))
|
|
1187
|
+
(zext val))
|
|
1188
|
+
|
|
1189
|
+
(rule 1 (lower (has_type $I128 (uextend val)))
|
|
1190
|
+
(value_regs (zext val) (imm $I64 0)))
|
|
1191
|
+
|
|
1192
|
+
;; When the source of an `uextend` is a load, we can merge both ops
|
|
1193
|
+
(rule 2 (lower (has_type (fits_in_64 _) (uextend (sinkable_load inst ty flags addr offset))))
|
|
1194
|
+
(gen_sunk_load inst (amode addr offset) (uextend_load_op ty) flags))
|
|
1195
|
+
|
|
1196
|
+
(decl pure uextend_load_op (Type) LoadOP)
|
|
1197
|
+
(rule (uextend_load_op $I8) (LoadOP.Lbu))
|
|
1198
|
+
(rule (uextend_load_op $I16) (LoadOP.Lhu))
|
|
1199
|
+
(rule (uextend_load_op $I32) (LoadOP.Lwu))
|
|
1200
|
+
|
|
1201
|
+
;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1202
|
+
(rule 0 (lower (has_type (fits_in_64 _) (sextend val @ (value_type in_ty))))
|
|
1203
|
+
(sext val))
|
|
1204
|
+
|
|
1205
|
+
(rule 1 (lower (has_type $I128 (sextend val @ (value_type in_ty))))
|
|
1206
|
+
(let ((lo XReg (sext val)))
|
|
1207
|
+
(value_regs lo (rv_srai lo (imm12_const 63)))))
|
|
1208
|
+
|
|
1209
|
+
;; When the source of an `sextend` is a load, we can merge both ops
|
|
1210
|
+
(rule 2 (lower (has_type (fits_in_64 _) (sextend (sinkable_load inst ty flags addr offset))))
|
|
1211
|
+
(gen_sunk_load inst (amode addr offset) (sextend_load_op ty) flags))
|
|
1212
|
+
|
|
1213
|
+
(decl pure sextend_load_op (Type) LoadOP)
|
|
1214
|
+
(rule (sextend_load_op $I8) (LoadOP.Lb))
|
|
1215
|
+
(rule (sextend_load_op $I16) (LoadOP.Lh))
|
|
1216
|
+
(rule (sextend_load_op $I32) (LoadOP.Lw))
|
|
1217
|
+
|
|
1218
|
+
;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1219
|
+
|
|
1220
|
+
(rule 0 (lower (has_type (fits_in_64 _) (popcnt x)))
|
|
1221
|
+
(gen_popcnt (zext x)))
|
|
1222
|
+
|
|
1223
|
+
(rule 1 (lower (has_type $I128 (popcnt x)))
|
|
1224
|
+
(let
|
|
1225
|
+
((x ValueRegs x)
|
|
1226
|
+
(low XReg (gen_popcnt (value_regs_get x 0)))
|
|
1227
|
+
(high XReg (gen_popcnt (value_regs_get x 1)))
|
|
1228
|
+
(result XReg (rv_add low high)))
|
|
1229
|
+
(value_regs result (imm $I64 0))))
|
|
1230
|
+
|
|
1231
|
+
(rule 2 (lower (has_type (fits_in_64 _) (popcnt x)))
|
|
1232
|
+
(if-let true (has_zbb))
|
|
1233
|
+
(rv_cpop (zext x)))
|
|
1234
|
+
|
|
1235
|
+
(rule 3 (lower (has_type $I32 (popcnt x)))
|
|
1236
|
+
(if-let true (has_zbb))
|
|
1237
|
+
(rv_cpopw x))
|
|
1238
|
+
|
|
1239
|
+
(rule 3 (lower (has_type $I128 (popcnt x)))
|
|
1240
|
+
(if-let true (has_zbb))
|
|
1241
|
+
(let
|
|
1242
|
+
((x ValueRegs x)
|
|
1243
|
+
(low XReg (rv_cpop (value_regs_get x 0)))
|
|
1244
|
+
(high XReg (rv_cpop (value_regs_get x 1)))
|
|
1245
|
+
(result XReg (rv_add low high)))
|
|
1246
|
+
(value_regs result (imm $I64 0))))
|
|
1247
|
+
|
|
1248
|
+
;; Popcount using multiply.
|
|
1249
|
+
;; This is popcount64c() from
|
|
1250
|
+
;; http://en.wikipedia.org/wiki/Hamming_weight
|
|
1251
|
+
;;
|
|
1252
|
+
;; Here's the C version for 32 bits:
|
|
1253
|
+
;; x = x - ((x>> 1) & 0x55555555);
|
|
1254
|
+
;; x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
|
|
1255
|
+
;; x = ((x + (x >> 4)) & 0x0F0F0F0F);
|
|
1256
|
+
;; return (x * 0x01010101) >> 24; // Here 24 is the type width - 8.
|
|
1257
|
+
;;
|
|
1258
|
+
;; TODO: LLVM generates a much better implementation for I8X16. See: https://godbolt.org/z/qr6vf9Gr3
|
|
1259
|
+
;; For the other types it seems to be largely the same.
|
|
1260
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (popcnt x)))
|
|
1261
|
+
(if-let one (u64_to_uimm5 1))
|
|
1262
|
+
(if-let two (u64_to_uimm5 2))
|
|
1263
|
+
(if-let four (u64_to_uimm5 4))
|
|
1264
|
+
|
|
1265
|
+
(let (
|
|
1266
|
+
;; x = x - ((x >> 1) & 0x55555555);
|
|
1267
|
+
(mask_55 XReg (imm (lane_type ty) (u64_and 0x5555555555555555 (ty_mask (lane_type ty)))))
|
|
1268
|
+
(count2_shr VReg (rv_vsrl_vi x one (unmasked) ty))
|
|
1269
|
+
(count2_and VReg (rv_vand_vx count2_shr mask_55 (unmasked) ty))
|
|
1270
|
+
(count2 VReg (rv_vsub_vv x count2_and (unmasked) ty))
|
|
1271
|
+
|
|
1272
|
+
;; x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
|
|
1273
|
+
(mask_33 XReg (imm (lane_type ty) (u64_and 0x3333333333333333 (ty_mask (lane_type ty)))))
|
|
1274
|
+
(count4_shr VReg (rv_vsrl_vi count2 two (unmasked) ty))
|
|
1275
|
+
(count4_and VReg (rv_vand_vx count4_shr mask_33 (unmasked) ty))
|
|
1276
|
+
(count4_lhs VReg (rv_vand_vx count2 mask_33 (unmasked) ty))
|
|
1277
|
+
(count4 VReg (rv_vadd_vv count4_lhs count4_and (unmasked) ty))
|
|
1278
|
+
|
|
1279
|
+
;; x = (x + (x >> 4)) & 0x0F0F0F0F;
|
|
1280
|
+
(mask_0f XReg (imm (lane_type ty) (u64_and 0x0f0f0f0f0f0f0f0f (ty_mask (lane_type ty)))))
|
|
1281
|
+
(count8_shr VReg (rv_vsrl_vi count4 four (unmasked) ty))
|
|
1282
|
+
(count8_add VReg (rv_vadd_vv count4 count8_shr (unmasked) ty))
|
|
1283
|
+
(count8 VReg (rv_vand_vx count8_add mask_0f (unmasked) ty))
|
|
1284
|
+
|
|
1285
|
+
;; (x * 0x01010101) >> (<ty_width> - 8)
|
|
1286
|
+
(mask_01 XReg (imm (lane_type ty) (u64_and 0x0101010101010101 (ty_mask (lane_type ty)))))
|
|
1287
|
+
(mul VReg (rv_vmul_vx count8 mask_01 (unmasked) ty))
|
|
1288
|
+
(shift XReg (imm $I64 (u64_wrapping_sub (ty_bits (lane_type ty)) 8)))
|
|
1289
|
+
(res VReg (rv_vsrl_vx mul shift (unmasked) ty)))
|
|
1290
|
+
res))
|
|
1291
|
+
|
|
1292
|
+
;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1293
|
+
|
|
1294
|
+
;; 8/16 bit types need a mask on the shift amount
|
|
1295
|
+
(rule 0 (lower (has_type (ty_int (ty_8_or_16 ty)) (ishl x y)))
|
|
1296
|
+
(if-let mask (u64_to_imm12 (ty_shift_mask ty)))
|
|
1297
|
+
(rv_sllw x (rv_andi (value_regs_get y 0) mask)))
|
|
1298
|
+
|
|
1299
|
+
;; Using the 32bit version of `sll` automatically masks the shift amount.
|
|
1300
|
+
(rule 1 (lower (has_type $I32 (ishl x y)))
|
|
1301
|
+
(rv_sllw x (value_regs_get y 0)))
|
|
1302
|
+
|
|
1303
|
+
;; Similarly, the 64bit version does the right thing.
|
|
1304
|
+
(rule 1 (lower (has_type $I64 (ishl x y)))
|
|
1305
|
+
(rv_sll x (value_regs_get y 0)))
|
|
1306
|
+
|
|
1307
|
+
;; If the shift amount is known. We can mask it and encode it in the instruction.
|
|
1308
|
+
(rule 2 (lower (has_type (int_fits_in_32 ty) (ishl x (maybe_uextend (imm12_from_value y)))))
|
|
1309
|
+
(rv_slliw x (imm12_and y (ty_shift_mask ty))))
|
|
1310
|
+
|
|
1311
|
+
;; We technically don't need to mask the shift amount here. The instruction
|
|
1312
|
+
;; does the right thing. But it's neater when pretty printing it.
|
|
1313
|
+
(rule 3 (lower (has_type ty @ $I64 (ishl x (maybe_uextend (imm12_from_value y)))))
|
|
1314
|
+
(rv_slli x (imm12_and y (ty_shift_mask ty))))
|
|
1315
|
+
|
|
1316
|
+
;; With `Zba` we have a shift that zero extends the LHS argument.
|
|
1317
|
+
(rule 4 (lower (has_type $I64 (ishl (uextend x @ (value_type $I32)) (maybe_uextend (imm12_from_value y)))))
|
|
1318
|
+
(if-let true (has_zba))
|
|
1319
|
+
(rv_slliuw x y))
|
|
1320
|
+
|
|
1321
|
+
;; I128 cases
|
|
1322
|
+
(rule 4 (lower (has_type $I128 (ishl x y)))
|
|
1323
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
|
1324
|
+
(shamt XReg (value_regs_get tmp 0))
|
|
1325
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
|
1326
|
+
;;
|
|
1327
|
+
(low XReg (rv_sll (value_regs_get x 0) shamt))
|
|
1328
|
+
;; high part.
|
|
1329
|
+
(high_part1 XReg (rv_srl (value_regs_get x 0) len_sub_shamt))
|
|
1330
|
+
(high_part2 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) high_part1))
|
|
1331
|
+
;;
|
|
1332
|
+
(high_part3 XReg (rv_sll (value_regs_get x 1) shamt))
|
|
1333
|
+
(high XReg (rv_or high_part2 high_part3))
|
|
1334
|
+
;;
|
|
1335
|
+
(const64 XReg (imm $I64 64))
|
|
1336
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
|
1337
|
+
(gen_select_regs
|
|
1338
|
+
(cmp_geu shamt_128 const64)
|
|
1339
|
+
(value_regs (zero_reg) low)
|
|
1340
|
+
(value_regs low high))))
|
|
1341
|
+
|
|
1342
|
+
;; SIMD Cases
|
|
1343
|
+
;; We don't need to mask anything since it is done by the instruction according to SEW.
|
|
1344
|
+
|
|
1345
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (ishl x y)))
|
|
1346
|
+
(rv_vsll_vx x (value_regs_get y 0) (unmasked) ty))
|
|
1347
|
+
|
|
1348
|
+
(rule 6 (lower (has_type (ty_supported_vec ty) (ishl x (maybe_uextend (uimm5_from_value y)))))
|
|
1349
|
+
(rv_vsll_vi x y (unmasked) ty))
|
|
1350
|
+
|
|
1351
|
+
;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1352
|
+
|
|
1353
|
+
;; 8/16 bit types need a mask on the shift amount, and the LHS needs to be
|
|
1354
|
+
;; zero extended.
|
|
1355
|
+
(rule 0 (lower (has_type (ty_int (fits_in_16 ty)) (ushr x y)))
|
|
1356
|
+
(if-let mask (u64_to_imm12 (ty_shift_mask ty)))
|
|
1357
|
+
(rv_srlw (zext x) (rv_andi (value_regs_get y 0) mask)))
|
|
1358
|
+
|
|
1359
|
+
;; Using the 32bit version of `srl` automatically masks the shift amount.
|
|
1360
|
+
(rule 1 (lower (has_type $I32 (ushr x y)))
|
|
1361
|
+
(rv_srlw x (value_regs_get y 0)))
|
|
1362
|
+
|
|
1363
|
+
;; Similarly, the 64bit version does the right thing.
|
|
1364
|
+
(rule 1 (lower (has_type $I64 (ushr x y)))
|
|
1365
|
+
(rv_srl x (value_regs_get y 0)))
|
|
1366
|
+
|
|
1367
|
+
;; When the RHS is known we can just encode it in the instruction.
|
|
1368
|
+
(rule 2 (lower (has_type (ty_int (fits_in_16 ty)) (ushr x (maybe_uextend (imm12_from_value y)))))
|
|
1369
|
+
(rv_srliw (zext x) (imm12_and y (ty_shift_mask ty))))
|
|
1370
|
+
|
|
1371
|
+
(rule 3 (lower (has_type $I32 (ushr x (maybe_uextend (imm12_from_value y)))))
|
|
1372
|
+
(rv_srliw x y))
|
|
1373
|
+
|
|
1374
|
+
(rule 3 (lower (has_type $I64 (ushr x (maybe_uextend (imm12_from_value y)))))
|
|
1375
|
+
(rv_srli x y))
|
|
1376
|
+
|
|
1377
|
+
(rule 3 (lower (has_type $I128 (ushr x y)))
|
|
1378
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
|
1379
|
+
(shamt XReg (value_regs_get tmp 0))
|
|
1380
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
|
1381
|
+
;; low part.
|
|
1382
|
+
(low_part1 XReg (rv_sll (value_regs_get x 1) len_sub_shamt))
|
|
1383
|
+
(low_part2 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) low_part1))
|
|
1384
|
+
;;
|
|
1385
|
+
(low_part3 XReg (rv_srl (value_regs_get x 0) shamt))
|
|
1386
|
+
(low XReg (rv_or low_part2 low_part3))
|
|
1387
|
+
;;
|
|
1388
|
+
(const64 XReg (imm $I64 64))
|
|
1389
|
+
;;
|
|
1390
|
+
(high XReg (rv_srl (value_regs_get x 1) shamt))
|
|
1391
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
|
1392
|
+
(gen_select_regs
|
|
1393
|
+
(cmp_geu shamt_128 const64)
|
|
1394
|
+
(value_regs high (zero_reg))
|
|
1395
|
+
(value_regs low high))))
|
|
1396
|
+
|
|
1397
|
+
;; SIMD Cases
|
|
1398
|
+
;; We don't need to mask or extend anything since it is done by the instruction according to SEW.
|
|
1399
|
+
|
|
1400
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (ushr x y)))
|
|
1401
|
+
(rv_vsrl_vx x (value_regs_get y 0) (unmasked) ty))
|
|
1402
|
+
|
|
1403
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (ushr x (maybe_uextend (uimm5_from_value y)))))
|
|
1404
|
+
(rv_vsrl_vi x y (unmasked) ty))
|
|
1405
|
+
|
|
1406
|
+
;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1407
|
+
|
|
1408
|
+
;; 8/16 bit types need a mask on the shift amount, and the LHS needs to be
|
|
1409
|
+
;; zero extended.
|
|
1410
|
+
(rule 0 (lower (has_type (ty_int (fits_in_16 ty)) (sshr x y)))
|
|
1411
|
+
(if-let mask (u64_to_imm12 (ty_shift_mask ty)))
|
|
1412
|
+
(rv_sraw (sext x) (rv_andi (value_regs_get y 0) mask)))
|
|
1413
|
+
|
|
1414
|
+
;; Using the 32bit version of `sra` automatically masks the shift amount.
|
|
1415
|
+
(rule 1 (lower (has_type $I32 (sshr x y)))
|
|
1416
|
+
(rv_sraw x (value_regs_get y 0)))
|
|
1417
|
+
|
|
1418
|
+
;; Similarly, the 64bit version does the right thing.
|
|
1419
|
+
(rule 1 (lower (has_type $I64 (sshr x y)))
|
|
1420
|
+
(rv_sra x (value_regs_get y 0)))
|
|
1421
|
+
|
|
1422
|
+
;; When the RHS is known we can just encode it in the instruction.
|
|
1423
|
+
(rule 2 (lower (has_type (ty_int (fits_in_16 ty)) (sshr x (maybe_uextend (imm12_from_value y)))))
|
|
1424
|
+
(rv_sraiw (sext x) (imm12_and y (ty_shift_mask ty))))
|
|
1425
|
+
|
|
1426
|
+
(rule 3 (lower (has_type $I32 (sshr x (maybe_uextend (imm12_from_value y)))))
|
|
1427
|
+
(rv_sraiw x y))
|
|
1428
|
+
|
|
1429
|
+
(rule 3 (lower (has_type $I64 (sshr x (maybe_uextend (imm12_from_value y)))))
|
|
1430
|
+
(rv_srai x y))
|
|
1431
|
+
|
|
1432
|
+
(rule 3 (lower (has_type $I128 (sshr x y)))
|
|
1433
|
+
(let ((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
|
1434
|
+
(shamt XReg (value_regs_get tmp 0))
|
|
1435
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
|
1436
|
+
;; low part.
|
|
1437
|
+
(low_part1 XReg (rv_sll (value_regs_get x 1) len_sub_shamt))
|
|
1438
|
+
(low_part2 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) low_part1))
|
|
1439
|
+
;;
|
|
1440
|
+
(low_part3 XReg (rv_srl (value_regs_get x 0) shamt))
|
|
1441
|
+
(low XReg (rv_or low_part2 low_part3))
|
|
1442
|
+
;;
|
|
1443
|
+
(const64 XReg (imm $I64 64))
|
|
1444
|
+
;;
|
|
1445
|
+
(high XReg (rv_sra (value_regs_get x 1) shamt))
|
|
1446
|
+
;;
|
|
1447
|
+
(const_neg_1 XReg (imm $I64 (i64_cast_unsigned -1)))
|
|
1448
|
+
;;
|
|
1449
|
+
(high_replacement XReg (gen_select_xreg (cmp_ltz (value_regs_get x 1)) const_neg_1 (zero_reg)))
|
|
1450
|
+
(const64 XReg (imm $I64 64))
|
|
1451
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
|
1452
|
+
(gen_select_regs
|
|
1453
|
+
(cmp_geu shamt_128 const64)
|
|
1454
|
+
(value_regs high high_replacement)
|
|
1455
|
+
(value_regs low high))))
|
|
1456
|
+
|
|
1457
|
+
;; SIMD Cases
|
|
1458
|
+
;; We don't need to mask or extend anything since it is done by the instruction according to SEW.
|
|
1459
|
+
|
|
1460
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (sshr x y)))
|
|
1461
|
+
(rv_vsra_vx x (value_regs_get y 0) (unmasked) ty))
|
|
1462
|
+
|
|
1463
|
+
(rule 5 (lower (has_type (ty_supported_vec ty) (sshr x (maybe_uextend (uimm5_from_value y)))))
|
|
1464
|
+
(rv_vsra_vi x y (unmasked) ty))
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1468
|
+
|
|
1469
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (rotl rs amount)))
|
|
1470
|
+
(let
|
|
1471
|
+
((rs XReg (zext rs))
|
|
1472
|
+
(amount XReg (value_regs_get amount 0))
|
|
1473
|
+
(x ValueRegs (gen_shamt ty amount))
|
|
1474
|
+
(shamt XReg (value_regs_get x 0))
|
|
1475
|
+
(len_sub_shamt Reg (value_regs_get x 1))
|
|
1476
|
+
(part1 Reg (rv_sll rs shamt))
|
|
1477
|
+
(part2 Reg (rv_srl rs len_sub_shamt))
|
|
1478
|
+
(part3 Reg (gen_select_xreg (cmp_eqz shamt) (zero_reg) part2)))
|
|
1479
|
+
(rv_or part1 part3)))
|
|
1480
|
+
|
|
1481
|
+
(rule 1 (lower (has_type $I32 (rotl rs amount)))
|
|
1482
|
+
(if-let true (has_zbb))
|
|
1483
|
+
(rv_rolw rs (value_regs_get amount 0)))
|
|
1484
|
+
|
|
1485
|
+
(rule 2 (lower (has_type $I32 (rotl rs (u64_from_iconst n))))
|
|
1486
|
+
(if-let true (has_zbb))
|
|
1487
|
+
(if-let (imm12_from_u64 imm) (u64_wrapping_sub 32 (u64_and n 31)))
|
|
1488
|
+
(rv_roriw rs imm))
|
|
1489
|
+
|
|
1490
|
+
(rule 1 (lower (has_type $I64 (rotl rs amount)))
|
|
1491
|
+
(if-let true (has_zbb))
|
|
1492
|
+
(rv_rol rs (value_regs_get amount 0)))
|
|
1493
|
+
|
|
1494
|
+
(rule 2 (lower (has_type $I64 (rotl rs (u64_from_iconst n))))
|
|
1495
|
+
(if-let true (has_zbb))
|
|
1496
|
+
(if-let (imm12_from_u64 imm) (u64_wrapping_sub 64 (u64_and n 63)))
|
|
1497
|
+
(rv_rori rs imm))
|
|
1498
|
+
|
|
1499
|
+
(rule 1 (lower (has_type $I128 (rotl x y)))
|
|
1500
|
+
(let
|
|
1501
|
+
((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
|
1502
|
+
(shamt XReg (value_regs_get tmp 0))
|
|
1503
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
|
1504
|
+
(low_part1 XReg (rv_sll (value_regs_get x 0) shamt))
|
|
1505
|
+
(low_part2 XReg (rv_srl (value_regs_get x 1) len_sub_shamt))
|
|
1506
|
+
;;; if shamt == 0 low_part2 will overflow we should zero instead.
|
|
1507
|
+
(low_part3 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) low_part2))
|
|
1508
|
+
(low XReg (rv_or low_part1 low_part3))
|
|
1509
|
+
(high_part1 XReg (rv_sll (value_regs_get x 1) shamt))
|
|
1510
|
+
(high_part2 XReg (rv_srl (value_regs_get x 0) len_sub_shamt))
|
|
1511
|
+
(high_part3 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) high_part2))
|
|
1512
|
+
(high XReg (rv_or high_part1 high_part3))
|
|
1513
|
+
(const64 XReg (imm $I64 64))
|
|
1514
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
|
1515
|
+
;; right now we only rotate less than 64 bits.
|
|
1516
|
+
;; if shamt is greater than or equal 64 , we should switch low and high.
|
|
1517
|
+
(gen_select_regs
|
|
1518
|
+
(cmp_geu shamt_128 const64)
|
|
1519
|
+
(value_regs high low)
|
|
1520
|
+
(value_regs low high)
|
|
1521
|
+
)))
|
|
1522
|
+
|
|
1523
|
+
;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1524
|
+
|
|
1525
|
+
(rule (lower (has_type (fits_in_64 ty) (rotr rs amount)))
|
|
1526
|
+
(let
|
|
1527
|
+
((rs XReg (zext rs))
|
|
1528
|
+
(amount XReg (value_regs_get amount 0))
|
|
1529
|
+
(x ValueRegs (gen_shamt ty amount))
|
|
1530
|
+
(shamt XReg (value_regs_get x 0))
|
|
1531
|
+
(len_sub_shamt XReg (value_regs_get x 1))
|
|
1532
|
+
(part1 XReg (rv_srl rs shamt))
|
|
1533
|
+
(part2 XReg (rv_sll rs len_sub_shamt))
|
|
1534
|
+
(part3 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) part2)))
|
|
1535
|
+
(rv_or part1 part3)))
|
|
1536
|
+
|
|
1537
|
+
(rule 1 (lower (has_type $I32 (rotr rs amount)))
|
|
1538
|
+
(if-let true (has_zbb))
|
|
1539
|
+
(rv_rorw rs (value_regs_get amount 0)))
|
|
1540
|
+
|
|
1541
|
+
(rule 2 (lower (has_type $I32 (rotr rs (imm12_from_value n))))
|
|
1542
|
+
(if-let true (has_zbb))
|
|
1543
|
+
(rv_roriw rs n))
|
|
1544
|
+
|
|
1545
|
+
(rule 1 (lower (has_type $I64 (rotr rs amount)))
|
|
1546
|
+
(if-let true (has_zbb))
|
|
1547
|
+
(rv_ror rs (value_regs_get amount 0)))
|
|
1548
|
+
|
|
1549
|
+
(rule 2 (lower (has_type $I64 (rotr rs (imm12_from_value n))))
|
|
1550
|
+
(if-let true (has_zbb))
|
|
1551
|
+
(rv_rori rs n))
|
|
1552
|
+
|
|
1553
|
+
(rule 1 (lower (has_type $I128 (rotr x y)))
|
|
1554
|
+
(let
|
|
1555
|
+
((tmp ValueRegs (gen_shamt $I128 (value_regs_get y 0)))
|
|
1556
|
+
(shamt XReg (value_regs_get tmp 0))
|
|
1557
|
+
(len_sub_shamt XReg (value_regs_get tmp 1))
|
|
1558
|
+
(low_part1 XReg (rv_srl (value_regs_get x 0) shamt))
|
|
1559
|
+
(low_part2 XReg (rv_sll (value_regs_get x 1) len_sub_shamt))
|
|
1560
|
+
;;; if shamt == 0 low_part2 will overflow we should zero instead.
|
|
1561
|
+
(low_part3 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) low_part2))
|
|
1562
|
+
(low XReg (rv_or low_part1 low_part3))
|
|
1563
|
+
(high_part1 XReg (rv_srl (value_regs_get x 1) shamt))
|
|
1564
|
+
(high_part2 XReg (rv_sll (value_regs_get x 0) len_sub_shamt))
|
|
1565
|
+
(high_part3 XReg (gen_select_xreg (cmp_eqz shamt) (zero_reg) high_part2))
|
|
1566
|
+
(high XReg (rv_or high_part1 high_part3))
|
|
1567
|
+
(const64 XReg (imm $I64 64))
|
|
1568
|
+
(shamt_128 XReg (rv_andi (value_regs_get y 0) (imm12_const 127))))
|
|
1569
|
+
;; right now we only rotate less than 64 bits.
|
|
1570
|
+
;; if shamt is greater than or equal 64 , we should switch low and high.
|
|
1571
|
+
(gen_select_regs
|
|
1572
|
+
(cmp_geu shamt_128 const64)
|
|
1573
|
+
(value_regs high low)
|
|
1574
|
+
(value_regs low high)
|
|
1575
|
+
)))
|
|
1576
|
+
|
|
1577
|
+
;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1578
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fabs x)))
|
|
1579
|
+
(rv_fabs ty x))
|
|
1580
|
+
|
|
1581
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fabs x)))
|
|
1582
|
+
(rv_vfabs_v x (unmasked) ty))
|
|
1583
|
+
|
|
1584
|
+
;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1585
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fneg x)))
|
|
1586
|
+
(rv_fneg ty x))
|
|
1587
|
+
|
|
1588
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fneg x)))
|
|
1589
|
+
(rv_vfneg_v x (unmasked) ty))
|
|
1590
|
+
|
|
1591
|
+
;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1592
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fcopysign x y)))
|
|
1593
|
+
(rv_fsgnj ty x y))
|
|
1594
|
+
|
|
1595
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fcopysign x y)))
|
|
1596
|
+
(rv_vfsgnj_vv x y (unmasked) ty))
|
|
1597
|
+
|
|
1598
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fcopysign x (splat y))))
|
|
1599
|
+
(rv_vfsgnj_vf x y (unmasked) ty))
|
|
1600
|
+
|
|
1601
|
+
;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1602
|
+
|
|
1603
|
+
;; RISC-V has 4 FMA instructions that do a slightly different computation.
|
|
1604
|
+
;;
|
|
1605
|
+
;; fmadd: (rs1 * rs2) + rs3
|
|
1606
|
+
;; fmsub: (rs1 * rs2) - rs3
|
|
1607
|
+
;; fnmadd: -(rs1 * rs2) - rs3
|
|
1608
|
+
;; fnmsub: -(rs1 * rs2) + rs3
|
|
1609
|
+
;;
|
|
1610
|
+
;; Additionally there are vector versions of these instructions with slightly different names.
|
|
1611
|
+
;; The vector instructions also have two variants each. `.vv` and `.vf`, where `.vv` variants
|
|
1612
|
+
;; take two vector operands and the `.vf` variants take a vector operand and a scalar operand.
|
|
1613
|
+
;;
|
|
1614
|
+
;; Due to this, variation they receive the arguments in a different order. So we need to swap
|
|
1615
|
+
;; the arguments below.
|
|
1616
|
+
;;
|
|
1617
|
+
;; vfmacc: vd[i] = +(vs1[i] * vs2[i]) + vd[i]
|
|
1618
|
+
;; vfmsac: vd[i] = +(vs1[i] * vs2[i]) - vd[i]
|
|
1619
|
+
;; vfnmacc: vd[i] = -(vs1[i] * vs2[i]) - vd[i]
|
|
1620
|
+
;; vfnmsac: vd[i] = -(vs1[i] * vs2[i]) + vd[i]
|
|
1621
|
+
|
|
1622
|
+
(type IsFneg (enum (Result (negate u64) (value Value))))
|
|
1623
|
+
|
|
1624
|
+
(decl pure is_fneg (Value) IsFneg)
|
|
1625
|
+
(rule 1 (is_fneg (fneg x)) (IsFneg.Result 1 x))
|
|
1626
|
+
(rule 0 (is_fneg x) (IsFneg.Result 0 x))
|
|
1627
|
+
|
|
1628
|
+
(decl pure is_fneg_neg (IsFneg) u64)
|
|
1629
|
+
(rule (is_fneg_neg (IsFneg.Result n _)) n)
|
|
1630
|
+
|
|
1631
|
+
(decl pure get_fneg_value (IsFneg) Value)
|
|
1632
|
+
(rule (get_fneg_value (IsFneg.Result _ v)) v)
|
|
1633
|
+
|
|
1634
|
+
(rule (lower (has_type ty (fma x_src y_src z_src)))
|
|
1635
|
+
(let
|
|
1636
|
+
((x_res IsFneg (is_fneg x_src))
|
|
1637
|
+
(y_res IsFneg (is_fneg y_src))
|
|
1638
|
+
(z_res IsFneg (is_fneg z_src))
|
|
1639
|
+
(x Value (get_fneg_value x_res))
|
|
1640
|
+
(y Value (get_fneg_value y_res))
|
|
1641
|
+
(z Value (get_fneg_value z_res)))
|
|
1642
|
+
(rv_fma ty (u64_xor (is_fneg_neg x_res) (is_fneg_neg y_res)) (is_fneg_neg z_res) x y z)))
|
|
1643
|
+
|
|
1644
|
+
; parity arguments indicate whether to negate the x*y term or the z term, respectively
|
|
1645
|
+
(decl rv_fma (Type u64 u64 Value Value Value) InstOutput)
|
|
1646
|
+
(rule 0 (rv_fma (ty_supported_float_full ty) 0 0 x y z) (rv_fmadd ty (FRM.RNE) x y z))
|
|
1647
|
+
(rule 0 (rv_fma (ty_supported_float_full ty) 0 1 x y z) (rv_fmsub ty (FRM.RNE) x y z))
|
|
1648
|
+
(rule 0 (rv_fma (ty_supported_float_full ty) 1 0 x y z) (rv_fnmsub ty (FRM.RNE) x y z))
|
|
1649
|
+
(rule 0 (rv_fma (ty_supported_float_full ty) 1 1 x y z) (rv_fnmadd ty (FRM.RNE) x y z))
|
|
1650
|
+
(rule 1 (rv_fma (ty_supported_vec ty) 0 0 x y z) (rv_vfmacc_vv z y x (unmasked) ty))
|
|
1651
|
+
(rule 1 (rv_fma (ty_supported_vec ty) 0 1 x y z) (rv_vfmsac_vv z y x (unmasked) ty))
|
|
1652
|
+
(rule 1 (rv_fma (ty_supported_vec ty) 1 0 x y z) (rv_vfnmsac_vv z y x (unmasked) ty))
|
|
1653
|
+
(rule 1 (rv_fma (ty_supported_vec ty) 1 1 x y z) (rv_vfnmacc_vv z y x (unmasked) ty))
|
|
1654
|
+
(rule 2 (rv_fma (ty_supported_vec ty) 0 0 (splat x) y z) (rv_vfmacc_vf z y x (unmasked) ty))
|
|
1655
|
+
(rule 2 (rv_fma (ty_supported_vec ty) 0 1 (splat x) y z) (rv_vfmsac_vf z y x (unmasked) ty))
|
|
1656
|
+
(rule 2 (rv_fma (ty_supported_vec ty) 1 0 (splat x) y z) (rv_vfnmsac_vf z y x (unmasked) ty))
|
|
1657
|
+
(rule 2 (rv_fma (ty_supported_vec ty) 1 1 (splat x) y z) (rv_vfnmacc_vf z y x (unmasked) ty))
|
|
1658
|
+
(rule 3 (rv_fma (ty_supported_vec ty) 0 0 x (splat y) z) (rv_vfmacc_vf z x y (unmasked) ty))
|
|
1659
|
+
(rule 3 (rv_fma (ty_supported_vec ty) 0 1 x (splat y) z) (rv_vfmsac_vf z x y (unmasked) ty))
|
|
1660
|
+
(rule 3 (rv_fma (ty_supported_vec ty) 1 0 x (splat y) z) (rv_vfnmsac_vf z x y (unmasked) ty))
|
|
1661
|
+
(rule 3 (rv_fma (ty_supported_vec ty) 1 1 x (splat y) z) (rv_vfnmacc_vf z x y (unmasked) ty))
|
|
1662
|
+
|
|
1663
|
+
;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1664
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (sqrt x)))
|
|
1665
|
+
(rv_fsqrt ty (FRM.RNE) x))
|
|
1666
|
+
|
|
1667
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (sqrt x)))
|
|
1668
|
+
(rv_vfsqrt_v x (unmasked) ty))
|
|
1669
|
+
|
|
1670
|
+
;;;; Rules for `AtomicRMW` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1671
|
+
(rule -1
|
|
1672
|
+
;;
|
|
1673
|
+
(lower
|
|
1674
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw (little_or_native_endian flags) op addr x)))
|
|
1675
|
+
(gen_atomic (get_atomic_rmw_op ty op) addr x (atomic_amo)))
|
|
1676
|
+
|
|
1677
|
+
;;; for I8 and I16
|
|
1678
|
+
(rule 1
|
|
1679
|
+
(lower
|
|
1680
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw (little_or_native_endian flags) op addr x)))
|
|
1681
|
+
(gen_atomic_rmw_loop op ty addr x))
|
|
1682
|
+
|
|
1683
|
+
;;;special for I8 and I16 max min etc.
|
|
1684
|
+
;;;because I need uextend or sextend the value.
|
|
1685
|
+
(rule 2
|
|
1686
|
+
(lower
|
|
1687
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw (little_or_native_endian flags) (is_atomic_rmw_max_etc op true) addr x)))
|
|
1688
|
+
(gen_atomic_rmw_loop op ty addr (sext x)))
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
(rule 2
|
|
1692
|
+
;;
|
|
1693
|
+
(lower
|
|
1694
|
+
(has_type (valid_atomic_transaction (fits_in_16 ty)) (atomic_rmw (little_or_native_endian flags) (is_atomic_rmw_max_etc op false) addr x)))
|
|
1695
|
+
;;
|
|
1696
|
+
(gen_atomic_rmw_loop op ty addr (zext x)))
|
|
1697
|
+
|
|
1698
|
+
;;;;; Rules for `AtomicRmwOp.Sub`
|
|
1699
|
+
(rule
|
|
1700
|
+
(lower
|
|
1701
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw (little_or_native_endian flags) (AtomicRmwOp.Sub) addr x)))
|
|
1702
|
+
(let
|
|
1703
|
+
((tmp WritableReg (temp_writable_reg ty))
|
|
1704
|
+
(x2 Reg (rv_neg x)))
|
|
1705
|
+
(gen_atomic (get_atomic_rmw_op ty (AtomicRmwOp.Add)) addr x2 (atomic_amo))))
|
|
1706
|
+
|
|
1707
|
+
(decl gen_atomic_rmw_loop (AtomicRmwOp Type XReg XReg) XReg)
|
|
1708
|
+
(rule
|
|
1709
|
+
(gen_atomic_rmw_loop op ty addr x)
|
|
1710
|
+
(let
|
|
1711
|
+
((dst WritableXReg (temp_writable_xreg))
|
|
1712
|
+
(t0 WritableXReg (temp_writable_xreg))
|
|
1713
|
+
(_ Unit (emit (MInst.AtomicRmwLoop (gen_atomic_offset addr ty) op dst ty (gen_atomic_p addr ty) x t0))))
|
|
1714
|
+
(writable_reg_to_reg dst)))
|
|
1715
|
+
|
|
1716
|
+
;;;;; Rules for `AtomicRmwOp.Nand`
|
|
1717
|
+
(rule
|
|
1718
|
+
(lower
|
|
1719
|
+
(has_type (valid_atomic_transaction ty) (atomic_rmw (little_or_native_endian flags) (AtomicRmwOp.Nand) addr x)))
|
|
1720
|
+
(gen_atomic_rmw_loop (AtomicRmwOp.Nand) ty addr x))
|
|
1721
|
+
|
|
1722
|
+
(decl is_atomic_rmw_max_etc (AtomicRmwOp bool) AtomicRmwOp)
|
|
1723
|
+
(extern extractor is_atomic_rmw_max_etc is_atomic_rmw_max_etc)
|
|
1724
|
+
|
|
1725
|
+
;;;;; Rules for `atomic load`;;;;;;;;;;;;;;;;;
|
|
1726
|
+
(rule
|
|
1727
|
+
(lower (has_type (valid_atomic_transaction ty) (atomic_load (little_or_native_endian flags) p)))
|
|
1728
|
+
(gen_atomic_load p ty))
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
;;;;; Rules for `atomic store`;;;;;;;;;;;;;;;;;
|
|
1732
|
+
(rule
|
|
1733
|
+
(lower (atomic_store (little_or_native_endian flags) src @ (value_type (valid_atomic_transaction ty)) p))
|
|
1734
|
+
(gen_atomic_store p ty src))
|
|
1735
|
+
|
|
1736
|
+
(decl gen_atomic_offset (XReg Type) XReg)
|
|
1737
|
+
(rule 1 (gen_atomic_offset p (fits_in_16 ty))
|
|
1738
|
+
(rv_slli (rv_andi p (imm12_const 3)) (imm12_const 3)))
|
|
1739
|
+
|
|
1740
|
+
(rule (gen_atomic_offset p _)
|
|
1741
|
+
(zero_reg))
|
|
1742
|
+
|
|
1743
|
+
(decl gen_atomic_p (XReg Type) XReg)
|
|
1744
|
+
(rule 1 (gen_atomic_p p (fits_in_16 ty))
|
|
1745
|
+
(rv_andi p (imm12_const -4)))
|
|
1746
|
+
|
|
1747
|
+
(rule (gen_atomic_p p _)
|
|
1748
|
+
p)
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
;;;;; Rules for `atomic cas`;;;;;;;;;;;;;;;;;
|
|
1752
|
+
(rule
|
|
1753
|
+
(lower (has_type (valid_atomic_transaction ty) (atomic_cas (little_or_native_endian flags) p e x)))
|
|
1754
|
+
(let
|
|
1755
|
+
((t0 WritableReg (temp_writable_reg ty))
|
|
1756
|
+
(dst WritableReg (temp_writable_reg ty))
|
|
1757
|
+
(_ Unit (emit (MInst.AtomicCas (gen_atomic_offset p ty) t0 dst (zext e) (gen_atomic_p p ty) x ty))))
|
|
1758
|
+
(writable_reg_to_reg dst)))
|
|
1759
|
+
|
|
1760
|
+
;;;;; Rules for `ireduce`;;;;;;;;;;;;;;;;;
|
|
1761
|
+
(rule
|
|
1762
|
+
(lower (has_type ty (ireduce x)))
|
|
1763
|
+
(value_regs_get x 0))
|
|
1764
|
+
|
|
1765
|
+
;;;;; Rules for `fpromote`;;;;;;;;;;;;;;;;;
|
|
1766
|
+
(rule (lower (fpromote x))
|
|
1767
|
+
(rv_fcvtds x))
|
|
1768
|
+
|
|
1769
|
+
;;;;; Rules for `fvpromote_low`;;;;;;;;;;;;
|
|
1770
|
+
|
|
1771
|
+
(rule (lower (has_type (ty_supported_vec ty) (fvpromote_low x)))
|
|
1772
|
+
(if-let half_ty (ty_half_width ty))
|
|
1773
|
+
(rv_vfwcvt_f_f_v x (unmasked) (vstate_mf2 half_ty)))
|
|
1774
|
+
|
|
1775
|
+
;;;;; Rules for `fdemote`;;;;;;;;;;;;;;;;;;
|
|
1776
|
+
(rule (lower (fdemote x))
|
|
1777
|
+
(rv_fcvtsd (FRM.RNE) x))
|
|
1778
|
+
|
|
1779
|
+
;;;;; Rules for `fvdemote`;;;;;;;;;;;;;;;;;
|
|
1780
|
+
|
|
1781
|
+
;; `vfncvt...` leaves the upper bits of the register undefined so
|
|
1782
|
+
;; we need to zero them out.
|
|
1783
|
+
(rule (lower (has_type (ty_supported_vec ty @ $F32X4) (fvdemote x)))
|
|
1784
|
+
(if-let zero (i8_to_imm5 0))
|
|
1785
|
+
(let ((narrow VReg (rv_vfncvt_f_f_w x (unmasked) (vstate_mf2 ty)))
|
|
1786
|
+
(mask VReg (gen_vec_mask 0xC)))
|
|
1787
|
+
(rv_vmerge_vim narrow zero mask ty)))
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
;;;;; Rules for for float arithmetic
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1794
|
+
|
|
1795
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fadd x y)))
|
|
1796
|
+
(rv_fadd ty (FRM.RNE) x y))
|
|
1797
|
+
|
|
1798
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fadd x y)))
|
|
1799
|
+
(rv_vfadd_vv x y (unmasked) ty))
|
|
1800
|
+
|
|
1801
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fadd x (splat y))))
|
|
1802
|
+
(rv_vfadd_vf x y (unmasked) ty))
|
|
1803
|
+
|
|
1804
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (fadd (splat x) y)))
|
|
1805
|
+
(rv_vfadd_vf y x (unmasked) ty))
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1809
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fsub x y)))
|
|
1810
|
+
(rv_fsub ty (FRM.RNE) x y))
|
|
1811
|
+
|
|
1812
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fsub x y)))
|
|
1813
|
+
(rv_vfsub_vv x y (unmasked) ty))
|
|
1814
|
+
|
|
1815
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fsub x (splat y))))
|
|
1816
|
+
(rv_vfsub_vf x y (unmasked) ty))
|
|
1817
|
+
|
|
1818
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (fsub (splat x) y)))
|
|
1819
|
+
(rv_vfrsub_vf y x (unmasked) ty))
|
|
1820
|
+
|
|
1821
|
+
;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1822
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fmul x y)))
|
|
1823
|
+
(rv_fmul ty (FRM.RNE) x y))
|
|
1824
|
+
|
|
1825
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fmul x y)))
|
|
1826
|
+
(rv_vfmul_vv x y (unmasked) ty))
|
|
1827
|
+
|
|
1828
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fmul x (splat y))))
|
|
1829
|
+
(rv_vfmul_vf x y (unmasked) ty))
|
|
1830
|
+
|
|
1831
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (fmul (splat x) y)))
|
|
1832
|
+
(rv_vfmul_vf y x (unmasked) ty))
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1836
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fdiv x y)))
|
|
1837
|
+
(rv_fdiv ty (FRM.RNE) x y))
|
|
1838
|
+
|
|
1839
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (fdiv x y)))
|
|
1840
|
+
(rv_vfdiv_vv x y (unmasked) ty))
|
|
1841
|
+
|
|
1842
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fdiv x (splat y))))
|
|
1843
|
+
(rv_vfdiv_vf x y (unmasked) ty))
|
|
1844
|
+
|
|
1845
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (fdiv (splat x) y)))
|
|
1846
|
+
(rv_vfrdiv_vf y x (unmasked) ty))
|
|
1847
|
+
|
|
1848
|
+
;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1849
|
+
|
|
1850
|
+
;; RISC-V's `fmin` instruction returns the number input if one of inputs is a
|
|
1851
|
+
;; NaN. We handle this by manually checking if one of the inputs is a NaN
|
|
1852
|
+
;; and selecting based on that result.
|
|
1853
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fmin x y)))
|
|
1854
|
+
(let (
|
|
1855
|
+
;; Check if both inputs are not nan.
|
|
1856
|
+
(is_ordered FloatCompare (fcmp_to_float_compare (FloatCC.Ordered) ty x y))
|
|
1857
|
+
;; `fadd` returns a nan if any of the inputs is a NaN.
|
|
1858
|
+
(nan FReg (rv_fadd ty (FRM.RNE) x y))
|
|
1859
|
+
(min FReg (rv_fmin ty x y)))
|
|
1860
|
+
(gen_select_freg is_ordered min nan)))
|
|
1861
|
+
|
|
1862
|
+
;; With Zfa we can use the special `fminm` that precisely matches the expected
|
|
1863
|
+
;; NaN behavior.
|
|
1864
|
+
(rule 1 (lower (has_type (ty_supported_float_full ty) (fmin x y)))
|
|
1865
|
+
(if-let true (has_zfa))
|
|
1866
|
+
(rv_fminm ty x y))
|
|
1867
|
+
|
|
1868
|
+
;; vfmin does almost the right thing, but it does not handle NaN's correctly.
|
|
1869
|
+
;; We should return a NaN if any of the inputs is a NaN, but vfmin returns the
|
|
1870
|
+
;; number input instead.
|
|
1871
|
+
;;
|
|
1872
|
+
;; TODO: We can improve this by using a masked `fmin` instruction that modifies
|
|
1873
|
+
;; the canonical nan register. That way we could avoid the `vmerge.vv` instruction.
|
|
1874
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fmin x y)))
|
|
1875
|
+
(let ((is_not_nan VReg (gen_fcmp_mask ty (FloatCC.Ordered) x y))
|
|
1876
|
+
(nan XReg (imm $I64 (canonical_nan_u64 (lane_type ty))))
|
|
1877
|
+
(vec_nan VReg (rv_vmv_vx nan ty))
|
|
1878
|
+
(min VReg (rv_vfmin_vv x y (unmasked) ty)))
|
|
1879
|
+
(rv_vmerge_vvm vec_nan min is_not_nan ty)))
|
|
1880
|
+
|
|
1881
|
+
;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1882
|
+
|
|
1883
|
+
;; RISC-V's `fmax` instruction returns the number input if one of inputs is a
|
|
1884
|
+
;; NaN. We handle this by manually checking if one of the inputs is a NaN
|
|
1885
|
+
;; and selecting based on that result.
|
|
1886
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (fmax x y)))
|
|
1887
|
+
(let (
|
|
1888
|
+
;; Check if both inputs are not nan.
|
|
1889
|
+
(is_ordered FloatCompare (fcmp_to_float_compare (FloatCC.Ordered) ty x y))
|
|
1890
|
+
;; `fadd` returns a NaN if any of the inputs is a NaN.
|
|
1891
|
+
(nan FReg (rv_fadd ty (FRM.RNE) x y))
|
|
1892
|
+
(max FReg (rv_fmax ty x y)))
|
|
1893
|
+
(gen_select_freg is_ordered max nan)))
|
|
1894
|
+
|
|
1895
|
+
;; With Zfa we can use the special `fmaxm` that precisely matches the expected
|
|
1896
|
+
;; NaN behavior.
|
|
1897
|
+
(rule 1 (lower (has_type (ty_supported_float_full ty) (fmax x y)))
|
|
1898
|
+
(if-let true (has_zfa))
|
|
1899
|
+
(rv_fmaxm ty x y))
|
|
1900
|
+
|
|
1901
|
+
;; vfmax does almost the right thing, but it does not handle NaN's correctly.
|
|
1902
|
+
;; We should return a NaN if any of the inputs is a NaN, but vfmax returns the
|
|
1903
|
+
;; number input instead.
|
|
1904
|
+
;;
|
|
1905
|
+
;; TODO: We can improve this by using a masked `fmax` instruction that modifies
|
|
1906
|
+
;; the canonical nan register. That way we could avoid the `vmerge.vv` instruction.
|
|
1907
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (fmax x y)))
|
|
1908
|
+
(let ((is_not_nan VReg (gen_fcmp_mask ty (FloatCC.Ordered) x y))
|
|
1909
|
+
(nan XReg (imm $I64 (canonical_nan_u64 (lane_type ty))))
|
|
1910
|
+
(vec_nan VReg (rv_vmv_vx nan ty))
|
|
1911
|
+
(max VReg (rv_vfmax_vv x y (unmasked) ty)))
|
|
1912
|
+
(rv_vmerge_vvm vec_nan max is_not_nan ty)))
|
|
1913
|
+
|
|
1914
|
+
;;;;; Rules for `stack_addr`;;;;;;;;;
|
|
1915
|
+
(rule
|
|
1916
|
+
(lower (stack_addr ss offset))
|
|
1917
|
+
(gen_stack_addr ss offset))
|
|
1918
|
+
|
|
1919
|
+
;;;;; Rules for `select`;;;;;;;;;
|
|
1920
|
+
|
|
1921
|
+
;; Manually matching (iconst 0) here is a bit of a hack. We can't do that as part
|
|
1922
|
+
;; of the iconst rule because that runs into regalloc issues. gen_select_xreg
|
|
1923
|
+
;; has some optimizations based on the use of the zero register so we have to
|
|
1924
|
+
;; manually match it here.
|
|
1925
|
+
(rule 5 (lower (has_type (ty_int_ref_scalar_64 _) (select c (i64_from_iconst 0) y)))
|
|
1926
|
+
(gen_select_xreg (is_nonzero_cmp c) (zero_reg) y))
|
|
1927
|
+
|
|
1928
|
+
(rule 4 (lower (has_type (ty_int_ref_scalar_64 _) (select c x (i64_from_iconst 0))))
|
|
1929
|
+
(gen_select_xreg (is_nonzero_cmp c) x (zero_reg)))
|
|
1930
|
+
|
|
1931
|
+
(rule 3 (lower (has_type (ty_int_ref_scalar_64 _) (select c x y)))
|
|
1932
|
+
(gen_select_xreg (is_nonzero_cmp c) x y))
|
|
1933
|
+
|
|
1934
|
+
(rule 2 (lower (has_type (ty_reg_pair _) (select c x y)))
|
|
1935
|
+
(gen_select_regs (is_nonzero_cmp c) x y))
|
|
1936
|
+
|
|
1937
|
+
(rule 1 (lower (has_type (ty_supported_vec _) (select c x y)))
|
|
1938
|
+
(gen_select_vreg (is_nonzero_cmp c) x y))
|
|
1939
|
+
|
|
1940
|
+
(rule 0 (lower (has_type (ty_supported_float_size _) (select c x y)))
|
|
1941
|
+
(gen_select_freg (is_nonzero_cmp c) x y))
|
|
1942
|
+
|
|
1943
|
+
;;;;; Rules for `bitselect`;;;;;;;;;
|
|
1944
|
+
|
|
1945
|
+
;; Do a (c & x) | (~c & y) operation.
|
|
1946
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (bitselect c x y)))
|
|
1947
|
+
(let ((tmp_x XReg (rv_and c x))
|
|
1948
|
+
(c_inverse XReg (rv_not c))
|
|
1949
|
+
(tmp_y XReg (rv_and c_inverse y)))
|
|
1950
|
+
(rv_or tmp_x tmp_y)))
|
|
1951
|
+
|
|
1952
|
+
;; For vectors, we also do the same operation.
|
|
1953
|
+
;; We can technically use any type in the bitwise operations, but prefer
|
|
1954
|
+
;; using the type of the inputs so that we avoid emitting unnecessary
|
|
1955
|
+
;; `vsetvl` instructions. it's likely that the vector unit is already
|
|
1956
|
+
;; configured for that type.
|
|
1957
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (bitselect c x y)))
|
|
1958
|
+
(let ((tmp_x VReg (rv_vand_vv c x (unmasked) ty))
|
|
1959
|
+
(c_inverse VReg (rv_vnot_v c (unmasked) ty))
|
|
1960
|
+
(tmp_y VReg (rv_vand_vv c_inverse y (unmasked) ty)))
|
|
1961
|
+
(rv_vor_vv tmp_x tmp_y (unmasked) ty)))
|
|
1962
|
+
|
|
1963
|
+
;; Special case for bitselects with cmp's as an input.
|
|
1964
|
+
;;
|
|
1965
|
+
;; This allows us to skip the mask expansion step and use the more efficient
|
|
1966
|
+
;; vmerge.vvm instruction.
|
|
1967
|
+
;;
|
|
1968
|
+
;; We should be careful to ensure that the mask and the vmerge have the
|
|
1969
|
+
;; same type. So that we don't generate a mask with length 16 (i.e. for i8x16), and then
|
|
1970
|
+
;; only copy the first few lanes of the result to the destination register because
|
|
1971
|
+
;; the bitselect has a different length (i.e. i64x2).
|
|
1972
|
+
;;
|
|
1973
|
+
;; See: https://github.com/bytecodealliance/wasmtime/issues/8131
|
|
1974
|
+
|
|
1975
|
+
(rule 2 (lower (has_type (ty_supported_vec _ty) (bitselect (icmp cc a @ (value_type (ty_supported_vec cmp_ty)) b) x y)))
|
|
1976
|
+
(let ((mask VReg (gen_icmp_mask cmp_ty cc a b)))
|
|
1977
|
+
(rv_vmerge_vvm y x mask cmp_ty)))
|
|
1978
|
+
|
|
1979
|
+
(rule 2 (lower (has_type (ty_supported_vec _ty) (bitselect (fcmp cc a @ (value_type (ty_supported_vec cmp_ty)) b) x y)))
|
|
1980
|
+
(let ((mask VReg (gen_fcmp_mask cmp_ty cc a b)))
|
|
1981
|
+
(rv_vmerge_vvm y x mask cmp_ty)))
|
|
1982
|
+
|
|
1983
|
+
(rule 2 (lower (has_type (ty_supported_vec _ty) (bitselect (bitcast _ (fcmp cc a @ (value_type (ty_supported_vec cmp_ty)) b)) x y)))
|
|
1984
|
+
(let ((mask VReg (gen_fcmp_mask cmp_ty cc a b)))
|
|
1985
|
+
(rv_vmerge_vvm y x mask cmp_ty)))
|
|
1986
|
+
|
|
1987
|
+
(rule 2 (lower (has_type (ty_supported_vec _ty) (bitselect (bitcast _ (icmp cc a @ (value_type (ty_supported_vec cmp_ty)) b)) x y)))
|
|
1988
|
+
(let ((mask VReg (gen_icmp_mask cmp_ty cc a b)))
|
|
1989
|
+
(rv_vmerge_vvm y x mask cmp_ty)))
|
|
1990
|
+
|
|
1991
|
+
|
|
1992
|
+
;;;;; Rules for `isplit`;;;;;;;;;
|
|
1993
|
+
(rule
|
|
1994
|
+
(lower (isplit x))
|
|
1995
|
+
(let
|
|
1996
|
+
((t1 XReg (value_regs_get x 0))
|
|
1997
|
+
(t2 XReg (value_regs_get x 1)))
|
|
1998
|
+
(output_pair t1 t2)))
|
|
1999
|
+
|
|
2000
|
+
;;;;; Rules for `iconcat`;;;;;;;;;
|
|
2001
|
+
(rule
|
|
2002
|
+
(lower (has_type $I128 (iconcat x y)))
|
|
2003
|
+
(let
|
|
2004
|
+
((t1 XReg x)
|
|
2005
|
+
(t2 XReg y))
|
|
2006
|
+
(value_regs t1 t2)))
|
|
2007
|
+
|
|
2008
|
+
;; Special-case the lowering of an `isplit` of a 128-bit multiply where the
|
|
2009
|
+
;; lower bits of the result are discarded and the operands are sign or zero
|
|
2010
|
+
;; extended. This maps directly to `umulh` and `smulh`.
|
|
2011
|
+
(rule 1 (lower i @ (isplit (has_type $I128 (imul (uextend x) (uextend y)))))
|
|
2012
|
+
(if-let (first_result lo) i)
|
|
2013
|
+
(if-let true (value_is_unused lo))
|
|
2014
|
+
(output_pair (invalid_reg) (rv_mulhu (zext x) (zext y))))
|
|
2015
|
+
|
|
2016
|
+
(rule 1 (lower i @ (isplit (has_type $I128 (imul (sextend x) (sextend y)))))
|
|
2017
|
+
(if-let (first_result lo) i)
|
|
2018
|
+
(if-let true (value_is_unused lo))
|
|
2019
|
+
(output_pair (invalid_reg) (rv_mulh (sext x) (sext y))))
|
|
2020
|
+
|
|
2021
|
+
;;;;; Rules for `smax`;;;;;;;;;
|
|
2022
|
+
|
|
2023
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (smax x y)))
|
|
2024
|
+
(let ((x XReg (sext x))
|
|
2025
|
+
(y XReg (sext y)))
|
|
2026
|
+
(gen_select_xreg (cmp_gt x y) x y)))
|
|
2027
|
+
|
|
2028
|
+
(rule 1 (lower (has_type $I128 (smax x y)))
|
|
2029
|
+
(gen_select_regs (icmp_to_int_compare (IntCC.SignedGreaterThan) x y) x y))
|
|
2030
|
+
|
|
2031
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (smax x y)))
|
|
2032
|
+
(rv_vmax_vv x y (unmasked) ty))
|
|
2033
|
+
|
|
2034
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (smax x (splat y))))
|
|
2035
|
+
(rv_vmax_vx x y (unmasked) ty))
|
|
2036
|
+
|
|
2037
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (smax (splat x) y)))
|
|
2038
|
+
(rv_vmax_vx y x (unmasked) ty))
|
|
2039
|
+
|
|
2040
|
+
;;;;; Rules for `smin`;;;;;;;;;
|
|
2041
|
+
|
|
2042
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (smin x y)))
|
|
2043
|
+
(let ((x XReg (sext x))
|
|
2044
|
+
(y XReg (sext y)))
|
|
2045
|
+
(gen_select_xreg (cmp_lt x y) x y)))
|
|
2046
|
+
|
|
2047
|
+
(rule 1 (lower (has_type $I128 (smin x y)))
|
|
2048
|
+
(gen_select_regs (icmp_to_int_compare (IntCC.SignedLessThan) x y) x y))
|
|
2049
|
+
|
|
2050
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (smin x y)))
|
|
2051
|
+
(rv_vmin_vv x y (unmasked) ty))
|
|
2052
|
+
|
|
2053
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (smin x (splat y))))
|
|
2054
|
+
(rv_vmin_vx x y (unmasked) ty))
|
|
2055
|
+
|
|
2056
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (smin (splat x) y)))
|
|
2057
|
+
(rv_vmin_vx y x (unmasked) ty))
|
|
2058
|
+
|
|
2059
|
+
;;;;; Rules for `umax`;;;;;;;;;
|
|
2060
|
+
|
|
2061
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (umax x y)))
|
|
2062
|
+
(let ((x XReg (zext x))
|
|
2063
|
+
(y XReg (zext y)))
|
|
2064
|
+
(gen_select_xreg (cmp_gtu x y) x y)))
|
|
2065
|
+
|
|
2066
|
+
(rule 1 (lower (has_type $I128 (umax x y)))
|
|
2067
|
+
(gen_select_regs (icmp_to_int_compare (IntCC.UnsignedGreaterThan) x y) x y))
|
|
2068
|
+
|
|
2069
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (umax x y)))
|
|
2070
|
+
(rv_vmaxu_vv x y (unmasked) ty))
|
|
2071
|
+
|
|
2072
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (umax x (splat y))))
|
|
2073
|
+
(rv_vmaxu_vx x y (unmasked) ty))
|
|
2074
|
+
|
|
2075
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (umax (splat x) y)))
|
|
2076
|
+
(rv_vmaxu_vx y x (unmasked) ty))
|
|
2077
|
+
|
|
2078
|
+
;;;;; Rules for `umin`;;;;;;;;;
|
|
2079
|
+
|
|
2080
|
+
(rule 0 (lower (has_type (fits_in_64 ty) (umin x y)))
|
|
2081
|
+
(let ((x XReg (zext x))
|
|
2082
|
+
(y XReg (zext y)))
|
|
2083
|
+
(gen_select_xreg (cmp_ltu x y) x y)))
|
|
2084
|
+
|
|
2085
|
+
(rule 1 (lower (has_type $I128 (umin x y)))
|
|
2086
|
+
(gen_select_regs (icmp_to_int_compare (IntCC.UnsignedLessThan) x y) x y))
|
|
2087
|
+
|
|
2088
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (umin x y)))
|
|
2089
|
+
(rv_vminu_vv x y (unmasked) ty))
|
|
2090
|
+
|
|
2091
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (umin x (splat y))))
|
|
2092
|
+
(rv_vminu_vx x y (unmasked) ty))
|
|
2093
|
+
|
|
2094
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (umin (splat x) y)))
|
|
2095
|
+
(rv_vminu_vx y x (unmasked) ty))
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
;;;;; Rules for `debugtrap`;;;;;;;;;
|
|
2099
|
+
(rule
|
|
2100
|
+
(lower (debugtrap))
|
|
2101
|
+
(side_effect (SideEffectNoResult.Inst (MInst.EBreak))))
|
|
2102
|
+
|
|
2103
|
+
;;;;; Rules for `fence`;;;;;;;;;
|
|
2104
|
+
(rule
|
|
2105
|
+
(lower (fence))
|
|
2106
|
+
(side_effect (SideEffectNoResult.Inst (MInst.Fence 15 15))))
|
|
2107
|
+
|
|
2108
|
+
;;;;; Rules for `trap`;;;;;;;;;
|
|
2109
|
+
(rule
|
|
2110
|
+
(lower (trap code))
|
|
2111
|
+
(udf code))
|
|
2112
|
+
|
|
2113
|
+
;;;;; Rules for `trapz`;;;;;;;;;
|
|
2114
|
+
(rule
|
|
2115
|
+
(lower (trapz value @ (value_type (fits_in_64 _)) code))
|
|
2116
|
+
(gen_trapz value code))
|
|
2117
|
+
|
|
2118
|
+
(rule 1
|
|
2119
|
+
(lower (trapz value @ (value_type $I128) code))
|
|
2120
|
+
(gen_trapif_val_i128 (ZeroCond.Zero) value code))
|
|
2121
|
+
|
|
2122
|
+
; fold icmp + trapz
|
|
2123
|
+
(rule 2 (lower (trapz (icmp cc x @ (value_type (fits_in_64 _)) y) code))
|
|
2124
|
+
(gen_trapif (intcc_complement cc) x y code))
|
|
2125
|
+
|
|
2126
|
+
;;;;; Rules for `trapnz`;;;;;;;;;
|
|
2127
|
+
(rule
|
|
2128
|
+
(lower (trapnz value @ (value_type (fits_in_64 _)) code))
|
|
2129
|
+
(gen_trapnz value code))
|
|
2130
|
+
|
|
2131
|
+
(rule 1
|
|
2132
|
+
(lower (trapnz value @ (value_type $I128) code))
|
|
2133
|
+
(gen_trapif_val_i128 (ZeroCond.NonZero) value code))
|
|
2134
|
+
|
|
2135
|
+
; fold icmp + trapnz
|
|
2136
|
+
(rule 2 (lower (trapnz (icmp cc x @ (value_type (fits_in_64 _)) y) code))
|
|
2137
|
+
(gen_trapif cc x y code))
|
|
2138
|
+
|
|
2139
|
+
;;;;; Rules for `uload8`;;;;;;;;;
|
|
2140
|
+
(rule (lower (uload8 (little_or_native_endian flags) addr offset))
|
|
2141
|
+
(gen_load (amode addr offset) (LoadOP.Lbu) flags))
|
|
2142
|
+
|
|
2143
|
+
;;;;; Rules for `sload8`;;;;;;;;;
|
|
2144
|
+
(rule (lower (sload8 (little_or_native_endian flags) addr offset))
|
|
2145
|
+
(gen_load (amode addr offset) (LoadOP.Lb) flags))
|
|
2146
|
+
|
|
2147
|
+
;;;;; Rules for `uload16`;;;;;;;;;
|
|
2148
|
+
(rule (lower (uload16 (little_or_native_endian flags) addr offset))
|
|
2149
|
+
(gen_load (amode addr offset) (LoadOP.Lhu) flags))
|
|
2150
|
+
|
|
2151
|
+
;;;;; Rules for `iload16`;;;;;;;;;
|
|
2152
|
+
(rule (lower (sload16 (little_or_native_endian flags) addr offset))
|
|
2153
|
+
(gen_load (amode addr offset) (LoadOP.Lh) flags))
|
|
2154
|
+
|
|
2155
|
+
;;;;; Rules for `uload32`;;;;;;;;;
|
|
2156
|
+
(rule (lower (uload32 (little_or_native_endian flags) addr offset))
|
|
2157
|
+
(gen_load (amode addr offset) (LoadOP.Lwu) flags))
|
|
2158
|
+
|
|
2159
|
+
;;;;; Rules for `sload32`;;;;;;;;;
|
|
2160
|
+
(rule (lower (sload32 (little_or_native_endian flags) addr offset))
|
|
2161
|
+
(gen_load (amode addr offset) (LoadOP.Lw) flags))
|
|
2162
|
+
|
|
2163
|
+
;;;;; Rules for `load`;;;;;;;;;
|
|
2164
|
+
(rule (lower (has_type ty (load (little_or_native_endian flags) addr offset)))
|
|
2165
|
+
(gen_load (amode addr offset) (load_op ty) flags))
|
|
2166
|
+
|
|
2167
|
+
(rule 1 (lower (has_type (ty_reg_pair _) (load (little_or_native_endian flags) addr offset)))
|
|
2168
|
+
(if-let offset_plus_8 (i32_checked_add offset 8))
|
|
2169
|
+
(let ((lo XReg (gen_load (amode addr offset) (LoadOP.Ld) flags))
|
|
2170
|
+
(hi XReg (gen_load (amode addr offset_plus_8) (LoadOP.Ld) flags)))
|
|
2171
|
+
(value_regs lo hi)))
|
|
2172
|
+
|
|
2173
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (load (little_or_native_endian flags) addr offset)))
|
|
2174
|
+
(let ((eew VecElementWidth (element_width_from_type ty))
|
|
2175
|
+
(amode AMode (amode addr offset)))
|
|
2176
|
+
(vec_load eew (VecAMode.UnitStride amode) flags (unmasked) ty)))
|
|
2177
|
+
|
|
2178
|
+
;;;;; Rules for Load + Extend Combos ;;;;;;;;;
|
|
2179
|
+
|
|
2180
|
+
;; These rules cover the special loads that load a 64bit value and do some sort of extension.
|
|
2181
|
+
;; We don't have any special instructions to do this, so just load the 64 bits as a vector, and
|
|
2182
|
+
;; do a SEW/2 extension. This only reads half width elements from the source vector register
|
|
2183
|
+
;; extends it, and writes the back the full register.
|
|
2184
|
+
|
|
2185
|
+
(decl gen_load64_extend (Type ExtendOp MemFlags AMode) VReg)
|
|
2186
|
+
|
|
2187
|
+
(rule (gen_load64_extend ty (ExtendOp.Signed) flags amode)
|
|
2188
|
+
(let ((eew VecElementWidth (element_width_from_type $I64))
|
|
2189
|
+
(load_state VState (vstate_from_type $I64))
|
|
2190
|
+
(loaded VReg (vec_load eew (VecAMode.UnitStride amode) flags (unmasked) load_state)))
|
|
2191
|
+
(rv_vsext_vf2 loaded (unmasked) ty)))
|
|
2192
|
+
|
|
2193
|
+
(rule (gen_load64_extend ty (ExtendOp.Zero) flags amode)
|
|
2194
|
+
(let ((eew VecElementWidth (element_width_from_type $I64))
|
|
2195
|
+
(load_state VState (vstate_from_type $I64))
|
|
2196
|
+
(loaded VReg (vec_load eew (VecAMode.UnitStride amode) flags (unmasked) load_state)))
|
|
2197
|
+
(rv_vzext_vf2 loaded (unmasked) ty)))
|
|
2198
|
+
|
|
2199
|
+
;;;;; Rules for `uload8x8`;;;;;;;;;;
|
|
2200
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I16X8) (uload8x8 (little_or_native_endian flags) addr offset)))
|
|
2201
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags (amode addr offset)))
|
|
2202
|
+
|
|
2203
|
+
;;;;; Rules for `uload16x4`;;;;;;;;;
|
|
2204
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I32X4) (uload16x4 (little_or_native_endian flags) addr offset)))
|
|
2205
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags (amode addr offset)))
|
|
2206
|
+
|
|
2207
|
+
;;;;; Rules for `uload32x2`;;;;;;;;;
|
|
2208
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I64X2) (uload32x2 (little_or_native_endian flags) addr offset)))
|
|
2209
|
+
(gen_load64_extend ty (ExtendOp.Zero) flags (amode addr offset)))
|
|
2210
|
+
|
|
2211
|
+
;;;;; Rules for `sload8x8`;;;;;;;;;;
|
|
2212
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I16X8) (sload8x8 (little_or_native_endian flags) addr offset)))
|
|
2213
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags (amode addr offset)))
|
|
2214
|
+
|
|
2215
|
+
;;;;; Rules for `sload16x4`;;;;;;;;;
|
|
2216
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I32X4) (sload16x4 (little_or_native_endian flags) addr offset)))
|
|
2217
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags (amode addr offset)))
|
|
2218
|
+
|
|
2219
|
+
;;;;; Rules for `sload32x2`;;;;;;;;;
|
|
2220
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I64X2) (sload32x2 (little_or_native_endian flags) addr offset)))
|
|
2221
|
+
(gen_load64_extend ty (ExtendOp.Signed) flags (amode addr offset)))
|
|
2222
|
+
|
|
2223
|
+
;;;;; Rules for `istore8`;;;;;;;;;
|
|
2224
|
+
(rule (lower (istore8 (little_or_native_endian flags) src addr offset))
|
|
2225
|
+
(rv_store (amode addr offset) (StoreOP.Sb) flags src))
|
|
2226
|
+
|
|
2227
|
+
;;;;; Rules for `istore16`;;;;;;;;;
|
|
2228
|
+
(rule (lower (istore16 (little_or_native_endian flags) src addr offset))
|
|
2229
|
+
(rv_store (amode addr offset) (StoreOP.Sh) flags src))
|
|
2230
|
+
|
|
2231
|
+
;;;;; Rules for `istore32`;;;;;;;;;
|
|
2232
|
+
(rule (lower (istore32 (little_or_native_endian flags) src addr offset))
|
|
2233
|
+
(rv_store (amode addr offset) (StoreOP.Sw) flags src))
|
|
2234
|
+
|
|
2235
|
+
;;;;; Rules for `store`;;;;;;;;;
|
|
2236
|
+
(rule (lower (store (little_or_native_endian flags) src @ (value_type ty) addr offset))
|
|
2237
|
+
(gen_store (amode addr offset) flags src))
|
|
2238
|
+
|
|
2239
|
+
(rule 1 (lower (store (little_or_native_endian flags) src @ (value_type (ty_reg_pair _)) addr offset))
|
|
2240
|
+
(if-let offset_plus_8 (i32_checked_add offset 8))
|
|
2241
|
+
(let ((_ InstOutput (rv_store (amode addr offset) (StoreOP.Sd) flags (value_regs_get src 0))))
|
|
2242
|
+
(rv_store (amode addr offset_plus_8) (StoreOP.Sd) flags (value_regs_get src 1))))
|
|
2243
|
+
|
|
2244
|
+
(rule 2 (lower (store (little_or_native_endian flags) src @ (value_type (ty_supported_vec ty)) addr offset))
|
|
2245
|
+
(let ((eew VecElementWidth (element_width_from_type ty))
|
|
2246
|
+
(amode AMode (amode addr offset)))
|
|
2247
|
+
(vec_store eew (VecAMode.UnitStride amode) src flags (unmasked) ty)))
|
|
2248
|
+
|
|
2249
|
+
;; Avoid unnecessary moves to floating point registers for `F16` memory to memory copies when
|
|
2250
|
+
;; `Zfhmin` is unavailable.
|
|
2251
|
+
(rule 3 (lower (store (little_or_native_endian store_flags)
|
|
2252
|
+
(sinkable_load inst $F16 (little_or_native_endian load_flags) load_addr load_offset) store_addr store_offset))
|
|
2253
|
+
(if-let false (has_zfhmin))
|
|
2254
|
+
(rv_store (amode store_addr store_offset) (StoreOP.Sh) store_flags (gen_sunk_load inst (amode load_addr load_offset) (LoadOP.Lh) load_flags)))
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
;;;;; Rules for `icmp`;;;;;;;;;
|
|
2258
|
+
|
|
2259
|
+
;; 8-64 bit comparisons. Mostly fall back onto `IntegerCompare` and then
|
|
2260
|
+
;; materializing that, but before that happens try to match some
|
|
2261
|
+
;; constant-related patterns
|
|
2262
|
+
|
|
2263
|
+
(rule 0 (lower (icmp cc x @ (value_type (fits_in_64 ty)) y))
|
|
2264
|
+
(lower_icmp cc x y))
|
|
2265
|
+
|
|
2266
|
+
(decl lower_icmp (IntCC Value Value) XReg)
|
|
2267
|
+
(rule 0 (lower_icmp cc x y)
|
|
2268
|
+
(lower_int_compare (icmp_to_int_compare cc x y)))
|
|
2269
|
+
|
|
2270
|
+
;; a == $imm => seqz(xori(..))
|
|
2271
|
+
(rule 1 (lower_icmp (IntCC.Equal) x y)
|
|
2272
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) y)
|
|
2273
|
+
(rv_seqz (rv_xori (sext x) imm)))
|
|
2274
|
+
(rule 2 (lower_icmp (IntCC.Equal) x y)
|
|
2275
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) x)
|
|
2276
|
+
(rv_seqz (rv_xori (sext y) imm)))
|
|
2277
|
+
|
|
2278
|
+
;; a != $imm => snez(xori(..))
|
|
2279
|
+
(rule 1 (lower_icmp (IntCC.NotEqual) x y)
|
|
2280
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) y)
|
|
2281
|
+
(rv_snez (rv_xori (sext x) imm)))
|
|
2282
|
+
(rule 2 (lower_icmp (IntCC.NotEqual) x y)
|
|
2283
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) x)
|
|
2284
|
+
(rv_snez (rv_xori (sext y) imm)))
|
|
2285
|
+
|
|
2286
|
+
;; a < $imm => slti(..)
|
|
2287
|
+
(rule 1 (lower_icmp (IntCC.SignedLessThan) x y)
|
|
2288
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) y)
|
|
2289
|
+
(rv_slti (sext x) imm))
|
|
2290
|
+
(rule 1 (lower_icmp (IntCC.SignedGreaterThan) x y)
|
|
2291
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 imm))) x)
|
|
2292
|
+
(rv_slti (sext y) imm))
|
|
2293
|
+
(rule 1 (lower_icmp (IntCC.UnsignedLessThan) x y)
|
|
2294
|
+
(if-let (u64_from_iconst (u64_extract_non_zero (imm12_from_u64 imm))) y)
|
|
2295
|
+
(rv_sltiu (zext x) imm))
|
|
2296
|
+
(rule 1 (lower_icmp (IntCC.UnsignedGreaterThan) x y)
|
|
2297
|
+
(if-let (u64_from_iconst (u64_extract_non_zero (imm12_from_u64 imm))) x)
|
|
2298
|
+
(rv_sltiu (zext y) imm))
|
|
2299
|
+
|
|
2300
|
+
;; a >= $imm => !(a < $imm)
|
|
2301
|
+
(rule 2 (lower_icmp cc @ (IntCC.SignedGreaterThanOrEqual) x y)
|
|
2302
|
+
(if-let (i64_from_iconst (i64_extract_non_zero (imm12_from_i64 _))) y)
|
|
2303
|
+
(rv_xori (lower_icmp (intcc_complement cc) x y) (imm12_const 1)))
|
|
2304
|
+
(rule 2 (lower_icmp cc @ (IntCC.UnsignedGreaterThanOrEqual) x y)
|
|
2305
|
+
(if-let (u64_from_iconst (u64_extract_non_zero (imm12_from_u64 _))) y)
|
|
2306
|
+
(rv_xori (lower_icmp (intcc_complement cc) x y) (imm12_const 1)))
|
|
2307
|
+
|
|
2308
|
+
;; Materializes an `IntegerCompare` bundle directly into an `XReg` with a 0
|
|
2309
|
+
;; or 1 value.
|
|
2310
|
+
(decl lower_int_compare (IntegerCompare) XReg)
|
|
2311
|
+
|
|
2312
|
+
;; x == y => x ^ y == 0
|
|
2313
|
+
(rule 0 (lower_int_compare (int_compare_decompose (IntCC.Equal) x y))
|
|
2314
|
+
(rv_seqz (rv_xor x y)))
|
|
2315
|
+
(rule 1 (lower_int_compare (int_compare_decompose (IntCC.Equal) x (zero_reg)))
|
|
2316
|
+
(rv_seqz x))
|
|
2317
|
+
(rule 2 (lower_int_compare (int_compare_decompose (IntCC.Equal) (zero_reg) y))
|
|
2318
|
+
(rv_seqz y))
|
|
2319
|
+
;; x != y => x ^ y != 0
|
|
2320
|
+
(rule 0 (lower_int_compare (int_compare_decompose (IntCC.NotEqual) x y))
|
|
2321
|
+
(rv_snez (rv_xor x y)))
|
|
2322
|
+
(rule 1 (lower_int_compare (int_compare_decompose (IntCC.NotEqual) x (zero_reg)))
|
|
2323
|
+
(rv_snez x))
|
|
2324
|
+
(rule 2 (lower_int_compare (int_compare_decompose (IntCC.NotEqual) (zero_reg) x))
|
|
2325
|
+
(rv_snez x))
|
|
2326
|
+
;; x < y => x < y
|
|
2327
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.SignedLessThan) x y))
|
|
2328
|
+
(rv_slt x y))
|
|
2329
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.UnsignedLessThan) x y))
|
|
2330
|
+
(rv_sltu x y))
|
|
2331
|
+
;; x > y => y < x
|
|
2332
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.SignedGreaterThan) x y))
|
|
2333
|
+
(rv_slt y x))
|
|
2334
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.UnsignedGreaterThan) x y))
|
|
2335
|
+
(rv_sltu y x))
|
|
2336
|
+
;; x <= y => !(y < x)
|
|
2337
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.SignedLessThanOrEqual) x y))
|
|
2338
|
+
(rv_xori (rv_slt y x) (imm12_const 1)))
|
|
2339
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.UnsignedLessThanOrEqual) x y))
|
|
2340
|
+
(rv_xori (rv_sltu y x) (imm12_const 1)))
|
|
2341
|
+
;; x >= y => !(x < y)
|
|
2342
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.SignedGreaterThanOrEqual) x y))
|
|
2343
|
+
(rv_xori (rv_slt x y) (imm12_const 1)))
|
|
2344
|
+
(rule (lower_int_compare (int_compare_decompose (IntCC.UnsignedGreaterThanOrEqual) x y))
|
|
2345
|
+
(rv_xori (rv_sltu x y) (imm12_const 1)))
|
|
2346
|
+
|
|
2347
|
+
;; 128-bit comparisons.
|
|
2348
|
+
;;
|
|
2349
|
+
;; Currently only `==`, `!=`, and `<` are implemented, and everything else
|
|
2350
|
+
;; delegates to one of those.
|
|
2351
|
+
|
|
2352
|
+
(rule 20 (lower (icmp cc x @ (value_type $I128) y))
|
|
2353
|
+
(lower_icmp_i128 cc x y))
|
|
2354
|
+
|
|
2355
|
+
(decl lower_icmp_i128 (IntCC ValueRegs ValueRegs) XReg)
|
|
2356
|
+
(rule 0 (lower_icmp_i128 (IntCC.Equal) x y)
|
|
2357
|
+
(let ((lo XReg (rv_xor (value_regs_get x 0) (value_regs_get y 0)))
|
|
2358
|
+
(hi XReg (rv_xor (value_regs_get x 1) (value_regs_get y 1))))
|
|
2359
|
+
(rv_seqz (rv_or lo hi))))
|
|
2360
|
+
(rule 0 (lower_icmp_i128 (IntCC.NotEqual) x y)
|
|
2361
|
+
(let ((lo XReg (rv_xor (value_regs_get x 0) (value_regs_get y 0)))
|
|
2362
|
+
(hi XReg (rv_xor (value_regs_get x 1) (value_regs_get y 1))))
|
|
2363
|
+
(rv_snez (rv_or lo hi))))
|
|
2364
|
+
|
|
2365
|
+
;; swap args for `>` to use `<` instead
|
|
2366
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.SignedGreaterThan) x y)
|
|
2367
|
+
(lower_icmp_i128 (intcc_swap_args cc) y x))
|
|
2368
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.UnsignedGreaterThan) x y)
|
|
2369
|
+
(lower_icmp_i128 (intcc_swap_args cc) y x))
|
|
2370
|
+
|
|
2371
|
+
;; complement `=`-related conditions to get ones that don't use `=`.
|
|
2372
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.SignedLessThanOrEqual) x y)
|
|
2373
|
+
(rv_xori (lower_icmp_i128 (intcc_complement cc) x y) (imm12_const 1)))
|
|
2374
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.SignedGreaterThanOrEqual) x y)
|
|
2375
|
+
(rv_xori (lower_icmp_i128 (intcc_complement cc) x y) (imm12_const 1)))
|
|
2376
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.UnsignedLessThanOrEqual) x y)
|
|
2377
|
+
(rv_xori (lower_icmp_i128 (intcc_complement cc) x y) (imm12_const 1)))
|
|
2378
|
+
(rule 0 (lower_icmp_i128 cc @ (IntCC.UnsignedGreaterThanOrEqual) x y)
|
|
2379
|
+
(rv_xori (lower_icmp_i128 (intcc_complement cc) x y) (imm12_const 1)))
|
|
2380
|
+
|
|
2381
|
+
;; Compare both the bottom and upper halves of the 128-bit values. If
|
|
2382
|
+
;; the top half is equal use the bottom comparison, otherwise use the upper
|
|
2383
|
+
;; comparison. Note that the lower comparison is always unsigned since if it's
|
|
2384
|
+
;; used the top halves are all zeros and the semantic values are positive.
|
|
2385
|
+
(rule 1 (lower_icmp_i128 cc x y)
|
|
2386
|
+
(if-let (IntCC.UnsignedLessThan) (intcc_unsigned cc))
|
|
2387
|
+
(let ((x_lo Reg (value_regs_get x 0))
|
|
2388
|
+
(x_hi Reg (value_regs_get x 1))
|
|
2389
|
+
(y_lo Reg (value_regs_get y 0))
|
|
2390
|
+
(y_hi Reg (value_regs_get y 1))
|
|
2391
|
+
(top_cmp XReg (lower_int_compare (int_compare cc x_hi y_hi)))
|
|
2392
|
+
(bottom_cmp XReg (rv_sltu x_lo y_lo)))
|
|
2393
|
+
(gen_select_xreg (cmp_eqz (rv_xor x_hi y_hi)) bottom_cmp top_cmp)))
|
|
2394
|
+
|
|
2395
|
+
;; vector icmp comparisons
|
|
2396
|
+
|
|
2397
|
+
(rule 30 (lower (icmp cc x @ (value_type (ty_supported_vec ty)) y))
|
|
2398
|
+
(gen_expand_mask ty (gen_icmp_mask ty cc x y)))
|
|
2399
|
+
|
|
2400
|
+
;;;;; Rules for `fcmp`;;;;;;;;;
|
|
2401
|
+
(rule 0 (lower (fcmp cc x @ (value_type (ty_supported_float_full ty)) y))
|
|
2402
|
+
(lower_float_compare (fcmp_to_float_compare cc ty x y)))
|
|
2403
|
+
|
|
2404
|
+
(decl lower_float_compare (FloatCompare) XReg)
|
|
2405
|
+
(rule (lower_float_compare (FloatCompare.One r)) r)
|
|
2406
|
+
(rule (lower_float_compare (FloatCompare.Zero r)) (rv_seqz r))
|
|
2407
|
+
|
|
2408
|
+
(rule 1 (lower (fcmp cc x @ (value_type (ty_supported_vec ty)) y))
|
|
2409
|
+
(gen_expand_mask ty (gen_fcmp_mask ty cc x y)))
|
|
2410
|
+
|
|
2411
|
+
;;;;; Rules for `func_addr`;;;;;;;;;
|
|
2412
|
+
(rule
|
|
2413
|
+
(lower (func_addr (func_ref_data _ name dist)))
|
|
2414
|
+
(load_ext_name name 0 dist))
|
|
2415
|
+
|
|
2416
|
+
;;;;; Rules for `fcvt_to_uint`;;;;;;;;;
|
|
2417
|
+
|
|
2418
|
+
;; RISC-V float-to-integer conversion does not trap, but Cranelift semantics are
|
|
2419
|
+
;; to trap. This manually performs checks for NaN and out-of-bounds values and
|
|
2420
|
+
;; traps in such cases.
|
|
2421
|
+
;;
|
|
2422
|
+
;; TODO: could this perhaps be more optimal through inspection of the `fcsr`?
|
|
2423
|
+
;; Unsure whether that needs to be preserved across function calls and/or would
|
|
2424
|
+
;; cause other problems. Also unsure whether it's actually more performant.
|
|
2425
|
+
(rule (lower (has_type ity (fcvt_to_uint v @ (value_type fty))))
|
|
2426
|
+
(let ((_ InstOutput (gen_trapz (rv_feq fty v v) (TrapCode.BAD_CONVERSION_TO_INTEGER)))
|
|
2427
|
+
(min FReg (imm fty (fcvt_umin_bound fty false)))
|
|
2428
|
+
(_ InstOutput (gen_trapnz (rv_fle fty v min) (TrapCode.INTEGER_OVERFLOW)))
|
|
2429
|
+
(max FReg (imm fty (fcvt_umax_bound fty ity false)))
|
|
2430
|
+
(_ InstOutput (gen_trapnz (rv_fge fty v max) (TrapCode.INTEGER_OVERFLOW))))
|
|
2431
|
+
(lower_inbounds_fcvt_to_uint ity fty v)))
|
|
2432
|
+
|
|
2433
|
+
(decl lower_inbounds_fcvt_to_uint (Type Type FReg) XReg)
|
|
2434
|
+
(rule 0 (lower_inbounds_fcvt_to_uint (fits_in_32 _) fty v)
|
|
2435
|
+
(rv_fcvtwu fty (FRM.RTZ) v))
|
|
2436
|
+
(rule 1 (lower_inbounds_fcvt_to_uint $I64 fty v)
|
|
2437
|
+
(rv_fcvtlu fty (FRM.RTZ) v))
|
|
2438
|
+
|
|
2439
|
+
;;;;; Rules for `fcvt_to_sint`;;;;;;;;;
|
|
2440
|
+
|
|
2441
|
+
;; NB: see above with `fcvt_to_uint` as this is similar
|
|
2442
|
+
(rule (lower (has_type ity (fcvt_to_sint v @ (value_type fty))))
|
|
2443
|
+
(let ((_ InstOutput (gen_trapz (rv_feq fty v v) (TrapCode.BAD_CONVERSION_TO_INTEGER)))
|
|
2444
|
+
(min FReg (imm fty (fcvt_smin_bound fty ity false)))
|
|
2445
|
+
(_ InstOutput (gen_trapnz (rv_fle fty v min) (TrapCode.INTEGER_OVERFLOW)))
|
|
2446
|
+
(max FReg (imm fty (fcvt_smax_bound fty ity false)))
|
|
2447
|
+
(_ InstOutput (gen_trapnz (rv_fge fty v max) (TrapCode.INTEGER_OVERFLOW))))
|
|
2448
|
+
(lower_inbounds_fcvt_to_sint ity fty v)))
|
|
2449
|
+
|
|
2450
|
+
(decl lower_inbounds_fcvt_to_sint (Type Type FReg) XReg)
|
|
2451
|
+
(rule 0 (lower_inbounds_fcvt_to_sint (fits_in_32 _) fty v)
|
|
2452
|
+
(rv_fcvtw fty (FRM.RTZ) v))
|
|
2453
|
+
(rule 1 (lower_inbounds_fcvt_to_sint $I64 fty v)
|
|
2454
|
+
(rv_fcvtl fty (FRM.RTZ) v))
|
|
2455
|
+
|
|
2456
|
+
;;;;; Rules for `fcvt_to_sint_sat`;;;;;;;;;
|
|
2457
|
+
|
|
2458
|
+
(rule 0 (lower (has_type to (fcvt_to_sint_sat v @ (value_type (ty_supported_float_full from)))))
|
|
2459
|
+
(handle_fcvt_to_int_nan from v (lower_fcvt_to_sint_sat from to v)))
|
|
2460
|
+
|
|
2461
|
+
;; Lowers to a `rv_fcvt*` instruction but handles 8/16-bit cases where the
|
|
2462
|
+
;; float is clamped before the conversion.
|
|
2463
|
+
(decl lower_fcvt_to_sint_sat (Type Type FReg) XReg)
|
|
2464
|
+
(rule 0 (lower_fcvt_to_sint_sat ty (fits_in_16 out_ty) v)
|
|
2465
|
+
(let ((max FReg (imm ty (fcvt_smax_bound ty out_ty true)))
|
|
2466
|
+
(min FReg (imm ty (fcvt_smin_bound ty out_ty true)))
|
|
2467
|
+
(clamped FReg (rv_fmin ty max (rv_fmax ty min v))))
|
|
2468
|
+
(rv_fcvtw ty (FRM.RTZ) clamped)))
|
|
2469
|
+
(rule 1 (lower_fcvt_to_sint_sat ty $I32 v) (rv_fcvtw ty (FRM.RTZ) v))
|
|
2470
|
+
(rule 1 (lower_fcvt_to_sint_sat ty $I64 v) (rv_fcvtl ty (FRM.RTZ) v))
|
|
2471
|
+
|
|
2472
|
+
(decl fcvt_smax_bound (Type Type bool) u64)
|
|
2473
|
+
(extern constructor fcvt_smax_bound fcvt_smax_bound)
|
|
2474
|
+
(decl fcvt_smin_bound (Type Type bool) u64)
|
|
2475
|
+
(extern constructor fcvt_smin_bound fcvt_smin_bound)
|
|
2476
|
+
|
|
2477
|
+
;; RISC-V float-to-int conversions generate the same output for NaN and +Inf,
|
|
2478
|
+
;; but Cranelift semantics are to produce 0 for NaN instead. This helper
|
|
2479
|
+
;; translates these semantics by taking the float being converted (with the type
|
|
2480
|
+
;; specified) and the native RISC-V output as an `XReg`. The returned `XReg`
|
|
2481
|
+
;; will be zeroed out if the float is NaN.
|
|
2482
|
+
;;
|
|
2483
|
+
;; This is done by comparing the float to itself, generating 0 if it's NaN. This
|
|
2484
|
+
;; bit is then negated to become either all-ones or all-zeros which is then
|
|
2485
|
+
;; and-ed against the native output. That'll produce all zeros if the input is
|
|
2486
|
+
;; NaN or the native output otherwise.
|
|
2487
|
+
(decl handle_fcvt_to_int_nan (Type FReg XReg) XReg)
|
|
2488
|
+
(rule (handle_fcvt_to_int_nan ty freg xreg)
|
|
2489
|
+
(let ((is_not_nan XReg (rv_feq ty freg freg))
|
|
2490
|
+
(not_nan_mask XReg (rv_neg is_not_nan)))
|
|
2491
|
+
(rv_and xreg not_nan_mask)))
|
|
2492
|
+
|
|
2493
|
+
(rule 1 (lower (has_type (ty_supported_vec _) (fcvt_to_sint_sat v @ (value_type from_ty))))
|
|
2494
|
+
(if-let zero (i8_to_imm5 0))
|
|
2495
|
+
(let ((is_nan VReg (rv_vmfne_vv v v (unmasked) from_ty))
|
|
2496
|
+
(cvt VReg (rv_vfcvt_rtz_x_f_v v (unmasked) from_ty)))
|
|
2497
|
+
(rv_vmerge_vim cvt zero is_nan from_ty)))
|
|
2498
|
+
|
|
2499
|
+
;;;;; Rules for `fcvt_to_uint_sat`;;;;;;;;;
|
|
2500
|
+
|
|
2501
|
+
(rule 0 (lower (has_type to (fcvt_to_uint_sat v @ (value_type (ty_supported_float_full from)))))
|
|
2502
|
+
(handle_fcvt_to_int_nan from v (lower_fcvt_to_uint_sat from to v)))
|
|
2503
|
+
|
|
2504
|
+
;; Lowers to a `rv_fcvt*` instruction but handles 8/16-bit cases where the
|
|
2505
|
+
;; float is clamped before the conversion.
|
|
2506
|
+
(decl lower_fcvt_to_uint_sat (Type Type FReg) XReg)
|
|
2507
|
+
(rule 0 (lower_fcvt_to_uint_sat ty (fits_in_16 out_ty) v)
|
|
2508
|
+
(let ((max FReg (imm ty (fcvt_umax_bound ty out_ty true)))
|
|
2509
|
+
(min FReg (rv_fmvdx (zero_reg)))
|
|
2510
|
+
(clamped FReg (rv_fmin ty max (rv_fmax ty min v))))
|
|
2511
|
+
(rv_fcvtwu ty (FRM.RTZ) clamped)))
|
|
2512
|
+
(rule 1 (lower_fcvt_to_uint_sat ty $I32 v) (rv_fcvtwu ty (FRM.RTZ) v))
|
|
2513
|
+
(rule 1 (lower_fcvt_to_uint_sat ty $I64 v) (rv_fcvtlu ty (FRM.RTZ) v))
|
|
2514
|
+
|
|
2515
|
+
(decl fcvt_umax_bound (Type Type bool) u64)
|
|
2516
|
+
(extern constructor fcvt_umax_bound fcvt_umax_bound)
|
|
2517
|
+
(decl fcvt_umin_bound (Type bool) u64)
|
|
2518
|
+
(extern constructor fcvt_umin_bound fcvt_umin_bound)
|
|
2519
|
+
|
|
2520
|
+
(rule 1 (lower (has_type (ty_supported_vec _) (fcvt_to_uint_sat v @ (value_type from_ty))))
|
|
2521
|
+
(if-let zero (i8_to_imm5 0))
|
|
2522
|
+
(let ((is_nan VReg (rv_vmfne_vv v v (unmasked) from_ty))
|
|
2523
|
+
(cvt VReg (rv_vfcvt_rtz_xu_f_v v (unmasked) from_ty)))
|
|
2524
|
+
(rv_vmerge_vim cvt zero is_nan from_ty)))
|
|
2525
|
+
|
|
2526
|
+
;;;;; Rules for `fcvt_from_sint`;;;;;;;;;
|
|
2527
|
+
(rule 0 (lower (has_type $F32 (fcvt_from_sint v @ (value_type (fits_in_16 ty)))))
|
|
2528
|
+
(rv_fcvtsl (FRM.RNE) (sext v)))
|
|
2529
|
+
|
|
2530
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_sint v @ (value_type $I32))))
|
|
2531
|
+
(rv_fcvtsw (FRM.RNE) v))
|
|
2532
|
+
|
|
2533
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_sint v @ (value_type $I64))))
|
|
2534
|
+
(rv_fcvtsl (FRM.RNE) v))
|
|
2535
|
+
|
|
2536
|
+
(rule 0 (lower (has_type $F64 (fcvt_from_sint v @ (value_type (fits_in_16 ty)))))
|
|
2537
|
+
(rv_fcvtdl (FRM.RNE) (sext v)))
|
|
2538
|
+
|
|
2539
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_sint v @ (value_type $I32))))
|
|
2540
|
+
(rv_fcvtdw v))
|
|
2541
|
+
|
|
2542
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_sint v @ (value_type $I64))))
|
|
2543
|
+
(rv_fcvtdl (FRM.RNE) v))
|
|
2544
|
+
|
|
2545
|
+
(rule 2 (lower (has_type (ty_supported_vec _) (fcvt_from_sint v @ (value_type from_ty))))
|
|
2546
|
+
(rv_vfcvt_f_x_v v (unmasked) from_ty))
|
|
2547
|
+
|
|
2548
|
+
;;;;; Rules for `fcvt_from_uint`;;;;;;;;;
|
|
2549
|
+
(rule 0 (lower (has_type $F32 (fcvt_from_uint v @ (value_type (fits_in_16 ty)))))
|
|
2550
|
+
(rv_fcvtslu (FRM.RNE) (zext v)))
|
|
2551
|
+
|
|
2552
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_uint v @ (value_type $I32))))
|
|
2553
|
+
(rv_fcvtswu (FRM.RNE) v))
|
|
2554
|
+
|
|
2555
|
+
(rule 1 (lower (has_type $F32 (fcvt_from_uint v @ (value_type $I64))))
|
|
2556
|
+
(rv_fcvtslu (FRM.RNE) v))
|
|
2557
|
+
|
|
2558
|
+
(rule 0 (lower (has_type $F64 (fcvt_from_uint v @ (value_type (fits_in_16 ty)))))
|
|
2559
|
+
(rv_fcvtdlu (FRM.RNE) (zext v)))
|
|
2560
|
+
|
|
2561
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_uint v @ (value_type $I32))))
|
|
2562
|
+
(rv_fcvtdwu v))
|
|
2563
|
+
|
|
2564
|
+
(rule 1 (lower (has_type $F64 (fcvt_from_uint v @ (value_type $I64))))
|
|
2565
|
+
(rv_fcvtdlu (FRM.RNE) v))
|
|
2566
|
+
|
|
2567
|
+
(rule 2 (lower (has_type (ty_supported_vec _) (fcvt_from_uint v @ (value_type from_ty))))
|
|
2568
|
+
(rv_vfcvt_f_xu_v v (unmasked) from_ty))
|
|
2569
|
+
|
|
2570
|
+
;;;;; Rules for `symbol_value`;;;;;;;;;
|
|
2571
|
+
(rule
|
|
2572
|
+
(lower (symbol_value (symbol_value_data name dist offset)))
|
|
2573
|
+
(load_ext_name name offset dist))
|
|
2574
|
+
|
|
2575
|
+
;;;;; Rules for `tls_value` ;;;;;;;;;;;;;;
|
|
2576
|
+
|
|
2577
|
+
(rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
|
|
2578
|
+
(elf_tls_get_addr name))
|
|
2579
|
+
|
|
2580
|
+
;;;;; Rules for `bitcast`;;;;;;;;;
|
|
2581
|
+
|
|
2582
|
+
;; These rules should probably be handled in `gen_bitcast`, but it's convenient to have that return
|
|
2583
|
+
;; a single register, instead of a `ValueRegs`
|
|
2584
|
+
(rule 3 (lower (has_type (ty_reg_pair _) (bitcast _ v @ (value_type (ty_supported_vec _)))))
|
|
2585
|
+
(value_regs
|
|
2586
|
+
(gen_extractlane $I64X2 v 0)
|
|
2587
|
+
(gen_extractlane $I64X2 v 1)))
|
|
2588
|
+
|
|
2589
|
+
;; Move the high half into a vector register, and then use vslide1up to move it up and
|
|
2590
|
+
;; insert the lower half in one instruction.
|
|
2591
|
+
(rule 2 (lower (has_type (ty_supported_vec _) (bitcast _ v @ (value_type (ty_reg_pair _)))))
|
|
2592
|
+
(let ((lo XReg (value_regs_get v 0))
|
|
2593
|
+
(hi XReg (value_regs_get v 1))
|
|
2594
|
+
(vstate VState (vstate_from_type $I64X2))
|
|
2595
|
+
(vec VReg (rv_vmv_sx hi vstate)))
|
|
2596
|
+
(rv_vslide1up_vx vec vec lo (unmasked) vstate)))
|
|
2597
|
+
|
|
2598
|
+
;; `gen_bitcast` below only works with single register values, so handle I128
|
|
2599
|
+
;; and F128 specially here.
|
|
2600
|
+
(rule 1 (lower (has_type (ty_reg_pair _) (bitcast _ v @ (value_type (ty_reg_pair _)))))
|
|
2601
|
+
v)
|
|
2602
|
+
|
|
2603
|
+
(rule 0 (lower (has_type out_ty (bitcast _ v @ (value_type in_ty))))
|
|
2604
|
+
(gen_bitcast v in_ty out_ty))
|
|
2605
|
+
|
|
2606
|
+
;;;;; Rules for `ceil`;;;;;;;;;
|
|
2607
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (ceil x)))
|
|
2608
|
+
(gen_float_round (FRM.RUP) x ty))
|
|
2609
|
+
|
|
2610
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (ceil x)))
|
|
2611
|
+
(gen_vec_round x (FRM.RUP) ty))
|
|
2612
|
+
|
|
2613
|
+
;;;;; Rules for `floor`;;;;;;;;;
|
|
2614
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (floor x)))
|
|
2615
|
+
(gen_float_round (FRM.RDN) x ty))
|
|
2616
|
+
|
|
2617
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (floor x)))
|
|
2618
|
+
(gen_vec_round x (FRM.RDN) ty))
|
|
2619
|
+
|
|
2620
|
+
;;;;; Rules for `trunc`;;;;;;;;;
|
|
2621
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (trunc x)))
|
|
2622
|
+
(gen_float_round (FRM.RTZ) x ty))
|
|
2623
|
+
|
|
2624
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (trunc x)))
|
|
2625
|
+
(gen_vec_round x (FRM.RTZ) ty))
|
|
2626
|
+
|
|
2627
|
+
;;;;; Rules for `nearest`;;;;;;;;;
|
|
2628
|
+
(rule 0 (lower (has_type (ty_supported_float_full ty) (nearest x)))
|
|
2629
|
+
(gen_float_round (FRM.RNE) x ty))
|
|
2630
|
+
|
|
2631
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (nearest x)))
|
|
2632
|
+
(gen_vec_round x (FRM.RNE) ty))
|
|
2633
|
+
|
|
2634
|
+
|
|
2635
|
+
;;;;; Rules for `select_spectre_guard`;;;;;;;;;
|
|
2636
|
+
|
|
2637
|
+
;; SelectSpectreGuard is equivalent to Select, but we should not use a branch based
|
|
2638
|
+
;; lowering for it. Instead we use a conditional move based lowering.
|
|
2639
|
+
;;
|
|
2640
|
+
;; We don't have cmov's in RISC-V either, but we can emulate those using bitwise
|
|
2641
|
+
;; operations, which is what we do below.
|
|
2642
|
+
|
|
2643
|
+
;; Base case: use `gen_bmask` to generate a 0 mask or -1 mask from the value of
|
|
2644
|
+
;; `cmp`. This is then used with some bit twiddling to produce the final result.
|
|
2645
|
+
(rule 0 (lower (has_type (fits_in_64 _) (select_spectre_guard cmp x y)))
|
|
2646
|
+
(let ((mask XReg (gen_bmask cmp)))
|
|
2647
|
+
(rv_or (rv_and mask x) (rv_andn y mask))))
|
|
2648
|
+
(rule 1 (lower (has_type $I128 (select_spectre_guard cmp x y)))
|
|
2649
|
+
(let ((mask XReg (gen_bmask cmp)))
|
|
2650
|
+
(value_regs
|
|
2651
|
+
(rv_or (rv_and mask (value_regs_get x 0)) (rv_andn (value_regs_get y 0) mask))
|
|
2652
|
+
(rv_or (rv_and mask (value_regs_get x 1)) (rv_andn (value_regs_get y 1) mask)))))
|
|
2653
|
+
|
|
2654
|
+
;; Special case when an argument is the constant zero as some ands and ors
|
|
2655
|
+
;; can be folded away.
|
|
2656
|
+
(rule 2 (lower (has_type (fits_in_64 _) (select_spectre_guard cmp (i64_from_iconst 0) y)))
|
|
2657
|
+
(rv_andn y (gen_bmask cmp)))
|
|
2658
|
+
(rule 3 (lower (has_type (fits_in_64 _) (select_spectre_guard cmp x (i64_from_iconst 0))))
|
|
2659
|
+
(rv_and x (gen_bmask cmp)))
|
|
2660
|
+
|
|
2661
|
+
;;;;; Rules for `bmask`;;;;;;;;;
|
|
2662
|
+
(rule
|
|
2663
|
+
(lower (has_type oty (bmask x)))
|
|
2664
|
+
(lower_bmask x oty))
|
|
2665
|
+
|
|
2666
|
+
;; N.B.: the Ret itself is generated by the ABI.
|
|
2667
|
+
(rule (lower (return args))
|
|
2668
|
+
(lower_return args))
|
|
2669
|
+
|
|
2670
|
+
;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;;
|
|
2671
|
+
|
|
2672
|
+
(rule (lower (get_frame_pointer))
|
|
2673
|
+
(gen_mov_from_preg (fp_reg)))
|
|
2674
|
+
|
|
2675
|
+
(rule (lower (get_stack_pointer))
|
|
2676
|
+
(gen_mov_from_preg (sp_reg)))
|
|
2677
|
+
|
|
2678
|
+
(rule (lower (get_return_address))
|
|
2679
|
+
(load_ra))
|
|
2680
|
+
|
|
2681
|
+
;;; Rules for `iabs` ;;;;;;;;;;;;;
|
|
2682
|
+
|
|
2683
|
+
;; I64 and lower
|
|
2684
|
+
;; Generate the following code:
|
|
2685
|
+
;; sext.{b,h,w} a0, a0
|
|
2686
|
+
;; neg a1, a0
|
|
2687
|
+
;; max a0, a0, a1
|
|
2688
|
+
(rule 0 (lower (has_type (ty_int_ref_scalar_64 ty) (iabs x)))
|
|
2689
|
+
(let ((extended XReg (sext x))
|
|
2690
|
+
(negated XReg (rv_neg extended)))
|
|
2691
|
+
(gen_select_xreg (cmp_gt extended negated) extended negated)))
|
|
2692
|
+
|
|
2693
|
+
;; For vectors we generate the same code, but with vector instructions
|
|
2694
|
+
;; we can skip the sign extension, since the vector unit will only process
|
|
2695
|
+
;; Element Sized chunks.
|
|
2696
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (iabs x)))
|
|
2697
|
+
(let ((negated VReg (rv_vneg_v x (unmasked) ty)))
|
|
2698
|
+
(rv_vmax_vv x negated (unmasked) ty)))
|
|
2699
|
+
|
|
2700
|
+
;;;; Rules for calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2701
|
+
|
|
2702
|
+
;; Direct call to an in-range function.
|
|
2703
|
+
(rule 1 (lower (call (func_ref_data sig_ref name (RelocDistance.Near)) args))
|
|
2704
|
+
(let ((output ValueRegsVec (gen_call_output sig_ref))
|
|
2705
|
+
(abi Sig (abi_sig sig_ref))
|
|
2706
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2707
|
+
(defs CallRetList (gen_call_rets abi output))
|
|
2708
|
+
(info BoxCallInfo (gen_call_info abi name uses defs (try_call_none)))
|
|
2709
|
+
(_ Unit (emit_side_effect (call_impl info))))
|
|
2710
|
+
output))
|
|
2711
|
+
|
|
2712
|
+
;; Direct call to an out-of-range function (implicitly via pointer).
|
|
2713
|
+
(rule (lower (call (func_ref_data sig_ref name dist) args))
|
|
2714
|
+
(let ((output ValueRegsVec (gen_call_output sig_ref))
|
|
2715
|
+
(abi Sig (abi_sig sig_ref))
|
|
2716
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2717
|
+
(defs CallRetList (gen_call_rets abi output))
|
|
2718
|
+
(target Reg (load_ext_name name 0 dist))
|
|
2719
|
+
(info BoxCallIndInfo (gen_call_ind_info abi target uses defs (try_call_none)))
|
|
2720
|
+
(_ Unit (emit_side_effect (call_ind_impl info))))
|
|
2721
|
+
output))
|
|
2722
|
+
|
|
2723
|
+
;; Indirect call.
|
|
2724
|
+
(rule (lower (call_indirect sig_ref ptr args))
|
|
2725
|
+
(let ((output ValueRegsVec (gen_call_output sig_ref))
|
|
2726
|
+
(abi Sig (abi_sig sig_ref))
|
|
2727
|
+
(target Reg (put_in_reg ptr))
|
|
2728
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2729
|
+
(defs CallRetList (gen_call_rets abi output))
|
|
2730
|
+
(info BoxCallIndInfo (gen_call_ind_info abi target uses defs (try_call_none)))
|
|
2731
|
+
(_ Unit (emit_side_effect (call_ind_impl info))))
|
|
2732
|
+
output))
|
|
2733
|
+
|
|
2734
|
+
;;;; Rules for `try_call` and `try_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2735
|
+
|
|
2736
|
+
;; Direct call to an in-range function.
|
|
2737
|
+
(rule 1 (lower_branch (try_call (func_ref_data sig_ref name (RelocDistance.Near)) args et) targets)
|
|
2738
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2739
|
+
(trycall OptionTryCallInfo (try_call_info et targets))
|
|
2740
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2741
|
+
(defs CallRetList (gen_try_call_rets abi))
|
|
2742
|
+
(info BoxCallInfo (gen_call_info abi name uses defs trycall)))
|
|
2743
|
+
(emit_side_effect (call_impl info))))
|
|
2744
|
+
|
|
2745
|
+
;; Direct call to an out-of-range function (implicitly via pointer).
|
|
2746
|
+
(rule (lower_branch (try_call (func_ref_data sig_ref name dist) args et) targets)
|
|
2747
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2748
|
+
(trycall OptionTryCallInfo (try_call_info et targets))
|
|
2749
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2750
|
+
(defs CallRetList (gen_try_call_rets abi))
|
|
2751
|
+
(target Reg (load_ext_name name 0 dist))
|
|
2752
|
+
(info BoxCallIndInfo (gen_call_ind_info abi target uses defs trycall)))
|
|
2753
|
+
(emit_side_effect (call_ind_impl info))))
|
|
2754
|
+
|
|
2755
|
+
;; Indirect call.
|
|
2756
|
+
(rule (lower_branch (try_call_indirect ptr args et) targets)
|
|
2757
|
+
(if-let (exception_sig sig_ref) et)
|
|
2758
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2759
|
+
(trycall OptionTryCallInfo (try_call_info et targets))
|
|
2760
|
+
(target Reg (put_in_reg ptr))
|
|
2761
|
+
(uses CallArgList (gen_call_args abi args))
|
|
2762
|
+
(defs CallRetList (gen_try_call_rets abi))
|
|
2763
|
+
(info BoxCallIndInfo (gen_call_ind_info abi target uses defs trycall)))
|
|
2764
|
+
(emit_side_effect (call_ind_impl info))))
|
|
2765
|
+
|
|
2766
|
+
;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2767
|
+
|
|
2768
|
+
;; Direct call to an in-range function.
|
|
2769
|
+
(rule 1 (lower (return_call (func_ref_data sig_ref name (RelocDistance.Near)) args))
|
|
2770
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2771
|
+
(uses CallArgList (gen_return_call_args abi args))
|
|
2772
|
+
(info BoxReturnCallInfo (gen_return_call_info abi name uses)))
|
|
2773
|
+
(side_effect (return_call_impl info))))
|
|
2774
|
+
|
|
2775
|
+
;; Direct call to an out-of-range function (implicitly via pointer).
|
|
2776
|
+
(rule (lower (return_call (func_ref_data sig_ref name dist) args))
|
|
2777
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2778
|
+
(uses CallArgList (gen_return_call_args abi args))
|
|
2779
|
+
(target Reg (load_ext_name name 0 dist))
|
|
2780
|
+
(info BoxReturnCallIndInfo (gen_return_call_ind_info abi target uses)))
|
|
2781
|
+
(side_effect (return_call_ind_impl info))))
|
|
2782
|
+
|
|
2783
|
+
;; Indirect call.
|
|
2784
|
+
(rule (lower (return_call_indirect sig_ref ptr args))
|
|
2785
|
+
(let ((abi Sig (abi_sig sig_ref))
|
|
2786
|
+
(target Reg (put_in_reg ptr))
|
|
2787
|
+
(uses CallArgList (gen_return_call_args abi args))
|
|
2788
|
+
(info BoxReturnCallIndInfo (gen_return_call_ind_info abi target uses)))
|
|
2789
|
+
(side_effect (return_call_ind_impl info))))
|
|
2790
|
+
|
|
2791
|
+
;;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2792
|
+
|
|
2793
|
+
(rule (lower (extractlane x @ (value_type ty) (u8_from_uimm8 idx)))
|
|
2794
|
+
(gen_extractlane ty x idx))
|
|
2795
|
+
|
|
2796
|
+
;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2797
|
+
|
|
2798
|
+
;; We can insert a lane by using a masked splat from an X register.
|
|
2799
|
+
;; Build a mask that is only enabled in the lane we want to insert.
|
|
2800
|
+
;; Then use a masked splat (vmerge) to insert the value.
|
|
2801
|
+
(rule 0 (lower (insertlane vec @ (value_type (ty_supported_vec ty))
|
|
2802
|
+
val @ (value_type (ty_int _))
|
|
2803
|
+
(u8_from_uimm8 lane)))
|
|
2804
|
+
(let ((mask VReg (gen_vec_mask (u64_wrapping_shl 1 lane))))
|
|
2805
|
+
(rv_vmerge_vxm vec val mask ty)))
|
|
2806
|
+
|
|
2807
|
+
;; Similar to above, but using the float variants of the instructions.
|
|
2808
|
+
(rule 1 (lower (insertlane vec @ (value_type (ty_supported_vec ty))
|
|
2809
|
+
val @ (value_type (ty_supported_float_full _))
|
|
2810
|
+
(u8_from_uimm8 lane)))
|
|
2811
|
+
(let ((mask VReg (gen_vec_mask (u64_wrapping_shl 1 lane))))
|
|
2812
|
+
(rv_vfmerge_vfm vec val mask ty)))
|
|
2813
|
+
|
|
2814
|
+
;; If we are inserting from an Imm5 const we can use the immediate
|
|
2815
|
+
;; variant of vmerge.
|
|
2816
|
+
(rule 2 (lower (insertlane vec @ (value_type (ty_supported_vec ty))
|
|
2817
|
+
(i64_from_iconst (imm5_from_i64 imm))
|
|
2818
|
+
(u8_from_uimm8 lane)))
|
|
2819
|
+
(let ((mask VReg (gen_vec_mask (u64_wrapping_shl 1 lane))))
|
|
2820
|
+
(rv_vmerge_vim vec imm mask ty)))
|
|
2821
|
+
|
|
2822
|
+
;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2823
|
+
|
|
2824
|
+
(rule 0 (lower (has_type ty (splat n @ (value_type (ty_supported_float_full _)))))
|
|
2825
|
+
(rv_vfmv_vf n ty))
|
|
2826
|
+
|
|
2827
|
+
(rule 1 (lower (has_type ty (splat n @ (value_type (ty_int_ref_scalar_64 _)))))
|
|
2828
|
+
(rv_vmv_vx n ty))
|
|
2829
|
+
|
|
2830
|
+
(rule 2 (lower (has_type ty (splat (iconst (u64_from_imm64 (imm5_from_u64 imm))))))
|
|
2831
|
+
(rv_vmv_vi imm ty))
|
|
2832
|
+
|
|
2833
|
+
;; TODO: We can splat out more patterns by using for example a vmv.v.i i8x16 for
|
|
2834
|
+
;; a i64x2 const with a compatible bit pattern. The AArch64 Backend does something
|
|
2835
|
+
;; similar in its splat rules.
|
|
2836
|
+
;; TODO: Look through bitcasts when splatting out registers. We can use
|
|
2837
|
+
;; `vmv.v.x` in a `(splat.f32x4 (bitcast.f32 val))`. And vice versa for integers.
|
|
2838
|
+
|
|
2839
|
+
;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2840
|
+
|
|
2841
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (uadd_sat x y)))
|
|
2842
|
+
(rv_vsaddu_vv x y (unmasked) ty))
|
|
2843
|
+
|
|
2844
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (uadd_sat x (splat y))))
|
|
2845
|
+
(rv_vsaddu_vx x y (unmasked) ty))
|
|
2846
|
+
|
|
2847
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (uadd_sat (splat x) y)))
|
|
2848
|
+
(rv_vsaddu_vx y x (unmasked) ty))
|
|
2849
|
+
|
|
2850
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (uadd_sat x y)))
|
|
2851
|
+
(if-let y_imm (replicated_imm5 y))
|
|
2852
|
+
(rv_vsaddu_vi x y_imm (unmasked) ty))
|
|
2853
|
+
|
|
2854
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (uadd_sat x y)))
|
|
2855
|
+
(if-let x_imm (replicated_imm5 x))
|
|
2856
|
+
(rv_vsaddu_vi y x_imm (unmasked) ty))
|
|
2857
|
+
|
|
2858
|
+
;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2859
|
+
|
|
2860
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (sadd_sat x y)))
|
|
2861
|
+
(rv_vsadd_vv x y (unmasked) ty))
|
|
2862
|
+
|
|
2863
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (sadd_sat x (splat y))))
|
|
2864
|
+
(rv_vsadd_vx x y (unmasked) ty))
|
|
2865
|
+
|
|
2866
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (sadd_sat (splat x) y)))
|
|
2867
|
+
(rv_vsadd_vx y x (unmasked) ty))
|
|
2868
|
+
|
|
2869
|
+
(rule 3 (lower (has_type (ty_supported_vec ty) (sadd_sat x y)))
|
|
2870
|
+
(if-let y_imm (replicated_imm5 y))
|
|
2871
|
+
(rv_vsadd_vi x y_imm (unmasked) ty))
|
|
2872
|
+
|
|
2873
|
+
(rule 4 (lower (has_type (ty_supported_vec ty) (sadd_sat x y)))
|
|
2874
|
+
(if-let x_imm (replicated_imm5 x))
|
|
2875
|
+
(rv_vsadd_vi y x_imm (unmasked) ty))
|
|
2876
|
+
|
|
2877
|
+
;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2878
|
+
|
|
2879
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (usub_sat x y)))
|
|
2880
|
+
(rv_vssubu_vv x y (unmasked) ty))
|
|
2881
|
+
|
|
2882
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (usub_sat x (splat y))))
|
|
2883
|
+
(rv_vssubu_vx x y (unmasked) ty))
|
|
2884
|
+
|
|
2885
|
+
;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2886
|
+
|
|
2887
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (ssub_sat x y)))
|
|
2888
|
+
(rv_vssub_vv x y (unmasked) ty))
|
|
2889
|
+
|
|
2890
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (ssub_sat x (splat y))))
|
|
2891
|
+
(rv_vssub_vx x y (unmasked) ty))
|
|
2892
|
+
|
|
2893
|
+
;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2894
|
+
|
|
2895
|
+
;; Here we do a Vector Reduce operation. Get the unsigned minimum value of any
|
|
2896
|
+
;; lane in the vector. The fixed input to the reduce operation is a 1.
|
|
2897
|
+
;; This way, if any lane is 0, the result will be 0. Otherwise, the result will
|
|
2898
|
+
;; be a 1.
|
|
2899
|
+
;; The reduce operation leaves the result in the lowest lane, we then move it
|
|
2900
|
+
;; into the destination X register.
|
|
2901
|
+
(rule (lower (vall_true x @ (value_type (ty_supported_vec ty))))
|
|
2902
|
+
(if-let one (i8_to_imm5 1))
|
|
2903
|
+
;; We don't need to broadcast the immediate into all lanes, only into lane 0.
|
|
2904
|
+
;; I did it this way since it uses one less instruction than with a vmv.s.x.
|
|
2905
|
+
(let ((fixed VReg (rv_vmv_vi one ty))
|
|
2906
|
+
(min VReg (rv_vredminu_vs x fixed (unmasked) ty)))
|
|
2907
|
+
(rv_vmv_xs min ty)))
|
|
2908
|
+
|
|
2909
|
+
|
|
2910
|
+
;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2911
|
+
|
|
2912
|
+
;; Here we do a Vector Reduce operation. Get the unsigned maximum value of the
|
|
2913
|
+
;; input vector register. Move the max to an X register, and do a `snez` on it
|
|
2914
|
+
;; to ensure its either 1 or 0.
|
|
2915
|
+
(rule (lower (vany_true x @ (value_type (ty_supported_vec ty))))
|
|
2916
|
+
(let ((max VReg (rv_vredmaxu_vs x x (unmasked) ty))
|
|
2917
|
+
(x_max XReg (rv_vmv_xs max ty)))
|
|
2918
|
+
(rv_snez x_max)))
|
|
2919
|
+
|
|
2920
|
+
|
|
2921
|
+
;;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2922
|
+
|
|
2923
|
+
;; To check if the MSB of a lane is set, we do a `vmslt` with zero, this sets
|
|
2924
|
+
;; the mask bit to 1 if the value is negative (MSB 1) and 0 if not. We can then
|
|
2925
|
+
;; just move that mask to an X Register.
|
|
2926
|
+
;;
|
|
2927
|
+
;; We must ensure that the move to the X register has a SEW with enough bits
|
|
2928
|
+
;; to hold the full mask. Additionally, in some cases (e.g. i64x2) we are going
|
|
2929
|
+
;; to read some tail bits. These are undefined, so we need to further mask them
|
|
2930
|
+
;; off.
|
|
2931
|
+
(rule (lower (vhigh_bits x @ (value_type (ty_supported_vec ty))))
|
|
2932
|
+
(let ((mask VReg (rv_vmslt_vx x (zero_reg) (unmasked) ty))
|
|
2933
|
+
;; Here we only need I64X1, but emit an AVL of 2 since it
|
|
2934
|
+
;; saves one vector state change in the case of I64X2.
|
|
2935
|
+
;;
|
|
2936
|
+
;; TODO: For types that have more lanes than element bits, we can
|
|
2937
|
+
;; use the original type as a VState and avoid a state change.
|
|
2938
|
+
(x_mask XReg (rv_vmv_xs mask (vstate_from_type $I64X2))))
|
|
2939
|
+
(gen_andi x_mask (ty_lane_mask ty))))
|
|
2940
|
+
|
|
2941
|
+
;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2942
|
+
|
|
2943
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (swizzle x y)))
|
|
2944
|
+
(rv_vrgather_vv x y (unmasked) ty))
|
|
2945
|
+
|
|
2946
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (swizzle x (splat y))))
|
|
2947
|
+
(rv_vrgather_vx x y (unmasked) ty))
|
|
2948
|
+
|
|
2949
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (swizzle x y)))
|
|
2950
|
+
(if-let y_imm (replicated_uimm5 y))
|
|
2951
|
+
(rv_vrgather_vi x y_imm (unmasked) ty))
|
|
2952
|
+
|
|
2953
|
+
;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2954
|
+
|
|
2955
|
+
;; Use a vrgather to load all 0-15 lanes from x. And then modify the mask to load all
|
|
2956
|
+
;; 16-31 lanes from y. Finally, use a vor to combine the two vectors.
|
|
2957
|
+
;;
|
|
2958
|
+
;; vrgather will insert a 0 for lanes that are out of bounds, so we can let it load
|
|
2959
|
+
;; negative and out of bounds indexes.
|
|
2960
|
+
(rule (lower (has_type (ty_supported_vec ty @ $I8X16) (shuffle x y (vconst_from_immediate mask))))
|
|
2961
|
+
(if-let neg16 (i8_to_imm5 -16))
|
|
2962
|
+
(let ((x_mask VReg (gen_constant ty mask))
|
|
2963
|
+
(x_lanes VReg (rv_vrgather_vv x x_mask (unmasked) ty))
|
|
2964
|
+
(y_mask VReg (rv_vadd_vi x_mask neg16 (unmasked) ty))
|
|
2965
|
+
(y_lanes VReg (rv_vrgather_vv y y_mask (unmasked) ty)))
|
|
2966
|
+
(rv_vor_vv x_lanes y_lanes (unmasked) ty)))
|
|
2967
|
+
|
|
2968
|
+
;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2969
|
+
|
|
2970
|
+
;; Slide down half the vector, and do a signed extension.
|
|
2971
|
+
(rule 0 (lower (has_type (ty_supported_vec out_ty) (swiden_high x @ (value_type in_ty))))
|
|
2972
|
+
(rv_vsext_vf2 (gen_slidedown_half in_ty x) (unmasked) out_ty))
|
|
2973
|
+
|
|
2974
|
+
(rule 1 (lower (has_type (ty_supported_vec out_ty) (swiden_high (swiden_high x @ (value_type in_ty)))))
|
|
2975
|
+
(if-let (uimm5_from_u64 amt) (u64_wrapping_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
|
2976
|
+
(rv_vsext_vf4 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
|
2977
|
+
|
|
2978
|
+
(rule 2 (lower (has_type (ty_supported_vec out_ty) (swiden_high (swiden_high (swiden_high x @ (value_type in_ty))))))
|
|
2979
|
+
(if-let (uimm5_from_u64 amt) (u64_wrapping_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
|
2980
|
+
(rv_vsext_vf8 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
|
2981
|
+
|
|
2982
|
+
;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2983
|
+
|
|
2984
|
+
;; Slide down half the vector, and do a zero extension.
|
|
2985
|
+
(rule 0 (lower (has_type (ty_supported_vec out_ty) (uwiden_high x @ (value_type in_ty))))
|
|
2986
|
+
(rv_vzext_vf2 (gen_slidedown_half in_ty x) (unmasked) out_ty))
|
|
2987
|
+
|
|
2988
|
+
(rule 1 (lower (has_type (ty_supported_vec out_ty) (uwiden_high (uwiden_high x @ (value_type in_ty)))))
|
|
2989
|
+
(if-let (uimm5_from_u64 amt) (u64_wrapping_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
|
2990
|
+
(rv_vzext_vf4 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
|
2991
|
+
|
|
2992
|
+
(rule 2 (lower (has_type (ty_supported_vec out_ty) (uwiden_high (uwiden_high (uwiden_high x @ (value_type in_ty))))))
|
|
2993
|
+
(if-let (uimm5_from_u64 amt) (u64_wrapping_sub (ty_lane_count in_ty) (ty_lane_count out_ty)))
|
|
2994
|
+
(rv_vzext_vf8 (rv_vslidedown_vi x amt (unmasked) in_ty) (unmasked) out_ty))
|
|
2995
|
+
|
|
2996
|
+
;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
2997
|
+
|
|
2998
|
+
(rule 0 (lower (has_type (ty_supported_vec out_ty) (swiden_low x)))
|
|
2999
|
+
(rv_vsext_vf2 x (unmasked) out_ty))
|
|
3000
|
+
|
|
3001
|
+
(rule 1 (lower (has_type (ty_supported_vec out_ty) (swiden_low (swiden_low x))))
|
|
3002
|
+
(rv_vsext_vf4 x (unmasked) out_ty))
|
|
3003
|
+
|
|
3004
|
+
(rule 2 (lower (has_type (ty_supported_vec out_ty) (swiden_low (swiden_low (swiden_low x)))))
|
|
3005
|
+
(rv_vsext_vf8 x (unmasked) out_ty))
|
|
3006
|
+
|
|
3007
|
+
;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3008
|
+
|
|
3009
|
+
(rule 0 (lower (has_type (ty_supported_vec out_ty) (uwiden_low x)))
|
|
3010
|
+
(rv_vzext_vf2 x (unmasked) out_ty))
|
|
3011
|
+
|
|
3012
|
+
(rule 1 (lower (has_type (ty_supported_vec out_ty) (uwiden_low (uwiden_low x))))
|
|
3013
|
+
(rv_vzext_vf4 x (unmasked) out_ty))
|
|
3014
|
+
|
|
3015
|
+
(rule 2 (lower (has_type (ty_supported_vec out_ty) (uwiden_low (uwiden_low (uwiden_low x)))))
|
|
3016
|
+
(rv_vzext_vf8 x (unmasked) out_ty))
|
|
3017
|
+
|
|
3018
|
+
;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3019
|
+
|
|
3020
|
+
;; We don't have a dedicated instruction for this, rearrange the register elements
|
|
3021
|
+
;; and use a vadd.
|
|
3022
|
+
;;
|
|
3023
|
+
;; We do this by building two masks, one for the even elements and one for the odd
|
|
3024
|
+
;; elements. Using vcompress we can extract the elements and group them together.
|
|
3025
|
+
;;
|
|
3026
|
+
;; This is likely not the optimal way of doing this. LLVM does this using a bunch
|
|
3027
|
+
;; of vrgathers (See: https://godbolt.org/z/jq8Wj8WG4), that doesn't seem to be
|
|
3028
|
+
;; too much better than this.
|
|
3029
|
+
;;
|
|
3030
|
+
;; However V8 does something better. They use 2 vcompresses using LMUL2, that means
|
|
3031
|
+
;; that they can do the whole thing in 3 instructions (2 vcompress + vadd). We don't
|
|
3032
|
+
;; support LMUL > 1, so we can't do that.
|
|
3033
|
+
(rule (lower (has_type (ty_supported_vec ty) (iadd_pairwise x y)))
|
|
3034
|
+
(if-let half_size (u64_to_uimm5 (u64_checked_div (ty_lane_count ty) 2)))
|
|
3035
|
+
(let ((odd_mask VReg (gen_vec_mask 0x5555555555555555))
|
|
3036
|
+
(lhs_lo VReg (rv_vcompress_vm x odd_mask ty))
|
|
3037
|
+
(lhs_hi VReg (rv_vcompress_vm y odd_mask ty))
|
|
3038
|
+
(lhs VReg (rv_vslideup_vvi lhs_lo lhs_hi half_size (unmasked) ty))
|
|
3039
|
+
|
|
3040
|
+
(even_mask VReg (gen_vec_mask 0xAAAAAAAAAAAAAAAA))
|
|
3041
|
+
(rhs_lo VReg (rv_vcompress_vm x even_mask ty))
|
|
3042
|
+
(rhs_hi VReg (rv_vcompress_vm y even_mask ty))
|
|
3043
|
+
(rhs VReg (rv_vslideup_vvi rhs_lo rhs_hi half_size (unmasked) ty)))
|
|
3044
|
+
(rv_vadd_vv lhs rhs (unmasked) ty)))
|
|
3045
|
+
|
|
3046
|
+
;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3047
|
+
|
|
3048
|
+
;; `avg_round` computes the unsigned average with rounding: a := (x + y + 1) // 2
|
|
3049
|
+
;;
|
|
3050
|
+
;; See Section "2–5 Average of Two Integers" of the Hacker's Delight book
|
|
3051
|
+
;;
|
|
3052
|
+
;; The floor average of two integers without overflow can be computed as:
|
|
3053
|
+
;; t = (x & y) + ((x ^ y) >> 1)
|
|
3054
|
+
;;
|
|
3055
|
+
;; The right shift should be a logical shift if the integers are unsigned.
|
|
3056
|
+
;;
|
|
3057
|
+
;; We are however interested in the ceiling average (x + y + 1). For that
|
|
3058
|
+
;; we use a special rounding mode in the right shift instruction.
|
|
3059
|
+
;;
|
|
3060
|
+
;; For the right shift instruction we use `vssrl` which is a Scaling Shift
|
|
3061
|
+
;; Right Logical instruction using the `vxrm` fixed-point rounding mode. The
|
|
3062
|
+
;; default rounding mode is `rnu` (round-to-nearest-up (add +0.5 LSB)).
|
|
3063
|
+
;; Which is coincidentally the rounding mode we want for `avg_round`.
|
|
3064
|
+
(rule (lower (has_type (ty_supported_vec ty) (avg_round x y)))
|
|
3065
|
+
(if-let one (u64_to_uimm5 1))
|
|
3066
|
+
(let ((lhs VReg (rv_vand_vv x y (unmasked) ty))
|
|
3067
|
+
(xor VReg (rv_vxor_vv x y (unmasked) ty))
|
|
3068
|
+
(rhs VReg (rv_vssrl_vi xor one (unmasked) ty)))
|
|
3069
|
+
(rv_vadd_vv lhs rhs (unmasked) ty)))
|
|
3070
|
+
|
|
3071
|
+
;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3072
|
+
|
|
3073
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (scalar_to_vector x)))
|
|
3074
|
+
(if (ty_vector_float ty))
|
|
3075
|
+
(let ((zero VReg (rv_vmv_vx (zero_reg) ty))
|
|
3076
|
+
(elem VReg (rv_vfmv_sf x ty))
|
|
3077
|
+
(mask VReg (gen_vec_mask 1)))
|
|
3078
|
+
(rv_vmerge_vvm zero elem mask ty)))
|
|
3079
|
+
|
|
3080
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (scalar_to_vector x)))
|
|
3081
|
+
(if (ty_vector_not_float ty))
|
|
3082
|
+
(let ((zero VReg (rv_vmv_vx (zero_reg) ty))
|
|
3083
|
+
(mask VReg (gen_vec_mask 1)))
|
|
3084
|
+
(rv_vmerge_vxm zero x mask ty)))
|
|
3085
|
+
|
|
3086
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (scalar_to_vector (imm5_from_value x))))
|
|
3087
|
+
(let ((zero VReg (rv_vmv_vx (zero_reg) ty))
|
|
3088
|
+
(mask VReg (gen_vec_mask 1)))
|
|
3089
|
+
(rv_vmerge_vim zero x mask ty)))
|
|
3090
|
+
|
|
3091
|
+
;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3092
|
+
|
|
3093
|
+
(rule 0 (lower (has_type (ty_supported_vec ty) (sqmul_round_sat x y)))
|
|
3094
|
+
(rv_vsmul_vv x y (unmasked) ty))
|
|
3095
|
+
|
|
3096
|
+
(rule 1 (lower (has_type (ty_supported_vec ty) (sqmul_round_sat x (splat y))))
|
|
3097
|
+
(rv_vsmul_vx x y (unmasked) ty))
|
|
3098
|
+
|
|
3099
|
+
(rule 2 (lower (has_type (ty_supported_vec ty) (sqmul_round_sat (splat x) y)))
|
|
3100
|
+
(rv_vsmul_vx y x (unmasked) ty))
|
|
3101
|
+
|
|
3102
|
+
;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3103
|
+
|
|
3104
|
+
(rule (lower (has_type (ty_supported_vec out_ty) (snarrow x @ (value_type in_ty) y)))
|
|
3105
|
+
(if-let lane_diff (u64_to_uimm5 (u64_checked_div (ty_lane_count out_ty) 2)))
|
|
3106
|
+
(if-let zero (u64_to_uimm5 0))
|
|
3107
|
+
(let ((x_clip VReg (rv_vnclip_wi x zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
|
3108
|
+
(y_clip VReg (rv_vnclip_wi y zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
|
3109
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|
|
3110
|
+
|
|
3111
|
+
;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3112
|
+
|
|
3113
|
+
(rule (lower (has_type (ty_supported_vec out_ty) (uunarrow x @ (value_type in_ty) y)))
|
|
3114
|
+
(if-let lane_diff (u64_to_uimm5 (u64_checked_div (ty_lane_count out_ty) 2)))
|
|
3115
|
+
(if-let zero (u64_to_uimm5 0))
|
|
3116
|
+
(let ((x_clip VReg (rv_vnclipu_wi x zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
|
3117
|
+
(y_clip VReg (rv_vnclipu_wi y zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
|
3118
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|
|
3119
|
+
|
|
3120
|
+
;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3121
|
+
|
|
3122
|
+
;; We don't have a instruction that saturates a signed source into an unsigned destination.
|
|
3123
|
+
;; To correct for this we just remove negative values using `vmax` and then use the normal
|
|
3124
|
+
;; unsigned to unsigned narrowing instruction.
|
|
3125
|
+
|
|
3126
|
+
(rule (lower (has_type (ty_supported_vec out_ty) (unarrow x @ (value_type in_ty) y)))
|
|
3127
|
+
(if-let lane_diff (u64_to_uimm5 (u64_checked_div (ty_lane_count out_ty) 2)))
|
|
3128
|
+
(if-let zero (u64_to_uimm5 0))
|
|
3129
|
+
(let ((x_pos VReg (rv_vmax_vx x (zero_reg) (unmasked) in_ty))
|
|
3130
|
+
(y_pos VReg (rv_vmax_vx y (zero_reg) (unmasked) in_ty))
|
|
3131
|
+
(x_clip VReg (rv_vnclipu_wi x_pos zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty))))
|
|
3132
|
+
(y_clip VReg (rv_vnclipu_wi y_pos zero (unmasked) (vstate_mf2 (ty_half_lanes out_ty)))))
|
|
3133
|
+
(rv_vslideup_vvi x_clip y_clip lane_diff (unmasked) out_ty)))
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
;; Rules for `get_exception_handler_address` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
3137
|
+
|
|
3138
|
+
(rule (lower (get_exception_handler_address (u64_from_imm64 idx) block))
|
|
3139
|
+
(let ((succ_label MachLabel (block_exn_successor_label block idx)))
|
|
3140
|
+
(rv64_label_address succ_label)))
|