Path: blob/main/sys/contrib/openzfs/module/lua/ldebug.h
48383 views
// SPDX-License-Identifier: MIT1/*2** $Id: ldebug.h,v 2.7.1.1 2013/04/12 18:48:47 roberto Exp $3** Auxiliary functions from Debug Interface module4** See Copyright Notice in lua.h5*/67#ifndef ldebug_h8#define ldebug_h91011#include "lstate.h"121314#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1)1516#define getfuncline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)1718#define resethookcount(L) (L->hookcount = L->basehookcount)1920/* Active Lua function (given call info) */21#define ci_func(ci) (clLvalue((ci)->func))222324LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,25const char *opname);26LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);27LUAI_FUNC l_noret luaG_aritherror (lua_State *L, const TValue *p1,28const TValue *p2);29LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,30const TValue *p2);31LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);32LUAI_FUNC l_noret luaG_errormsg (lua_State *L);3334#endif353637