Home
last modified time | relevance | path

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

/external/lua/src/
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 …]
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))
Dlcode.c406 lua_assert(getOpMode(o) == iABC); in luaK_codeABCk()