Lines Matching refs:OpCode
97 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
250 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
259 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
427 OpCode op = OP_GETTABUP; /* assume 't' is in an upvalue */ in luaK_dischargevars()
617 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP; in luaK_storevar()
822 static void codeexpval (FuncState *fs, OpCode op,
853 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1,
874 codeexpval(fs, cast(OpCode, (op - OPR_MINUS) + OP_UNM), e, &e2, line);
958 codeexpval(fs, cast(OpCode, (op - OPR_ADD) + OP_ADD), e1, e2, line);
962 codecomp(fs, cast(OpCode, (op - OPR_EQ) + OP_EQ), 1, e1, e2);
966 codecomp(fs, cast(OpCode, (op - OPR_NE) + OP_EQ), 0, e1, e2);