19 lines
460 B
Rust
19 lines
460 B
Rust
|
|
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;
|
||
|
|
|