midenc-hir 0.9.2

High-level Intermediate Representation for Miden Assembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod compile_unit;
mod expression;
mod subprogram;
mod variable;

pub use self::{
    compile_unit::{CompileUnit, CompileUnitAttr},
    expression::{
        Expression, ExpressionAttr, ExpressionOp, FRAME_BASE_LOCAL_MARKER,
        decode_frame_base_local_index, decode_frame_base_local_offset,
        encode_frame_base_local_index, encode_frame_base_local_offset,
    },
    subprogram::{Subprogram, SubprogramAttr},
    variable::{Variable, VariableAttr},
};