Home
last modified time | relevance | path

Searched refs:OP_TFORLOOP (Results 1 – 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
HDlopcodes.h217 OP_TFORLOOP,/* A sBx if R(A+1) ~= nil then { R(A)=R(A+1); pc += sBx }*/ enumerator
HDlvm.c524 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP); in luaV_finishOp()
865 lua_assert(GET_OPCODE(i) == OP_TFORLOOP); in luaV_execute()
868 vmcase(OP_TFORLOOP, in luaV_execute()
HDlparser.c1306 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody()
/freebsd-13-stable/contrib/lua/src/
HDlopcodes.h298 OP_TFORLOOP,/* A Bx if R[A+2] ~= nil then { R[A]=R[A+2]; pc -= Bx } */ enumerator
HDluac.c631 case OP_TFORLOOP: in PrintCode()
HDlvm.c1774 lua_assert(GET_OPCODE(i) == OP_TFORLOOP && ra == RA(i)); in luaV_execute()
1777 vmcase(OP_TFORLOOP) { in luaV_execute()
HDlparser.c1535 static const OpCode forloop[2] = {OP_FORLOOP, OP_TFORLOOP}; in forbody()