zypo_lib/backend/
mod.rs

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