Searched refs:NO_JUMP (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lcode.c | 34 return (e->k == VKNUM && e->t == NO_JUMP && e->f == NO_JUMP); in isnumeral() 63 fs->jpc = NO_JUMP; in luaK_jump() 64 j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP); in luaK_jump() 84 lua_assert(dest != NO_JUMP); in fixjump() 103 if (offset == NO_JUMP) /* point to itself represents end of list */ in getjump() 104 return NO_JUMP; /* end of list */ in getjump() 124 for (; list != NO_JUMP; list = getjump(fs, list)) { in need_value() 146 for (; list != NO_JUMP; list = getjump(fs, list)) in removevalues() 153 while (list != NO_JUMP) { in patchlistaux() 166 fs->jpc = NO_JUMP; in dischargejpc() [all …]
|
H A D | lcode.h | 20 #define NO_JUMP (-1) macro
|
H A D | lparser.c | 146 e->f = e->t = NO_JUMP; in init_exp() 532 fs->jpc = NO_JUMP; in open_func() 1293 prep = isnum ? luaK_codeAsBx(fs, OP_FORPREP, base, NO_JUMP) : luaK_jump(fs); in forbody() 1301 endfor = luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP); in forbody() 1305 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody() 1416 int escapelist = NO_JUMP; /* exit list for finished parts */ in ifstat()
|
/freebsd/contrib/lua/src/ |
H A D | lcode.c | 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() [all …]
|
H A D | lcode.h | 20 #define NO_JUMP (-1) macro
|
H A D | lparser.c | 153 e->f = e->t = NO_JUMP; in init_exp() 160 e->f = e->t = NO_JUMP; in codestring() 267 e->f = e->t = NO_JUMP; in init_var() 1678 int escapelist = NO_JUMP; /* exit list for finished parts */ in ifstat()
|