Searched refs:VUPVAL (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlparser.h29 VUPVAL, /* info = index of upvalue in 'upvalues' */ enumerator in enum:__anon10631
47 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */
H A Dlcode.c387 case VUPVAL: {
513 if (e->k != VUPVAL || hasjumps(e))
563 case VUPVAL: {
705 t->u.ind.vt = (t->k == VUPVAL) ? VUPVAL
H A Dlparser.c288 init_exp(var, VUPVAL, idx);
289 return VUPVAL;
301 lua_assert(var->k == VLOCAL || var->k == VUPVAL);
/freebsd-13-stable/contrib/lua/src/
H A Dlparser.h40 VUPVAL, /* upvalue variable; info = index of upvalue in 'upvalues' */ enumerator in enum:__anon5016
H A Dlcode.c770 case VUPVAL: { /* move value to some (pending) register */
964 if (e->k != VUPVAL || hasjumps(e))
1042 case VUPVAL: {
1269 (t->k == VLOCAL || t->k == VNONRELOC || t->k == VUPVAL));
1270 if (t->k == VUPVAL && !isKstr(fs, k)) /* upvalue indexed by non 'Kstr'? */
1272 if (t->k == VUPVAL) {
H A Dlparser.c291 case VUPVAL: {
437 if (var->k == VLOCAL || var->k == VUPVAL) /* local or upvalue? */
442 init_exp(var, VUPVAL, idx); /* new or old upvalue */
1326 if (v->k == VUPVAL && lh->v.u.ind.t == v->u.info) {

Completed in 74 milliseconds