luaur-vm 0.1.0

The Luau register virtual machine and standard library (Rust).
Documentation
use core::ffi::c_int;

use crate::functions::index_2_addr::index2addr;
use crate::functions::lua_concat::lua_c_threadbarrier_lapi;
use crate::functions::lua_h_get::lua_h_get;
use crate::macros::api_check::api_check;
use crate::macros::hvalue::hvalue;
use crate::macros::setobj_2_s::setobj2s;
use crate::macros::ttistable::ttistable;
use crate::macros::ttype::ttype;
use crate::records::lua_state::lua_State;
use crate::type_aliases::stk_id::StkId;

#[allow(non_snake_case)]
pub unsafe fn lua_rawget(L: *mut lua_State, idx: c_int) -> c_int {
    lua_c_threadbarrier_lapi(L);

    let t: StkId = index2addr(L, idx);
    api_check!(L, ttistable!(t));

    let slot = (*L).top.sub(1);
    setobj2s!(L, slot, lua_h_get(hvalue!(t), slot));

    ttype!((*L).top.sub(1))
}