Files
hakorune/src/backend/llvm/compiler/codegen/instructions/mod.rs

19 lines
460 B
Rust
Raw Normal View History

mod blocks;
mod flow;
mod externcall;
mod newbox;
mod boxcall;
mod arith;
mod mem;
mod consts;
pub(super) use blocks::{create_basic_blocks, precreate_phis};
pub(super) use flow::{emit_branch, emit_jump, emit_return};
pub(super) use externcall::lower_externcall;
pub(super) use newbox::lower_newbox;
pub(super) use boxcall::lower_boxcall;
pub(super) use arith::lower_compare;
pub(super) use mem::{lower_load, lower_store};
pub(super) use consts::lower_const;