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 mod masm; 14 mod regalloc; 15 mod regset; 16 mod stack; 17 mod visitor; 18