1 //! Code generation library for Winch. 2 3 // Unless this library is compiled with `all-arch`, the rust compiler 4 // is going to emit dead code warnings. This directive is fine as long 5 // as we configure to run CI at least once with the `all-arch` feature 6 // enabled. 7 #![cfg_attr(not(feature = "all-arch"), allow(dead_code))] 8 9 mod abi; 10 mod codegen; 11 mod frame; 12 pub mod isa; 13 pub use isa::*; 14 mod masm; 15 mod regalloc; 16 mod regset; 17 mod stack; 18 mod visitor; 19