Rust · 337 bytes Raw Blame History
1 //! ARM64 code generation.
2 //!
3 //! Instruction selection, register allocation, stack frame layout,
4 //! and emission of machine instructions for the afs-as assembler.
5
6 pub mod abi;
7 pub mod emit;
8 pub mod isel;
9 pub mod linearscan;
10 pub mod liveness;
11 pub mod mir;
12 pub mod peephole;
13 pub mod regalloc;
14 pub mod relax_branches;
15 pub mod tailcall;
16