Home
last modified time | relevance | path

Searched refs:CIST_TAIL (Results 1 – 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
HDlstate.h103 #define CIST_TAIL (1<<6) /* call was tail called */ macro
HDldebug.c253 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0; in auxgetinfo()
258 if (ci && !(ci->callstatus & CIST_TAIL) && isLua(ci->previous)) in auxgetinfo()
HDldo.c331 ci->callstatus |= CIST_TAIL; in callhook()
HDlvm.c810 oci->callstatus |= CIST_TAIL; /* function was tail called */ in luaV_execute()
/freebsd-13-stable/contrib/lua/src/
HDlstate.h197 #define CIST_TAIL (1<<5) /* call was tail called */ macro
HDldebug.c324 else if (!(ci->callstatus & CIST_TAIL) && isLua(ci->previous)) in getfuncname()
356 ar->istailcall = (ci) ? ci->callstatus & CIST_TAIL : 0; in auxgetinfo()
HDldo.c334 int hook = (ci->callstatus & CIST_TAIL) ? LUA_HOOKTAILCALL : LUA_HOOKCALL; in luaD_hookcall()
466 ci->callstatus |= CIST_TAIL; in luaD_pretailcall()