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