Lines Matching refs:OpCode
72 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
225 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
234 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
393 OpCode op = OP_GETTABUP; /* assume 't' is in an upvalue */ in luaK_dischargevars()
569 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP; in luaK_storevar()
711 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding()
727 static void codearith (FuncState *fs, OpCode op, in codearith()
749 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
849 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix()
853 codecomp(fs, cast(OpCode, op - OPR_EQ + OP_EQ), 1, e1, e2); in luaK_posfix()
857 codecomp(fs, cast(OpCode, op - OPR_NE + OP_EQ), 0, e1, e2); in luaK_posfix()