1 2 3 4 5 6 7 8
//! Compiler backend (also known as a "code generator"). //! //! The `zypo-rs` compiler uses `cranelift` as it's backend (it was originally //! planned to write a new backend for Python Bytecode but `cranelift` presents //! more oppertunies). //! //! NOTE: This module is quite low-level at this point in time and will be //! abstracted in the future.