1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510 |
- /*
- ** $Id: lapi.c $
- ** Lua API
- ** See Copyright Notice in lua.h
- */
- #define lapi_c
- #define LUA_CORE
- #include "lprefix.h"
- #include <limits.h>
- #include <stdarg.h>
- #include <string.h>
- #include "lua.h"
- #include "lapi.h"
- #include "ldebug.h"
- #include "ldo.h"
- #include "lfunc.h"
- #include "lgc.h"
- #include "lmem.h"
- #include "lobject.h"
- #include "lstate.h"
- #include "lstring.h"
- #include "ltable.h"
- #include "ltm.h"
- #include "lundump.h"
- #include "lvm.h"
- const char lua_ident[] =
- "$LuaVersion: " LUA_COPYRIGHT " $"
- "$LuaAuthors: " LUA_AUTHORS " $";
- /*
- ** Test for a valid index (one that is not the 'nilvalue').
- ** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed.
- ** However, it covers the most common cases in a faster way.
- */
- #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue)
- /* test for pseudo index */
- #define ispseudo(i) ((i) <= LUA_REGISTRYINDEX)
- /* test for upvalue */
- #define isupvalue(i) ((i) < LUA_REGISTRYINDEX)
- /*
- ** Convert an acceptable index to a pointer to its respective value.
- ** Non-valid indices return the special nil value 'G(L)->nilvalue'.
- */
- static TValue *index2value (lua_State *L, int idx) {
- CallInfo *ci = L->ci;
- if (idx > 0) {
- StkId o = ci->func.p + idx;
- api_check(L, idx <= ci->top.p - (ci->func.p + 1), "unacceptable index");
- if (o >= L->top.p) return &G(L)->nilvalue;
- else return s2v(o);
- }
- else if (!ispseudo(idx)) { /* negative index */
- api_check(L, idx != 0 && -idx <= L->top.p - (ci->func.p + 1),
- "invalid index");
- return s2v(L->top.p + idx);
- }
- else if (idx == LUA_REGISTRYINDEX)
- return &G(L)->l_registry;
- else { /* upvalues */
- idx = LUA_REGISTRYINDEX - idx;
- api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large");
- if (ttisCclosure(s2v(ci->func.p))) { /* C closure? */
- CClosure *func = clCvalue(s2v(ci->func.p));
- return (idx <= func->nupvalues) ? &func->upvalue[idx-1]
- : &G(L)->nilvalue;
- }
- else { /* light C function or Lua function (through a hook)?) */
- api_check(L, ttislcf(s2v(ci->func.p)), "caller not a C function");
- return &G(L)->nilvalue; /* no upvalues */
- }
- }
- }
- /*
- ** Convert a valid actual index (not a pseudo-index) to its address.
- */
- l_sinline StkId index2stack (lua_State *L, int idx) {
- CallInfo *ci = L->ci;
- if (idx > 0) {
- StkId o = ci->func.p + idx;
- api_check(L, o < L->top.p, "invalid index");
- return o;
- }
- else { /* non-positive index */
- api_check(L, idx != 0 && -idx <= L->top.p - (ci->func.p + 1),
- "invalid index");
- api_check(L, !ispseudo(idx), "invalid index");
- return L->top.p + idx;
- }
- }
- LUA_API int lua_checkstack (lua_State *L, int n) {
- int res;
- CallInfo *ci;
- lua_lock(L);
- ci = L->ci;
- api_check(L, n >= 0, "negative 'n'");
- if (L->stack_last.p - L->top.p > n) /* stack large enough? */
- res = 1; /* yes; check is OK */
- else /* need to grow stack */
- res = luaD_growstack(L, n, 0);
- if (res && ci->top.p < L->top.p + n)
- ci->top.p = L->top.p + n; /* adjust frame top */
- lua_unlock(L);
- return res;
- }
- LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
- int i;
- if (from == to) return;
- lua_lock(to);
- api_checknelems(from, n);
- api_check(from, G(from) == G(to), "moving among independent states");
- api_check(from, to->ci->top.p - to->top.p >= n, "stack overflow");
- from->top.p -= n;
- for (i = 0; i < n; i++) {
- setobjs2s(to, to->top.p, from->top.p + i);
- to->top.p++; /* stack already checked by previous 'api_check' */
- }
- lua_unlock(to);
- }
- LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
- lua_CFunction old;
- lua_lock(L);
- old = G(L)->panic;
- G(L)->panic = panicf;
- lua_unlock(L);
- return old;
- }
- LUA_API lua_Number lua_version (lua_State *L) {
- UNUSED(L);
- return LUA_VERSION_NUM;
- }
- /*
- ** basic stack manipulation
- */
- /*
- ** convert an acceptable stack index into an absolute index
- */
- LUA_API int lua_absindex (lua_State *L, int idx) {
- return (idx > 0 || ispseudo(idx))
- ? idx
- : cast_int(L->top.p - L->ci->func.p) + idx;
- }
- LUA_API int lua_gettop (lua_State *L) {
- return cast_int(L->top.p - (L->ci->func.p + 1));
- }
- LUA_API void lua_settop (lua_State *L, int idx) {
- CallInfo *ci;
- StkId func, newtop;
- ptrdiff_t diff; /* difference for new top */
- lua_lock(L);
- ci = L->ci;
- func = ci->func.p;
- if (idx >= 0) {
- api_check(L, idx <= ci->top.p - (func + 1), "new top too large");
- diff = ((func + 1) + idx) - L->top.p;
- for (; diff > 0; diff--)
- setnilvalue(s2v(L->top.p++)); /* clear new slots */
- }
- else {
- api_check(L, -(idx+1) <= (L->top.p - (func + 1)), "invalid new top");
- diff = idx + 1; /* will "subtract" index (as it is negative) */
- }
- api_check(L, L->tbclist.p < L->top.p, "previous pop of an unclosed slot");
- newtop = L->top.p + diff;
- if (diff < 0 && L->tbclist.p >= newtop) {
- lua_assert(hastocloseCfunc(ci->nresults));
- newtop = luaF_close(L, newtop, CLOSEKTOP, 0);
- }
- L->top.p = newtop; /* correct top only after closing any upvalue */
- lua_unlock(L);
- }
- LUA_API void lua_closeslot (lua_State *L, int idx) {
- StkId level;
- lua_lock(L);
- level = index2stack(L, idx);
- api_check(L, hastocloseCfunc(L->ci->nresults) && L->tbclist.p == level,
- "no variable to close at given level");
- level = luaF_close(L, level, CLOSEKTOP, 0);
- setnilvalue(s2v(level));
- lua_unlock(L);
- }
- /*
- ** Reverse the stack segment from 'from' to 'to'
- ** (auxiliary to 'lua_rotate')
- ** Note that we move(copy) only the value inside the stack.
- ** (We do not move additional fields that may exist.)
- */
- l_sinline void reverse (lua_State *L, StkId from, StkId to) {
- for (; from < to; from++, to--) {
- TValue temp;
- setobj(L, &temp, s2v(from));
- setobjs2s(L, from, to);
- setobj2s(L, to, &temp);
- }
- }
- /*
- ** Let x = AB, where A is a prefix of length 'n'. Then,
- ** rotate x n == BA. But BA == (A^r . B^r)^r.
- */
- LUA_API void lua_rotate (lua_State *L, int idx, int n) {
- StkId p, t, m;
- lua_lock(L);
- t = L->top.p - 1; /* end of stack segment being rotated */
- p = index2stack(L, idx); /* start of segment */
- api_check(L, (n >= 0 ? n : -n) <= (t - p + 1), "invalid 'n'");
- m = (n >= 0 ? t - n : p - n - 1); /* end of prefix */
- reverse(L, p, m); /* reverse the prefix with length 'n' */
- reverse(L, m + 1, t); /* reverse the suffix */
- reverse(L, p, t); /* reverse the entire segment */
- lua_unlock(L);
- }
- LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) {
- TValue *fr, *to;
- lua_lock(L);
- fr = index2value(L, fromidx);
- to = index2value(L, toidx);
- api_check(L, isvalid(L, to), "invalid index");
- setobj(L, to, fr);
- if (isupvalue(toidx)) /* function upvalue? */
- luaC_barrier(L, clCvalue(s2v(L->ci->func.p)), fr);
- /* LUA_REGISTRYINDEX does not need gc barrier
- (collector revisits it before finishing collection) */
- lua_unlock(L);
- }
- LUA_API void lua_pushvalue (lua_State *L, int idx) {
- lua_lock(L);
- setobj2s(L, L->top.p, index2value(L, idx));
- api_incr_top(L);
- lua_unlock(L);
- }
- /*
- ** access functions (stack -> C)
- */
- LUA_API int lua_type (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return (isvalid(L, o) ? ttype(o) : LUA_TNONE);
- }
- LUA_API const char *lua_typename (lua_State *L, int t) {
- UNUSED(L);
- api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type");
- return ttypename(t);
- }
- LUA_API int lua_iscfunction (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return (ttislcf(o) || (ttisCclosure(o)));
- }
- LUA_API int lua_isinteger (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return ttisinteger(o);
- }
- LUA_API int lua_isnumber (lua_State *L, int idx) {
- lua_Number n;
- const TValue *o = index2value(L, idx);
- return tonumber(o, &n);
- }
- LUA_API int lua_isstring (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return (ttisstring(o) || cvt2str(o));
- }
- LUA_API int lua_isuserdata (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return (ttisfulluserdata(o) || ttislightuserdata(o));
- }
- LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
- const TValue *o1 = index2value(L, index1);
- const TValue *o2 = index2value(L, index2);
- return (isvalid(L, o1) && isvalid(L, o2)) ? luaV_rawequalobj(o1, o2) : 0;
- }
- LUA_API void lua_arith (lua_State *L, int op) {
- lua_lock(L);
- if (op != LUA_OPUNM && op != LUA_OPBNOT)
- api_checknelems(L, 2); /* all other operations expect two operands */
- else { /* for unary operations, add fake 2nd operand */
- api_checknelems(L, 1);
- setobjs2s(L, L->top.p, L->top.p - 1);
- api_incr_top(L);
- }
- /* first operand at top - 2, second at top - 1; result go to top - 2 */
- luaO_arith(L, op, s2v(L->top.p - 2), s2v(L->top.p - 1), L->top.p - 2);
- L->top.p--; /* remove second operand */
- lua_unlock(L);
- }
- LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) {
- const TValue *o1;
- const TValue *o2;
- int i = 0;
- lua_lock(L); /* may call tag method */
- o1 = index2value(L, index1);
- o2 = index2value(L, index2);
- if (isvalid(L, o1) && isvalid(L, o2)) {
- switch (op) {
- case LUA_OPEQ: i = luaV_equalobj(L, o1, o2); break;
- case LUA_OPLT: i = luaV_lessthan(L, o1, o2); break;
- case LUA_OPLE: i = luaV_lessequal(L, o1, o2); break;
- default: api_check(L, 0, "invalid option");
- }
- }
- lua_unlock(L);
- return i;
- }
- LUA_API size_t lua_stringtonumber (lua_State *L, const char *s) {
- size_t sz = luaO_str2num(s, s2v(L->top.p));
- if (sz != 0)
- api_incr_top(L);
- return sz;
- }
- LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum) {
- lua_Number n = 0;
- const TValue *o = index2value(L, idx);
- int isnum = tonumber(o, &n);
- if (pisnum)
- *pisnum = isnum;
- return n;
- }
- LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *pisnum) {
- lua_Integer res = 0;
- const TValue *o = index2value(L, idx);
- int isnum = tointeger(o, &res);
- if (pisnum)
- *pisnum = isnum;
- return res;
- }
- LUA_API int lua_toboolean (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return !l_isfalse(o);
- }
- LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
- TValue *o;
- lua_lock(L);
- o = index2value(L, idx);
- if (!ttisstring(o)) {
- if (!cvt2str(o)) { /* not convertible? */
- if (len != NULL) *len = 0;
- lua_unlock(L);
- return NULL;
- }
- luaO_tostring(L, o);
- luaC_checkGC(L);
- o = index2value(L, idx); /* previous call may reallocate the stack */
- }
- if (len != NULL)
- *len = vslen(o);
- lua_unlock(L);
- return svalue(o);
- }
- LUA_API lua_Unsigned lua_rawlen (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- switch (ttypetag(o)) {
- case LUA_VSHRSTR: return tsvalue(o)->shrlen;
- case LUA_VLNGSTR: return tsvalue(o)->u.lnglen;
- case LUA_VUSERDATA: return uvalue(o)->len;
- case LUA_VTABLE: return luaH_getn(hvalue(o));
- default: return 0;
- }
- }
- LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- if (ttislcf(o)) return fvalue(o);
- else if (ttisCclosure(o))
- return clCvalue(o)->f;
- else return NULL; /* not a C function */
- }
- l_sinline void *touserdata (const TValue *o) {
- switch (ttype(o)) {
- case LUA_TUSERDATA: return getudatamem(uvalue(o));
- case LUA_TLIGHTUSERDATA: return pvalue(o);
- default: return NULL;
- }
- }
- LUA_API void *lua_touserdata (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return touserdata(o);
- }
- LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- return (!ttisthread(o)) ? NULL : thvalue(o);
- }
- /*
- ** Returns a pointer to the internal representation of an object.
- ** Note that ANSI C does not allow the conversion of a pointer to
- ** function to a 'void*', so the conversion here goes through
- ** a 'size_t'. (As the returned pointer is only informative, this
- ** conversion should not be a problem.)
- */
- LUA_API const void *lua_topointer (lua_State *L, int idx) {
- const TValue *o = index2value(L, idx);
- switch (ttypetag(o)) {
- case LUA_VLCF: return cast_voidp(cast_sizet(fvalue(o)));
- case LUA_VUSERDATA: case LUA_VLIGHTUSERDATA:
- return touserdata(o);
- default: {
- if (iscollectable(o))
- return gcvalue(o);
- else
- return NULL;
- }
- }
- }
- /*
- ** push functions (C -> stack)
- */
- LUA_API void lua_pushnil (lua_State *L) {
- lua_lock(L);
- setnilvalue(s2v(L->top.p));
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
- lua_lock(L);
- setfltvalue(s2v(L->top.p), n);
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
- lua_lock(L);
- setivalue(s2v(L->top.p), n);
- api_incr_top(L);
- lua_unlock(L);
- }
- /*
- ** Pushes on the stack a string with given length. Avoid using 's' when
- ** 'len' == 0 (as 's' can be NULL in that case), due to later use of
- ** 'memcmp' and 'memcpy'.
- */
- LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) {
- TString *ts;
- lua_lock(L);
- ts = (len == 0) ? luaS_new(L, "") : luaS_newlstr(L, s, len);
- setsvalue2s(L, L->top.p, ts);
- api_incr_top(L);
- luaC_checkGC(L);
- lua_unlock(L);
- return getstr(ts);
- }
- LUA_API const char *lua_pushstring (lua_State *L, const char *s) {
- lua_lock(L);
- if (s == NULL)
- setnilvalue(s2v(L->top.p));
- else {
- TString *ts;
- ts = luaS_new(L, s);
- setsvalue2s(L, L->top.p, ts);
- s = getstr(ts); /* internal copy's address */
- }
- api_incr_top(L);
- luaC_checkGC(L);
- lua_unlock(L);
- return s;
- }
- LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
- va_list argp) {
- const char *ret;
- lua_lock(L);
- ret = luaO_pushvfstring(L, fmt, argp);
- luaC_checkGC(L);
- lua_unlock(L);
- return ret;
- }
- LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
- const char *ret;
- va_list argp;
- lua_lock(L);
- va_start(argp, fmt);
- ret = luaO_pushvfstring(L, fmt, argp);
- va_end(argp);
- luaC_checkGC(L);
- lua_unlock(L);
- return ret;
- }
- LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
- lua_lock(L);
- if (n == 0) {
- setfvalue(s2v(L->top.p), fn);
- api_incr_top(L);
- }
- else {
- CClosure *cl;
- api_checknelems(L, n);
- api_check(L, n <= MAXUPVAL, "upvalue index too large");
- cl = luaF_newCclosure(L, n);
- cl->f = fn;
- L->top.p -= n;
- while (n--) {
- setobj2n(L, &cl->upvalue[n], s2v(L->top.p + n));
- /* does not need barrier because closure is white */
- lua_assert(iswhite(cl));
- }
- setclCvalue(L, s2v(L->top.p), cl);
- api_incr_top(L);
- luaC_checkGC(L);
- }
- lua_unlock(L);
- }
- LUA_API void lua_pushboolean (lua_State *L, int b) {
- lua_lock(L);
- if (b)
- setbtvalue(s2v(L->top.p));
- else
- setbfvalue(s2v(L->top.p));
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
- lua_lock(L);
- setpvalue(s2v(L->top.p), p);
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API int lua_pushthread (lua_State *L) {
- lua_lock(L);
- setthvalue(L, s2v(L->top.p), L);
- api_incr_top(L);
- lua_unlock(L);
- return (G(L)->mainthread == L);
- }
- /*
- ** get functions (Lua -> stack)
- */
- l_sinline int auxgetstr (lua_State *L, const TValue *t, const char *k) {
- const TValue *slot;
- TString *str = luaS_new(L, k);
- if (luaV_fastget(L, t, str, slot, luaH_getstr)) {
- setobj2s(L, L->top.p, slot);
- api_incr_top(L);
- }
- else {
- setsvalue2s(L, L->top.p, str);
- api_incr_top(L);
- luaV_finishget(L, t, s2v(L->top.p - 1), L->top.p - 1, slot);
- }
- lua_unlock(L);
- return ttype(s2v(L->top.p - 1));
- }
- /*
- ** Get the global table in the registry. Since all predefined
- ** indices in the registry were inserted right when the registry
- ** was created and never removed, they must always be in the array
- ** part of the registry.
- */
- #define getGtable(L) \
- (&hvalue(&G(L)->l_registry)->array[LUA_RIDX_GLOBALS - 1])
- LUA_API int lua_getglobal (lua_State *L, const char *name) {
- const TValue *G;
- lua_lock(L);
- G = getGtable(L);
- return auxgetstr(L, G, name);
- }
- LUA_API int lua_gettable (lua_State *L, int idx) {
- const TValue *slot;
- TValue *t;
- lua_lock(L);
- t = index2value(L, idx);
- if (luaV_fastget(L, t, s2v(L->top.p - 1), slot, luaH_get)) {
- setobj2s(L, L->top.p - 1, slot);
- }
- else
- luaV_finishget(L, t, s2v(L->top.p - 1), L->top.p - 1, slot);
- lua_unlock(L);
- return ttype(s2v(L->top.p - 1));
- }
- LUA_API int lua_getfield (lua_State *L, int idx, const char *k) {
- lua_lock(L);
- return auxgetstr(L, index2value(L, idx), k);
- }
- LUA_API int lua_geti (lua_State *L, int idx, lua_Integer n) {
- TValue *t;
- const TValue *slot;
- lua_lock(L);
- t = index2value(L, idx);
- if (luaV_fastgeti(L, t, n, slot)) {
- setobj2s(L, L->top.p, slot);
- }
- else {
- TValue aux;
- setivalue(&aux, n);
- luaV_finishget(L, t, &aux, L->top.p, slot);
- }
- api_incr_top(L);
- lua_unlock(L);
- return ttype(s2v(L->top.p - 1));
- }
- l_sinline int finishrawget (lua_State *L, const TValue *val) {
- if (isempty(val)) /* avoid copying empty items to the stack */
- setnilvalue(s2v(L->top.p));
- else
- setobj2s(L, L->top.p, val);
- api_incr_top(L);
- lua_unlock(L);
- return ttype(s2v(L->top.p - 1));
- }
- static Table *gettable (lua_State *L, int idx) {
- TValue *t = index2value(L, idx);
- api_check(L, ttistable(t), "table expected");
- return hvalue(t);
- }
- LUA_API int lua_rawget (lua_State *L, int idx) {
- Table *t;
- const TValue *val;
- lua_lock(L);
- api_checknelems(L, 1);
- t = gettable(L, idx);
- val = luaH_get(t, s2v(L->top.p - 1));
- L->top.p--; /* remove key */
- return finishrawget(L, val);
- }
- LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) {
- Table *t;
- lua_lock(L);
- t = gettable(L, idx);
- return finishrawget(L, luaH_getint(t, n));
- }
- LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) {
- Table *t;
- TValue k;
- lua_lock(L);
- t = gettable(L, idx);
- setpvalue(&k, cast_voidp(p));
- return finishrawget(L, luaH_get(t, &k));
- }
- LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
- Table *t;
- lua_lock(L);
- t = luaH_new(L);
- sethvalue2s(L, L->top.p, t);
- api_incr_top(L);
- if (narray > 0 || nrec > 0)
- luaH_resize(L, t, narray, nrec);
- luaC_checkGC(L);
- lua_unlock(L);
- }
- LUA_API int lua_getmetatable (lua_State *L, int objindex) {
- const TValue *obj;
- Table *mt;
- int res = 0;
- lua_lock(L);
- obj = index2value(L, objindex);
- switch (ttype(obj)) {
- case LUA_TTABLE:
- mt = hvalue(obj)->metatable;
- break;
- case LUA_TUSERDATA:
- mt = uvalue(obj)->metatable;
- break;
- default:
- mt = G(L)->mt[ttype(obj)];
- break;
- }
- if (mt != NULL) {
- sethvalue2s(L, L->top.p, mt);
- api_incr_top(L);
- res = 1;
- }
- lua_unlock(L);
- return res;
- }
- LUA_API int lua_getiuservalue (lua_State *L, int idx, int n) {
- TValue *o;
- int t;
- lua_lock(L);
- o = index2value(L, idx);
- api_check(L, ttisfulluserdata(o), "full userdata expected");
- if (n <= 0 || n > uvalue(o)->nuvalue) {
- setnilvalue(s2v(L->top.p));
- t = LUA_TNONE;
- }
- else {
- setobj2s(L, L->top.p, &uvalue(o)->uv[n - 1].uv);
- t = ttype(s2v(L->top.p));
- }
- api_incr_top(L);
- lua_unlock(L);
- return t;
- }
- /*
- ** set functions (stack -> Lua)
- */
- /*
- ** t[k] = value at the top of the stack (where 'k' is a string)
- */
- static void auxsetstr (lua_State *L, const TValue *t, const char *k) {
- const TValue *slot;
- TString *str = luaS_new(L, k);
- api_checknelems(L, 1);
- if (luaV_fastset(L, t, str, slot, luaH_getstr)) {
- luaV_finishfastset(L, t, slot, s2v(L->top.p - 1));
- L->top.p--; /* pop value */
- }
- else {
- setsvalue2s(L, L->top.p, str); /* push 'str' (to make it a TValue) */
- api_incr_top(L);
- luaV_finishset(L, t, s2v(L->top.p - 1), s2v(L->top.p - 2), slot);
- L->top.p -= 2; /* pop value and key */
- }
- lua_unlock(L); /* lock done by caller */
- }
- LUA_API void lua_setglobal (lua_State *L, const char *name) {
- const TValue *G;
- lua_lock(L); /* unlock done in 'auxsetstr' */
- G = getGtable(L);
- auxsetstr(L, G, name);
- }
- LUA_API void lua_settable (lua_State *L, int idx) {
- TValue *t;
- const TValue *slot;
- lua_lock(L);
- api_checknelems(L, 2);
- t = index2value(L, idx);
- if (luaV_fastset(L, t, s2v(L->top.p - 2), slot, luaH_get)) {
- luaV_finishfastset(L, t, slot, s2v(L->top.p - 1));
- }
- else
- luaV_finishset(L, t, s2v(L->top.p - 2), s2v(L->top.p - 1), slot);
- L->top.p -= 2; /* pop index and value */
- lua_unlock(L);
- }
- LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
- lua_lock(L); /* unlock done in 'auxsetstr' */
- auxsetstr(L, index2value(L, idx), k);
- }
- LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) {
- TValue *t;
- const TValue *slot;
- lua_lock(L);
- api_checknelems(L, 1);
- t = index2value(L, idx);
- if (luaV_fastseti(L, t, n, slot)) {
- luaV_finishfastset(L, t, slot, s2v(L->top.p - 1));
- }
- else {
- TValue aux;
- setivalue(&aux, n);
- luaV_finishset(L, t, &aux, s2v(L->top.p - 1), slot);
- }
- L->top.p--; /* pop value */
- lua_unlock(L);
- }
- static void aux_rawset (lua_State *L, int idx, TValue *key, int n) {
- Table *t;
- lua_lock(L);
- api_checknelems(L, n);
- t = gettable(L, idx);
- luaH_set(L, t, key, s2v(L->top.p - 1));
- invalidateTMcache(t);
- luaC_barrierback(L, obj2gco(t), s2v(L->top.p - 1));
- L->top.p -= n;
- lua_unlock(L);
- }
- LUA_API void lua_rawset (lua_State *L, int idx) {
- aux_rawset(L, idx, s2v(L->top.p - 2), 2);
- }
- LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) {
- TValue k;
- setpvalue(&k, cast_voidp(p));
- aux_rawset(L, idx, &k, 1);
- }
- LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) {
- Table *t;
- lua_lock(L);
- api_checknelems(L, 1);
- t = gettable(L, idx);
- luaH_setint(L, t, n, s2v(L->top.p - 1));
- luaC_barrierback(L, obj2gco(t), s2v(L->top.p - 1));
- L->top.p--;
- lua_unlock(L);
- }
- LUA_API int lua_setmetatable (lua_State *L, int objindex) {
- TValue *obj;
- Table *mt;
- lua_lock(L);
- api_checknelems(L, 1);
- obj = index2value(L, objindex);
- if (ttisnil(s2v(L->top.p - 1)))
- mt = NULL;
- else {
- api_check(L, ttistable(s2v(L->top.p - 1)), "table expected");
- mt = hvalue(s2v(L->top.p - 1));
- }
- switch (ttype(obj)) {
- case LUA_TTABLE: {
- if (l_unlikely(isshared(hvalue(obj))))
- luaG_runerror(L, "can't setmetatable to shared table");
- hvalue(obj)->metatable = mt;
- if (mt) {
- luaC_objbarrier(L, gcvalue(obj), mt);
- luaC_checkfinalizer(L, gcvalue(obj), mt);
- }
- break;
- }
- case LUA_TUSERDATA: {
- uvalue(obj)->metatable = mt;
- if (mt) {
- luaC_objbarrier(L, uvalue(obj), mt);
- luaC_checkfinalizer(L, gcvalue(obj), mt);
- }
- break;
- }
- default: {
- G(L)->mt[ttype(obj)] = mt;
- break;
- }
- }
- L->top.p--;
- lua_unlock(L);
- return 1;
- }
- LUA_API int lua_setiuservalue (lua_State *L, int idx, int n) {
- TValue *o;
- int res;
- lua_lock(L);
- api_checknelems(L, 1);
- o = index2value(L, idx);
- api_check(L, ttisfulluserdata(o), "full userdata expected");
- if (!(cast_uint(n) - 1u < cast_uint(uvalue(o)->nuvalue)))
- res = 0; /* 'n' not in [1, uvalue(o)->nuvalue] */
- else {
- setobj(L, &uvalue(o)->uv[n - 1].uv, s2v(L->top.p - 1));
- luaC_barrierback(L, gcvalue(o), s2v(L->top.p - 1));
- res = 1;
- }
- L->top.p--;
- lua_unlock(L);
- return res;
- }
- /*
- ** 'load' and 'call' functions (run Lua code)
- */
- #define checkresults(L,na,nr) \
- api_check(L, (nr) == LUA_MULTRET \
- || (L->ci->top.p - L->top.p >= (nr) - (na)), \
- "results from function overflow current stack size")
- LUA_API void lua_callk (lua_State *L, int nargs, int nresults,
- lua_KContext ctx, lua_KFunction k) {
- StkId func;
- lua_lock(L);
- api_check(L, k == NULL || !isLua(L->ci),
- "cannot use continuations inside hooks");
- api_checknelems(L, nargs+1);
- api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
- checkresults(L, nargs, nresults);
- func = L->top.p - (nargs+1);
- if (k != NULL && yieldable(L)) { /* need to prepare continuation? */
- L->ci->u.c.k = k; /* save continuation */
- L->ci->u.c.ctx = ctx; /* save context */
- luaD_call(L, func, nresults); /* do the call */
- }
- else /* no continuation or no yieldable */
- luaD_callnoyield(L, func, nresults); /* just do the call */
- adjustresults(L, nresults);
- lua_unlock(L);
- }
- /*
- ** Execute a protected call.
- */
- struct CallS { /* data to 'f_call' */
- StkId func;
- int nresults;
- };
- static void f_call (lua_State *L, void *ud) {
- struct CallS *c = cast(struct CallS *, ud);
- luaD_callnoyield(L, c->func, c->nresults);
- }
- LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc,
- lua_KContext ctx, lua_KFunction k) {
- struct CallS c;
- int status;
- ptrdiff_t func;
- lua_lock(L);
- api_check(L, k == NULL || !isLua(L->ci),
- "cannot use continuations inside hooks");
- api_checknelems(L, nargs+1);
- api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread");
- checkresults(L, nargs, nresults);
- if (errfunc == 0)
- func = 0;
- else {
- StkId o = index2stack(L, errfunc);
- api_check(L, ttisfunction(s2v(o)), "error handler must be a function");
- func = savestack(L, o);
- }
- c.func = L->top.p - (nargs+1); /* function to be called */
- if (k == NULL || !yieldable(L)) { /* no continuation or no yieldable? */
- c.nresults = nresults; /* do a 'conventional' protected call */
- status = luaD_pcall(L, f_call, &c, savestack(L, c.func), func);
- }
- else { /* prepare continuation (call is already protected by 'resume') */
- CallInfo *ci = L->ci;
- ci->u.c.k = k; /* save continuation */
- ci->u.c.ctx = ctx; /* save context */
- /* save information for error recovery */
- ci->u2.funcidx = cast_int(savestack(L, c.func));
- ci->u.c.old_errfunc = L->errfunc;
- L->errfunc = func;
- setoah(ci->callstatus, L->allowhook); /* save value of 'allowhook' */
- ci->callstatus |= CIST_YPCALL; /* function can do error recovery */
- luaD_call(L, c.func, nresults); /* do the call */
- ci->callstatus &= ~CIST_YPCALL;
- L->errfunc = ci->u.c.old_errfunc;
- status = LUA_OK; /* if it is here, there were no errors */
- }
- adjustresults(L, nresults);
- lua_unlock(L);
- return status;
- }
- static void set_env (lua_State *L, LClosure *f) {
- if (f->nupvalues >= 1) { /* does it have an upvalue? */
- /* get global table from registry */
- const TValue *gt = getGtable(L);
- /* set global table as 1st upvalue of 'f' (may be LUA_ENV) */
- setobj(L, f->upvals[0]->v.p, gt);
- luaC_barrier(L, f->upvals[0], gt);
- }
- }
- LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
- const char *chunkname, const char *mode) {
- ZIO z;
- int status;
- lua_lock(L);
- if (!chunkname) chunkname = "?";
- luaZ_init(L, &z, reader, data);
- status = luaD_protectedparser(L, &z, chunkname, mode);
- if (status == LUA_OK) { /* no errors? */
- LClosure *f = clLvalue(s2v(L->top.p - 1)); /* get new function */
- set_env(L,f);
- }
- lua_unlock(L);
- return status;
- }
- LUA_API void lua_clonefunction (lua_State *L, const void * fp) {
- LClosure *cl;
- LClosure *f = cast(LClosure *, fp);
- api_check(L, isshared(f->p), "Not a shared proto");
- lua_lock(L);
- cl = luaF_newLclosure(L,f->nupvalues);
- setclLvalue2s(L,L->top.p,cl);
- api_incr_top(L);
- cl->p = f->p;
- luaF_initupvals(L, cl);
- set_env(L,cl);
- lua_unlock(L);
- }
- LUA_API void lua_sharefunction (lua_State *L, int index) {
- LClosure *f;
- if (!lua_isfunction(L,index) || lua_iscfunction(L,index))
- luaG_runerror(L, "Only Lua function can share");
- f = cast(LClosure *, lua_topointer(L, index));
- luaF_shareproto(f->p);
- }
- LUA_API void lua_sharestring (lua_State *L, int index) {
- TString *ts;
- if (lua_type(L,index) != LUA_TSTRING)
- luaG_runerror(L, "need a string to share");
- ts = tsvalue(index2value(L,index));
- luaS_share(ts);
- }
- LUA_API void lua_clonetable(lua_State *L, const void * tp) {
- Table *t = cast(Table *, tp);
- if (l_unlikely(!isshared(t)))
- luaG_runerror(L, "Not a shared table");
- lua_lock(L);
- sethvalue2s(L, L->top.p, t);
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data, int strip) {
- int status;
- TValue *o;
- lua_lock(L);
- api_checknelems(L, 1);
- o = s2v(L->top.p - 1);
- if (isLfunction(o))
- status = luaU_dump(L, getproto(o), writer, data, strip);
- else
- status = 1;
- lua_unlock(L);
- return status;
- }
- LUA_API int lua_status (lua_State *L) {
- return L->status;
- }
- /*
- ** Garbage-collection function
- */
- LUA_API int lua_gc (lua_State *L, int what, ...) {
- va_list argp;
- int res = 0;
- global_State *g = G(L);
- if (g->gcstp & GCSTPGC) /* internal stop? */
- return -1; /* all options are invalid when stopped */
- lua_lock(L);
- va_start(argp, what);
- switch (what) {
- case LUA_GCSTOP: {
- g->gcstp = GCSTPUSR; /* stopped by the user */
- break;
- }
- case LUA_GCRESTART: {
- luaE_setdebt(g, 0);
- g->gcstp = 0; /* (GCSTPGC must be already zero here) */
- break;
- }
- case LUA_GCCOLLECT: {
- luaC_fullgc(L, 0);
- break;
- }
- case LUA_GCCOUNT: {
- /* GC values are expressed in Kbytes: #bytes/2^10 */
- res = cast_int(gettotalbytes(g) >> 10);
- break;
- }
- case LUA_GCCOUNTB: {
- res = cast_int(gettotalbytes(g) & 0x3ff);
- break;
- }
- case LUA_GCSTEP: {
- int data = va_arg(argp, int);
- l_mem debt = 1; /* =1 to signal that it did an actual step */
- lu_byte oldstp = g->gcstp;
- g->gcstp = 0; /* allow GC to run (GCSTPGC must be zero here) */
- if (data == 0) {
- luaE_setdebt(g, 0); /* do a basic step */
- luaC_step(L);
- }
- else { /* add 'data' to total debt */
- debt = cast(l_mem, data) * 1024 + g->GCdebt;
- luaE_setdebt(g, debt);
- luaC_checkGC(L);
- }
- g->gcstp = oldstp; /* restore previous state */
- if (debt > 0 && g->gcstate == GCSpause) /* end of cycle? */
- res = 1; /* signal it */
- break;
- }
- case LUA_GCSETPAUSE: {
- int data = va_arg(argp, int);
- res = getgcparam(g->gcpause);
- setgcparam(g->gcpause, data);
- break;
- }
- case LUA_GCSETSTEPMUL: {
- int data = va_arg(argp, int);
- res = getgcparam(g->gcstepmul);
- setgcparam(g->gcstepmul, data);
- break;
- }
- case LUA_GCISRUNNING: {
- res = gcrunning(g);
- break;
- }
- case LUA_GCGEN: {
- int minormul = va_arg(argp, int);
- int majormul = va_arg(argp, int);
- res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC;
- if (minormul != 0)
- g->genminormul = minormul;
- if (majormul != 0)
- setgcparam(g->genmajormul, majormul);
- luaC_changemode(L, KGC_GEN);
- break;
- }
- case LUA_GCINC: {
- int pause = va_arg(argp, int);
- int stepmul = va_arg(argp, int);
- int stepsize = va_arg(argp, int);
- res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC;
- if (pause != 0)
- setgcparam(g->gcpause, pause);
- if (stepmul != 0)
- setgcparam(g->gcstepmul, stepmul);
- if (stepsize != 0)
- g->gcstepsize = stepsize;
- luaC_changemode(L, KGC_INC);
- break;
- }
- default: res = -1; /* invalid option */
- }
- va_end(argp);
- lua_unlock(L);
- return res;
- }
- /*
- ** miscellaneous functions
- */
- LUA_API int lua_error (lua_State *L) {
- TValue *errobj;
- lua_lock(L);
- errobj = s2v(L->top.p - 1);
- api_checknelems(L, 1);
- /* error object is the memory error message? */
- if (ttisshrstring(errobj) && eqshrstr(tsvalue(errobj), G(L)->memerrmsg))
- luaM_error(L); /* raise a memory error */
- else
- luaG_errormsg(L); /* raise a regular error */
- /* code unreachable; will unlock when control actually leaves the kernel */
- return 0; /* to avoid warnings */
- }
- LUA_API int lua_next (lua_State *L, int idx) {
- Table *t;
- int more;
- lua_lock(L);
- api_checknelems(L, 1);
- t = gettable(L, idx);
- more = luaH_next(L, t, L->top.p - 1);
- if (more) {
- api_incr_top(L);
- }
- else /* no more elements */
- L->top.p -= 1; /* remove key */
- lua_unlock(L);
- return more;
- }
- LUA_API void lua_toclose (lua_State *L, int idx) {
- int nresults;
- StkId o;
- lua_lock(L);
- o = index2stack(L, idx);
- nresults = L->ci->nresults;
- api_check(L, L->tbclist.p < o, "given index below or equal a marked one");
- luaF_newtbcupval(L, o); /* create new to-be-closed upvalue */
- if (!hastocloseCfunc(nresults)) /* function not marked yet? */
- L->ci->nresults = codeNresults(nresults); /* mark it */
- lua_assert(hastocloseCfunc(L->ci->nresults));
- lua_unlock(L);
- }
- LUA_API void lua_concat (lua_State *L, int n) {
- lua_lock(L);
- api_checknelems(L, n);
- if (n > 0)
- luaV_concat(L, n);
- else { /* nothing to concatenate */
- setsvalue2s(L, L->top.p, luaS_newlstr(L, "", 0)); /* push empty string */
- api_incr_top(L);
- }
- luaC_checkGC(L);
- lua_unlock(L);
- }
- LUA_API void lua_len (lua_State *L, int idx) {
- TValue *t;
- lua_lock(L);
- t = index2value(L, idx);
- luaV_objlen(L, L->top.p, t);
- api_incr_top(L);
- lua_unlock(L);
- }
- LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
- lua_Alloc f;
- lua_lock(L);
- if (ud) *ud = G(L)->ud;
- f = G(L)->frealloc;
- lua_unlock(L);
- return f;
- }
- LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud) {
- lua_lock(L);
- G(L)->ud = ud;
- G(L)->frealloc = f;
- lua_unlock(L);
- }
- void lua_setwarnf (lua_State *L, lua_WarnFunction f, void *ud) {
- lua_lock(L);
- G(L)->ud_warn = ud;
- G(L)->warnf = f;
- lua_unlock(L);
- }
- void lua_warning (lua_State *L, const char *msg, int tocont) {
- lua_lock(L);
- luaE_warning(L, msg, tocont);
- lua_unlock(L);
- }
- LUA_API void *lua_newuserdatauv (lua_State *L, size_t size, int nuvalue) {
- Udata *u;
- lua_lock(L);
- api_check(L, 0 <= nuvalue && nuvalue < USHRT_MAX, "invalid value");
- u = luaS_newudata(L, size, nuvalue);
- setuvalue(L, s2v(L->top.p), u);
- api_incr_top(L);
- luaC_checkGC(L);
- lua_unlock(L);
- return getudatamem(u);
- }
- static const char *aux_upvalue (TValue *fi, int n, TValue **val,
- GCObject **owner) {
- switch (ttypetag(fi)) {
- case LUA_VCCL: { /* C closure */
- CClosure *f = clCvalue(fi);
- if (!(cast_uint(n) - 1u < cast_uint(f->nupvalues)))
- return NULL; /* 'n' not in [1, f->nupvalues] */
- *val = &f->upvalue[n-1];
- if (owner) *owner = obj2gco(f);
- return "";
- }
- case LUA_VLCL: { /* Lua closure */
- LClosure *f = clLvalue(fi);
- TString *name;
- Proto *p = f->p;
- if (!(cast_uint(n) - 1u < cast_uint(p->sizeupvalues)))
- return NULL; /* 'n' not in [1, p->sizeupvalues] */
- *val = f->upvals[n-1]->v.p;
- if (owner) *owner = obj2gco(f->upvals[n - 1]);
- name = p->upvalues[n-1].name;
- return (name == NULL) ? "(no name)" : getstr(name);
- }
- default: return NULL; /* not a closure */
- }
- }
- LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
- const char *name;
- TValue *val = NULL; /* to avoid warnings */
- lua_lock(L);
- name = aux_upvalue(index2value(L, funcindex), n, &val, NULL);
- if (name) {
- setobj2s(L, L->top.p, val);
- api_incr_top(L);
- }
- lua_unlock(L);
- return name;
- }
- LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) {
- const char *name;
- TValue *val = NULL; /* to avoid warnings */
- GCObject *owner = NULL; /* to avoid warnings */
- TValue *fi;
- lua_lock(L);
- fi = index2value(L, funcindex);
- api_checknelems(L, 1);
- name = aux_upvalue(fi, n, &val, &owner);
- if (name) {
- L->top.p--;
- setobj(L, val, s2v(L->top.p));
- luaC_barrier(L, owner, val);
- }
- lua_unlock(L);
- return name;
- }
- static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) {
- static const UpVal *const nullup = NULL;
- LClosure *f;
- TValue *fi = index2value(L, fidx);
- api_check(L, ttisLclosure(fi), "Lua function expected");
- f = clLvalue(fi);
- if (pf) *pf = f;
- if (1 <= n && n <= f->p->sizeupvalues)
- return &f->upvals[n - 1]; /* get its upvalue pointer */
- else
- return (UpVal**)&nullup;
- }
- LUA_API void *lua_upvalueid (lua_State *L, int fidx, int n) {
- TValue *fi = index2value(L, fidx);
- switch (ttypetag(fi)) {
- case LUA_VLCL: { /* lua closure */
- return *getupvalref(L, fidx, n, NULL);
- }
- case LUA_VCCL: { /* C closure */
- CClosure *f = clCvalue(fi);
- if (1 <= n && n <= f->nupvalues)
- return &f->upvalue[n - 1];
- /* else */
- } /* FALLTHROUGH */
- case LUA_VLCF:
- return NULL; /* light C functions have no upvalues */
- default: {
- api_check(L, 0, "function expected");
- return NULL;
- }
- }
- }
- LUA_API void lua_upvaluejoin (lua_State *L, int fidx1, int n1,
- int fidx2, int n2) {
- LClosure *f1;
- UpVal **up1 = getupvalref(L, fidx1, n1, &f1);
- UpVal **up2 = getupvalref(L, fidx2, n2, NULL);
- api_check(L, *up1 != NULL && *up2 != NULL, "invalid upvalue index");
- *up1 = *up2;
- luaC_objbarrier(L, f1, *up1);
- }
|