Lines Matching refs:OpCode
73 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
226 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
235 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
394 OpCode op = OP_GETTABUP; /* assume 't' is in an upvalue */ in luaK_dischargevars()
570 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP; in luaK_storevar()
712 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding()
728 static void codearith (FuncState *fs, OpCode op, in codearith()
750 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
850 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix()
854 codecomp(fs, cast(OpCode, op - OPR_EQ + OP_EQ), 1, e1, e2); in luaK_posfix()
858 codecomp(fs, cast(OpCode, op - OPR_NE + OP_EQ), 0, e1, e2); in luaK_posfix()