lamina-codegen 0.1.0

Codegen utilities for Lamina (register allocation, ABI, frame management)
Documentation
1
2
3
4
5
6
7
8
9
//! RISC-V codegen utilities

pub mod abi;
pub mod frame;
pub mod regalloc;

pub use abi::RiscVAbi;
pub use frame::RiscVFrame;
pub use regalloc::RiscVRegAlloc;