lamina-codegen 0.1.1

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

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

pub use abi::AArch64ABI;
pub use frame::FrameMap;
pub use regalloc::A64RegAlloc;