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

/freebsd-12-stable/contrib/lua/src/
H A Dlparser.h36 VLOCAL, /* local variable; info = local register */ enumerator in enum:__anon6007
51 #define vkisvar(k) (VLOCAL <= (k) && (k) <= VINDEXED)
52 #define vkisinreg(k) ((k) == VNONRELOC || (k) == VLOCAL)
63 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */
H A Dlcode.c558 case VLOCAL: { /* already in a register */
570 if (e->u.ind.vt == VLOCAL) { /* is 't' in a register? */
784 case VLOCAL: {
795 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP;
950 t->u.ind.vt = (t->k == VUPVAL) ? VUPVAL : VLOCAL;
H A Dlparser.c236 f->upvalues[fs->nups].instack = (v->k == VLOCAL);
276 init_exp(var, VLOCAL, v); /* variable is local */
1129 lh->v.u.ind.vt = VLOCAL;
1133 if (v->k == VLOCAL && lh->v.u.ind.idx == v->u.info) {
1141 OpCode op = (v->k == VLOCAL) ? OP_MOVE : OP_GETUPVAL;
1618 init_exp(&v, VLOCAL, 0); /* create and... */
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlparser.h27 VLOCAL, /* info = local register */ enumerator in enum:__anon9769
37 #define vkisvar(k) (VLOCAL <= (k) && (k) <= VINDEXED)
38 #define vkisinreg(k) ((k) == VNONRELOC || (k) == VLOCAL)
46 lu_byte vt; /* whether 't' is register (VLOCAL) or upvalue (VUPVAL) */
H A Dlcode.c384 case VLOCAL: {
396 if (e->u.ind.vt == VLOCAL) { /* 't' is in a register? */
559 case VLOCAL: {
570 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP;
707 : check_exp(vkisinreg(t->k), VLOCAL);
H A Dlparser.c237 f->upvalues[fs->nups].instack = (v->k == VLOCAL);
276 init_exp(var, VLOCAL, v); /* variable is local */
279 return VLOCAL;
302 lua_assert(var->k == VLOCAL || var->k == VUPVAL);
1116 lh->v.u.ind.vt = VLOCAL;
1120 if (v->k == VLOCAL && lh->v.u.ind.idx == v->u.info) {
1128 OpCode op = (v->k == VLOCAL) ? OP_MOVE : OP_GETUPVAL;
1608 init_exp(&v, VLOCAL, 0); /* create and... */

Completed in 113 milliseconds