Searched refs:stack_last (Results 1 – 8 of 8) sorted by relevance
149 #define stacksize(th) cast_int((th)->stack_last.p - (th)->stack.p)319 StkIdRel stack_last; /* end of stack (last element + 1) */ member
235 L->stack_last.p = L->stack.p + newsize; in luaD_reallocstack()287 lua_assert(lim <= L->stack_last.p + EXTRA_STACK); in stackinuse()527 lua_assert(ci->top.p <= L->stack_last.p); in precallC()568 lua_assert(ci->top.p <= L->stack_last.p); in luaD_pretailcall()612 lua_assert(ci->top.p <= L->stack_last.p); in luaD_precall()
29 if (l_unlikely(L->stack_last.p - L->top.p <= (n))) \
265 lua_assert(L->top.p <= ci->top.p && ci->top.p <= L->stack_last.p); in luaT_adjustvarargs()
192 L1->stack_last.p = L1->stack.p + BASIC_STACK_SIZE; in stack_init()
644 for (; o < th->stack_last.p + EXTRA_STACK; o++) in traversethread()
123 if (L->stack_last.p - L->top.p > n) /* stack large enough? */ in lua_checkstack()
1264 lua_assert(base <= L->top.p && L->top.p <= L->stack_last.p);