Searched refs:upvals (Results 1 – 7 of 7) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lfunc.h | 17 #define sizeLclosure(n) (cast_int(offsetof(LClosure, upvals)) + \
|
A D | lfunc.c | 40 while (nupvals--) c->upvals[nupvals] = NULL; in luaF_newLclosure() 55 cl->upvals[i] = uv; in luaF_initupvals()
|
A D | lvm.c | 797 ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx); in pushclosure() 799 ncl->upvals[i] = encup[uv[i].idx]; in pushclosure() 800 luaC_objbarrier(L, ncl, ncl->upvals[i]); in pushclosure() 1213 setobj2s(L, ra, cl->upvals[b]->v); in luaV_execute() 1217 UpVal *uv = cl->upvals[GETARG_B(i)]; in luaV_execute() 1224 TValue *upval = cl->upvals[GETARG_B(i)]->v; in luaV_execute() 1276 TValue *upval = cl->upvals[GETARG_A(i)]->v; in luaV_execute() 1810 halfProtect(pushclosure(L, p, cl->upvals, base, ra)); in luaV_execute()
|
A D | lapi.c | 1094 setobj(L, f->upvals[0]->v, gt); in lua_load() 1095 luaC_barrier(L, f->upvals[0], gt); in lua_load() 1366 *val = f->upvals[n-1]->v; in aux_upvalue() 1367 if (owner) *owner = obj2gco(f->upvals[n - 1]); in aux_upvalue() 1417 return &f->upvals[n - 1]; /* get its upvalue pointer */ in getupvalref()
|
A D | lobject.h | 644 UpVal *upvals[1]; /* list of upvalues */ member
|
A D | ldebug.c | 669 if (c->upvals[i]->v == o) { in getupvalname()
|
A D | lgc.c | 602 UpVal *uv = cl->upvals[i]; in traverseLclosure()
|
Completed in 18 milliseconds