Lines Matching refs:NO_JUMP
156 if (offset == NO_JUMP) /* point to itself represents end of list */ in getjump()
157 return NO_JUMP; /* end of list */ in getjump()
170 lua_assert(dest != NO_JUMP); in fixjump()
182 if (l2 == NO_JUMP) return; /* nothing to concatenate? */ in luaK_concat()
183 else if (*l1 == NO_JUMP) /* no original list? */ in luaK_concat()
188 while ((next = getjump(fs, list)) != NO_JUMP) /* find last element */ in luaK_concat()
200 return codesJ(fs, OP_JMP, NO_JUMP, 0); in luaK_jump()
278 for (; list != NO_JUMP; list = getjump(fs, list)) in removevalues()
290 while (list != NO_JUMP) { in patchlistaux()
906 for (; list != NO_JUMP; list = getjump(fs, list)) { in need_value()
927 int p_f = NO_JUMP; /* position of an eventual LOAD false */ in exp2reg()
928 int p_t = NO_JUMP; /* position of an eventual LOAD true */ in exp2reg()
930 int fj = (e->k == VJMP) ? NO_JUMP : luaK_jump(fs); in exp2reg()
940 e->f = e->t = NO_JUMP; in exp2reg()
1150 pc = NO_JUMP; /* always true; do nothing */ in luaK_goiftrue()
1160 e->t = NO_JUMP; in luaK_goiftrue()
1176 pc = NO_JUMP; /* always false; do nothing */ in luaK_goiffalse()
1186 e->f = NO_JUMP; in luaK_goiffalse()
1620 static const expdesc ef = {VKINT, {0}, NO_JUMP, NO_JUMP}; in luaK_prefix()
1716 lua_assert(e1->t == NO_JUMP); /* list closed by 'luaK_infix' */ in luaK_posfix()
1722 lua_assert(e1->f == NO_JUMP); /* list closed by 'luaK_infix' */ in luaK_posfix()