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

26 lines
634 B
Rust
Raw Normal View History

mod blocks;
pub mod builder_cursor;
pub mod flow;
mod externcall;
mod newbox;
mod boxcall;
mod arith;
mod mem;
mod consts;
mod strings;
mod arrays;
mod maps;
mod arith_ops;
mod call;
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;
pub(super) use arith_ops::{lower_binop, lower_unary};
pub(super) use call::lower_call;