Skip to main content

lamina_codegen/x86_64/
mod.rs

1//! x86_64 codegen utilities
2//!
3//! This module provides register allocation, ABI handling, and frame management
4//! utilities for x86_64 code generation.
5
6pub mod abi;
7pub mod constants;
8pub mod frame;
9pub mod regalloc;
10pub mod util;
11
12pub use abi::X86ABI;
13pub use frame::X86Frame;
14pub use regalloc::X64RegAlloc;