luaur-code-gen 0.1.0

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::enums::ir_value_kind::IrValueKind;
use crate::records::ir_op::IrOp;

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct StoreLocationHint {
    pub op: IrOp,
    pub inst_idx: u32,
    pub kind: IrValueKind,
}