Searched refs:CallInfo (Results 1 – 12 of 12) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | ldo.c | 161 CallInfo *ci; in correctstack() 251 CallInfo *ci; in stackinuse() 311 CallInfo *ci = L->ci; in luaD_hook() 519 CallInfo *ci; in luaD_precall() 539 CallInfo *ci; in luaD_precall() 571 CallInfo *ci; in ccall() 678 CallInfo *ci; in unroll() 696 CallInfo *ci; in findpcall() 729 CallInfo *ci = L->ci; in resume() 763 CallInfo *ci; in precover() [all …]
|
A D | ldebug.c | 41 static int currentpc (CallInfo *ci) { in currentpc() 98 static int getcurrentline (CallInfo *ci) { in getcurrentline() 114 static void settraps (CallInfo *ci) { in settraps() 162 CallInfo *ci; in lua_getstack() 327 Closure *f, CallInfo *ci) { in auxgetinfo() 385 CallInfo *ci; in lua_getinfo() 649 static int isinstack (CallInfo *ci, const TValue *o) { in isinstack() 680 CallInfo *ci = L->ci; in varinfo() 699 CallInfo *ci = L->ci; in luaG_callerror() 779 CallInfo *ci = L->ci; in luaG_runerror() [all …]
|
A D | ldo.h | 60 LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci); 61 LUAI_FUNC void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int n); 62 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults); 69 LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
|
A D | lstate.c | 105 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI() 106 CallInfo *ci; in luaE_extendCI() 108 ci = luaM_new(L, CallInfo); in luaE_extendCI() 123 CallInfo *ci = L->ci; in luaE_freeCI() 124 CallInfo *next = ci->next; in luaE_freeCI() 139 CallInfo *ci = L->ci->next; /* first free CallInfo */ in luaE_shrinkCI() 140 CallInfo *next; in luaE_shrinkCI() 144 CallInfo *next2 = next->next; /* next's next */ in luaE_shrinkCI() 181 int i; CallInfo *ci; in stack_init() 327 CallInfo *ci = L->ci = &L->base_ci; /* unwind CallInfo list */ in luaE_resetthread()
|
A D | lstate.h | 172 typedef struct CallInfo { struct 175 struct CallInfo *previous, *next; /* dynamic call link */ argument 199 } CallInfo; argument 311 CallInfo *ci; /* call info for current function */ 319 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */ 393 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
|
A D | ltm.h | 98 struct CallInfo *ci, const Proto *p); 99 LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci,
|
A D | ldebug.h | 40 LUAI_FUNC const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n,
|
A D | ltm.c | 238 void luaT_adjustvarargs (lua_State *L, int nfixparams, CallInfo *ci, in luaT_adjustvarargs() 258 void luaT_getvarargs (lua_State *L, CallInfo *ci, StkId where, int wanted) { in luaT_getvarargs()
|
A D | lvm.h | 128 LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
|
A D | lapi.c | 57 CallInfo *ci = L->ci; in index2value() 85 CallInfo *ci = L->ci; in index2stack() 101 CallInfo *ci; in lua_checkstack() 175 CallInfo *ci; in lua_settop() 1060 CallInfo *ci = L->ci; in lua_pcallk()
|
A D | lua.h | 488 struct CallInfo *i_ci; /* active function */
|
A D | lvm.c | 809 CallInfo *ci = L->ci; in luaV_finishOp() 1129 void luaV_execute (lua_State *L, CallInfo *ci) { in luaV_execute() 1617 CallInfo *newci; in luaV_execute()
|
Completed in 22 milliseconds