Searched refs:iABC (Results 1 – 3 of 3) sorted by relevance
/external/lua/src/ |
D | lopcodes.c | 20 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 …]
|
D | lopcodes.h | 32 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))
|
D | lcode.c | 406 lua_assert(getOpMode(o) == iABC); in luaK_codeABCk()
|