Sha256: d98ef3e7fbbc9f42c3361eca489e303d21cd88a4c3664b9e31d9905a390652b2
Contents?: true
Size: 574 Bytes
Versions: 2
Compression:
Stored size: 574 Bytes
Contents
//! Code generation library for Winch. #![expect(clippy::allow_attributes_without_reason, reason = "crate not migrated")] // Unless this library is compiled with `all-arch`, the rust compiler // is going to emit dead code warnings. This directive is fine as long // as we configure to run CI at least once with the `all-arch` feature // enabled. #![cfg_attr(not(feature = "all-arch"), allow(dead_code))] mod abi; pub use codegen::{BuiltinFunctions, FuncEnv}; mod codegen; mod frame; pub mod isa; pub use isa::*; mod masm; mod regalloc; mod regset; mod stack; mod visitor;
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wasmtime-29.0.0 | ./ext/cargo-vendor/winch-codegen-29.0.0/src/lib.rs |
wasmtime-28.0.0 | ./ext/cargo-vendor/winch-codegen-28.0.0/src/lib.rs |