Lines Matching refs:OpCode
75 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
228 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
237 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
396 OpCode op = OP_GETTABUP; /* assume 't' is in an upvalue */ in luaK_dischargevars()
572 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP; in luaK_storevar()
714 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding()
730 static void codearith (FuncState *fs, OpCode op, in codearith()
752 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
852 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix()
856 codecomp(fs, cast(OpCode, op - OPR_EQ + OP_EQ), 1, e1, e2); in luaK_posfix()
860 codecomp(fs, cast(OpCode, op - OPR_NE + OP_EQ), 0, e1, e2); in luaK_posfix()