Sha256: d57d657ee8425b77292ed0a835c05b4047bc75f81ff79d61efd48a8d7f8ac69b
Contents?: true
Size: 523 Bytes
Versions: 10
Compression:
Stored size: 523 Bytes
Contents
//! Code generation library for Winch. // 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::FuncEnv; mod codegen; mod frame; pub mod isa; pub use isa::*; mod masm; mod regalloc; mod regset; mod stack; mod trampoline; pub use trampoline::TrampolineKind; mod visitor;
Version data entries
10 entries across 10 versions & 1 rubygems