Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dlopcodes.c20 opmode(0, 0, 0, 0, 1, iABC) /* OP_MOVE */
25 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADFALSE */
26 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LFALSESKIP */
27 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADTRUE */
28 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADNIL */
29 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETUPVAL */
30 ,opmode(0, 0, 0, 0, 0, iABC) /* OP_SETUPVAL */
31 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETTABUP */
32 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETTABLE */
33 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETI */
[all …]
H A Dlopcodes.h32 enum OpMode {iABC, iABx, iAsBx, iAx, isJ}; /* basic instruction formats */ enumerator
128 #define GETARG_B(i) check_exp(checkopm(i, iABC), getarg(i, POS_B, SIZE_B))
132 #define GETARG_C(i) check_exp(checkopm(i, iABC), getarg(i, POS_C, SIZE_C))
136 #define TESTARG_k(i) check_exp(checkopm(i, iABC), (cast_int(((i) & (1u << POS_k)))))
137 #define GETARG_k(i) check_exp(checkopm(i, iABC), getarg(i, POS_k, 1))
H A Dlcode.c398 lua_assert(getOpMode(o) == iABC); in luaK_codeABCk()
H A Dltests.c689 case iABC: in buildop()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlopcodes.c66 opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_MOVE */
69 ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_LOADBOOL */
70 ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_LOADNIL */
71 ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_GETUPVAL */
72 ,opmode(0, 1, OpArgU, OpArgK, iABC) /* OP_GETTABUP */
73 ,opmode(0, 1, OpArgR, OpArgK, iABC) /* OP_GETTABLE */
74 ,opmode(0, 0, OpArgK, OpArgK, iABC) /* OP_SETTABUP */
75 ,opmode(0, 0, OpArgU, OpArgN, iABC) /* OP_SETUPVAL */
76 ,opmode(0, 0, OpArgK, OpArgK, iABC) /* OP_SETTABLE */
77 ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_NEWTABLE */
[all …]
H A Dlopcodes.h32 enum OpMode {iABC, iABx, iAsBx, iAx}; /* basic instruction format */ enumerator
H A Dlcode.c229 lua_assert(getOpMode(o) == iABC); in luaK_codeABC()