Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/lua/src/
H A Dlopcodes.c20 opmode(0, 0, 0, 0, 1, iABC) /* OP_MOVE */
33 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETI */
37 ,opmode(0, 0, 0, 0, 0, iABC) /* OP_SETI */
40 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SELF */
41 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_ADDI */
54 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_ADD */
55 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SUB */
56 ,opmode(0, 0, 0, 0, 1, iABC) /* OP_MUL */
77 ,opmode(0, 0, 0, 1, 0, iABC) /* OP_EQ */
78 ,opmode(0, 0, 0, 1, 0, iABC) /* OP_LT */
[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-14.2/sys/contrib/openzfs/module/lua/
H A Dlopcodes.c66 opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_MOVE */
79 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_ADD */
80 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_SUB */
81 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MUL */
82 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_DIV */
83 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MOD */
84 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_POW */
85 ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_UNM */
90 ,opmode(1, 0, OpArgK, OpArgK, iABC) /* OP_EQ */
91 ,opmode(1, 0, OpArgK, OpArgK, iABC) /* OP_LT */
[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()