lopcodes.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. /*
  2. ** $Id: lopcodes.h,v 1.192 2018/06/08 19:07:27 roberto Exp roberto $
  3. ** Opcodes for Lua virtual machine
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lopcodes_h
  7. #define lopcodes_h
  8. #include "llimits.h"
  9. /*===========================================================================
  10. We assume that instructions are unsigned 32-bit integers.
  11. All instructions have an opcode in the first 7 bits.
  12. Instructions can have the following formats:
  13. 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0
  14. 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  15. iABC C(8) | B(8) |k| A(8) | Op(7) |
  16. iABx Bx(17) | A(8) | Op(7) |
  17. iAsB sBx (signed)(17) | A(8) | Op(7) |
  18. iAx Ax(25) | Op(7) |
  19. isJ sJ(24) |m| Op(7) |
  20. A signed argument is represented in excess K: the represented value is
  21. the written unsigned value minus K, where K is half the maximum for the
  22. corresponding unsigned argument.
  23. ===========================================================================*/
  24. enum OpMode {iABC, iABx, iAsBx, iAx, isJ}; /* basic instruction formats */
  25. /*
  26. ** size and position of opcode arguments.
  27. */
  28. #define SIZE_C 8
  29. #define SIZE_B 8
  30. #define SIZE_Bx (SIZE_C + SIZE_B + 1)
  31. #define SIZE_A 8
  32. #define SIZE_Ax (SIZE_Bx + SIZE_A)
  33. #define SIZE_sJ (SIZE_Bx + SIZE_A - 1)
  34. #define SIZE_OP 7
  35. #define POS_OP 0
  36. #define POS_A (POS_OP + SIZE_OP)
  37. #define POS_k (POS_A + SIZE_A)
  38. #define POS_B (POS_k + 1)
  39. #define POS_C (POS_B + SIZE_B)
  40. #define POS_Bx POS_k
  41. #define POS_Ax POS_A
  42. #define POS_m POS_A
  43. #define POS_sJ (POS_A + 1)
  44. /*
  45. ** limits for opcode arguments.
  46. ** we use (signed) int to manipulate most arguments,
  47. ** so they must fit in LUAI_BITSINT-1 bits (-1 for sign)
  48. */
  49. #if SIZE_Bx < LUAI_BITSINT-1
  50. #define MAXARG_Bx ((1<<SIZE_Bx)-1)
  51. #else
  52. #define MAXARG_Bx MAX_INT
  53. #endif
  54. #define OFFSET_sBx (MAXARG_Bx>>1) /* 'sBx' is signed */
  55. #if SIZE_Ax < LUAI_BITSINT-1
  56. #define MAXARG_Ax ((1<<SIZE_Ax)-1)
  57. #else
  58. #define MAXARG_Ax MAX_INT
  59. #endif
  60. #if SIZE_sJ < LUAI_BITSINT-1
  61. #define MAXARG_sJ ((1 << SIZE_sJ) - 1)
  62. #else
  63. #define MAXARG_sJ MAX_INT
  64. #endif
  65. #define OFFSET_sJ (MAXARG_sJ >> 1)
  66. #define MAXARG_A ((1<<SIZE_A)-1)
  67. #define MAXARG_B ((1<<SIZE_B)-1)
  68. #define MAXARG_C ((1<<SIZE_C)-1)
  69. #define OFFSET_sC (MAXARG_C >> 1)
  70. #define MAXARG_Cx ((1<<(SIZE_C + 1))-1)
  71. /* creates a mask with 'n' 1 bits at position 'p' */
  72. #define MASK1(n,p) ((~((~(Instruction)0)<<(n)))<<(p))
  73. /* creates a mask with 'n' 0 bits at position 'p' */
  74. #define MASK0(n,p) (~MASK1(n,p))
  75. /*
  76. ** the following macros help to manipulate instructions
  77. */
  78. #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
  79. #define SET_OPCODE(i,o) ((i) = (((i)&MASK0(SIZE_OP,POS_OP)) | \
  80. ((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
  81. #define checkopm(i,m) (getOpMode(GET_OPCODE(i)) == m)
  82. #define getarg(i,pos,size) (cast_int(((i)>>(pos)) & MASK1(size,0)))
  83. #define setarg(i,v,pos,size) ((i) = (((i)&MASK0(size,pos)) | \
  84. ((cast(Instruction, v)<<pos)&MASK1(size,pos))))
  85. #define GETARG_A(i) getarg(i, POS_A, SIZE_A)
  86. #define SETARG_A(i,v) setarg(i, v, POS_A, SIZE_A)
  87. #define GETARG_B(i) check_exp(checkopm(i, iABC), getarg(i, POS_B, SIZE_B))
  88. #define GETARG_sB(i) (GETARG_B(i) - OFFSET_sC)
  89. #define SETARG_B(i,v) setarg(i, v, POS_B, SIZE_B)
  90. #define GETARG_C(i) check_exp(checkopm(i, iABC), getarg(i, POS_C, SIZE_C))
  91. #define GETARG_sC(i) (GETARG_C(i) - OFFSET_sC)
  92. #define SETARG_C(i,v) setarg(i, v, POS_C, SIZE_C)
  93. #define TESTARG_k(i) (cast_int(((i) & (1u << POS_k))))
  94. #define GETARG_k(i) check_exp(checkopm(i, iABC), getarg(i, POS_k, 1))
  95. #define SETARG_k(i,v) setarg(i, v, POS_k, 1)
  96. #define GETARG_Bx(i) check_exp(checkopm(i, iABx), getarg(i, POS_Bx, SIZE_Bx))
  97. #define SETARG_Bx(i,v) setarg(i, v, POS_Bx, SIZE_Bx)
  98. #define GETARG_Ax(i) check_exp(checkopm(i, iAx), getarg(i, POS_Ax, SIZE_Ax))
  99. #define SETARG_Ax(i,v) setarg(i, v, POS_Ax, SIZE_Ax)
  100. #define GETARG_sBx(i) \
  101. check_exp(checkopm(i, iAsBx), getarg(i, POS_Bx, SIZE_Bx) - OFFSET_sBx)
  102. #define SETARG_sBx(i,b) SETARG_Bx((i),cast_uint((b)+OFFSET_sBx))
  103. #define GETARG_sJ(i) \
  104. check_exp(checkopm(i, isJ), getarg(i, POS_sJ, SIZE_sJ) - OFFSET_sJ)
  105. #define SETARG_sJ(i,j) \
  106. setarg(i, cast_uint((j)+OFFSET_sJ), POS_sJ, SIZE_sJ)
  107. #define GETARG_m(i) check_exp(checkopm(i, isJ), getarg(i, POS_m, 1))
  108. #define SETARG_m(i,m) setarg(i, m, POS_m, 1)
  109. #define CREATE_ABCk(o,a,b,c,k) ((cast(Instruction, o)<<POS_OP) \
  110. | (cast(Instruction, a)<<POS_A) \
  111. | (cast(Instruction, b)<<POS_B) \
  112. | (cast(Instruction, c)<<POS_C) \
  113. | (cast(Instruction, k)<<POS_k))
  114. #define CREATE_ABx(o,a,bc) ((cast(Instruction, o)<<POS_OP) \
  115. | (cast(Instruction, a)<<POS_A) \
  116. | (cast(Instruction, bc)<<POS_Bx))
  117. #define CREATE_Ax(o,a) ((cast(Instruction, o)<<POS_OP) \
  118. | (cast(Instruction, a)<<POS_Ax))
  119. #define CREATE_sJ(o,j,k) ((cast(Instruction, o) << POS_OP) \
  120. | (cast(Instruction, j) << POS_sJ) \
  121. | (cast(Instruction, k) << POS_k))
  122. #if !defined(MAXINDEXRK) /* (for debugging only) */
  123. #define MAXINDEXRK MAXARG_B
  124. #endif
  125. /*
  126. ** invalid register that fits in 8 bits
  127. */
  128. #define NO_REG MAXARG_A
  129. /*
  130. ** R(x) - register
  131. ** K(x) - constant (in constant table)
  132. ** RK(x) == if k(i) then K(x) else R(x)
  133. */
  134. /*
  135. ** grep "ORDER OP" if you change these enums
  136. */
  137. typedef enum {
  138. /*----------------------------------------------------------------------
  139. name args description
  140. ------------------------------------------------------------------------*/
  141. OP_MOVE,/* A B R(A) := R(B) */
  142. OP_LOADI,/* A sBx R(A) := sBx */
  143. OP_LOADF,/* A sBx R(A) := (lua_Number)sBx */
  144. OP_LOADK,/* A Bx R(A) := K(Bx) */
  145. OP_LOADKX,/* A R(A) := K(extra arg) */
  146. OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) pc++ */
  147. OP_LOADNIL,/* A B R(A), R(A+1), ..., R(A+B) := nil */
  148. OP_GETUPVAL,/* A B R(A) := UpValue[B] */
  149. OP_SETUPVAL,/* A B UpValue[B] := R(A) */
  150. OP_GETTABUP,/* A B C R(A) := UpValue[B][K(C):string] */
  151. OP_GETTABLE,/* A B C R(A) := R(B)[R(C)] */
  152. OP_GETI,/* A B C R(A) := R(B)[C] */
  153. OP_GETFIELD,/* A B C R(A) := R(B)[K(C):string] */
  154. OP_SETTABUP,/* A B C UpValue[A][K(B):string] := RK(C) */
  155. OP_SETTABLE,/* A B C R(A)[R(B)] := RK(C) */
  156. OP_SETI,/* A B C R(A)[B] := RK(C) */
  157. OP_SETFIELD,/* A B C R(A)[K(B):string] := RK(C) */
  158. OP_NEWTABLE,/* A B C R(A) := {} (size = B,C) */
  159. OP_SELF,/* A B C R(A+1) := R(B); R(A) := R(B)[RK(C):string] */
  160. OP_ADDI,/* A B sC R(A) := R(B) + C */
  161. OP_SUBI,/* A B sC R(A) := R(B) - C */
  162. OP_MULI,/* A B sC R(A) := R(B) * C */
  163. OP_MODI,/* A B sC R(A) := R(B) % C */
  164. OP_POWI,/* A B sC R(A) := R(B) ^ C */
  165. OP_DIVI,/* A B sC R(A) := R(B) / C */
  166. OP_IDIVI,/* A B sC R(A) := R(B) // C */
  167. OP_BANDK,/* A B C R(A) := R(B) & K(C):integer */
  168. OP_BORK,/* A B C R(A) := R(B) | K(C):integer */
  169. OP_BXORK,/* A B C R(A) := R(B) ~ K(C):integer */
  170. OP_SHRI,/* A B C R(A) := R(B) >> C */
  171. OP_SHLI,/* A B C R(A) := C << R(B) */
  172. OP_ADD,/* A B C R(A) := R(B) + R(C) */
  173. OP_SUB,/* A B C R(A) := R(B) - R(C) */
  174. OP_MUL,/* A B C R(A) := R(B) * R(C) */
  175. OP_MOD,/* A B C R(A) := R(B) % R(C) */
  176. OP_POW,/* A B C R(A) := R(B) ^ R(C) */
  177. OP_DIV,/* A B C R(A) := R(B) / R(C) */
  178. OP_IDIV,/* A B C R(A) := R(B) // R(C) */
  179. OP_BAND,/* A B C R(A) := R(B) & R(C) */
  180. OP_BOR,/* A B C R(A) := R(B) | R(C) */
  181. OP_BXOR,/* A B C R(A) := R(B) ~ R(C) */
  182. OP_SHL,/* A B C R(A) := R(B) << R(C) */
  183. OP_SHR,/* A B C R(A) := R(B) >> R(C) */
  184. OP_UNM,/* A B R(A) := -R(B) */
  185. OP_BNOT,/* A B R(A) := ~R(B) */
  186. OP_NOT,/* A B R(A) := not R(B) */
  187. OP_LEN,/* A B R(A) := length of R(B) */
  188. OP_CONCAT,/* A B R(A) := R(A).. ... ..R(A + B - 1) */
  189. OP_CLOSE,/* A close all upvalues >= R(A) */
  190. OP_JMP,/* k sJ pc += sJ (k is used in code generation) */
  191. OP_EQ,/* A B if ((R(A) == R(B)) ~= k) then pc++ */
  192. OP_LT,/* A B if ((R(A) < R(B)) ~= k) then pc++ */
  193. OP_LE,/* A B if ((R(A) <= R(B)) ~= k) then pc++ */
  194. OP_EQK,/* A B if ((R(A) == K(B)) ~= k) then pc++ */
  195. OP_EQI,/* A sB if ((R(A) == sB) ~= k) then pc++ */
  196. OP_LTI,/* A sB if ((R(A) < sB) ~= k) then pc++ */
  197. OP_LEI,/* A sB if ((R(A) <= sB) ~= k) then pc++ */
  198. OP_GTI,/* A sB if ((R(A) > sB) ~= k) then pc++ */
  199. OP_GEI,/* A sB if ((R(A) >= sB) ~= k) then pc++ */
  200. OP_TEST,/* A if (not R(A) == k) then pc++ */
  201. OP_TESTSET,/* A B if (not R(B) == k) then R(A) := R(B) else pc++ */
  202. OP_CALL,/* A B C R(A), ... ,R(A+C-2) := R(A)(R(A+1), ... ,R(A+B-1)) */
  203. OP_TAILCALL,/* A B C return R(A)(R(A+1), ... ,R(A+B-1)) */
  204. OP_RETURN,/* A B C return R(A), ... ,R(A+B-2) (see note) */
  205. OP_RETURN0,/* return */
  206. OP_RETURN1,/* A return R(A) */
  207. OP_FORLOOP1,/* A Bx R(A)++;
  208. if R(A) <= R(A+1) then { pc-=Bx; R(A+3)=R(A) } */
  209. OP_FORPREP1,/* A Bx R(A)--; pc+=Bx */
  210. OP_FORLOOP,/* A Bx R(A)+=R(A+2);
  211. if R(A) <?= R(A+1) then { pc-=Bx; R(A+3)=R(A) } */
  212. OP_FORPREP,/* A Bx R(A)-=R(A+2); pc+=Bx */
  213. OP_TFORCALL,/* A C R(A+3), ... ,R(A+2+C) := R(A)(R(A+1), R(A+2)); */
  214. OP_TFORLOOP,/* A Bx if R(A+1) ~= nil then { R(A)=R(A+1); pc -= Bx } */
  215. OP_SETLIST,/* A B C R(A)[(C-1)*FPF+i] := R(A+i), 1 <= i <= B */
  216. OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */
  217. OP_VARARG,/* A C R(A), R(A+1), ..., R(A+C-2) = vararg */
  218. OP_PREPVARARG,/*A (adjust vararg parameters) */
  219. OP_EXTRAARG/* Ax extra (larger) argument for previous opcode */
  220. } OpCode;
  221. #define NUM_OPCODES (cast_int(OP_EXTRAARG) + 1)
  222. /*===========================================================================
  223. Notes:
  224. (*) In OP_CALL, if (B == 0) then B = top. If (C == 0), then 'top' is
  225. set to last_result+1, so next open instruction (OP_CALL, OP_RETURN*,
  226. OP_SETLIST) may use 'top'.
  227. (*) In OP_VARARG, if (C == 0) then use actual number of varargs and
  228. set top (like in OP_CALL with C == 0).
  229. (*) In OP_RETURN, if (B == 0) then return up to 'top'.
  230. (*) In OP_SETLIST, if (B == 0) then real B = 'top'; if (C == 0) then
  231. next 'instruction' is EXTRAARG(real C).
  232. (*) In OP_LOADKX, the next 'instruction' is always EXTRAARG.
  233. (*) For comparisons, k specifies what condition the test should accept
  234. (true or false).
  235. (*) All 'skips' (pc++) assume that next instruction is a jump.
  236. (*) In instructions OP_RETURN/OP_TAILCALL, 'k' specifies that the
  237. function either builds upvalues, which may need to be closed, or is
  238. vararg, which must be corrected before returning. When 'k' is true,
  239. C > 0 means the function is vararg and (C - 1) is its number of
  240. fixed parameters.
  241. ===========================================================================*/
  242. /*
  243. ** masks for instruction properties. The format is:
  244. ** bits 0-2: op mode
  245. ** bit 3: instruction set register A
  246. ** bit 4: operator is a test (next instruction must be a jump)
  247. ** bit 5: instruction uses 'L->top' set by previous instruction (when B == 0)
  248. ** bit 6: instruction sets 'L->top' for next instruction (when C == 0)
  249. */
  250. LUAI_DDEC(const lu_byte luaP_opmodes[NUM_OPCODES];)
  251. #define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 7))
  252. #define testAMode(m) (luaP_opmodes[m] & (1 << 3))
  253. #define testTMode(m) (luaP_opmodes[m] & (1 << 4))
  254. #define testITMode(m) (luaP_opmodes[m] & (1 << 5))
  255. #define testOTMode(m) (luaP_opmodes[m] & (1 << 6))
  256. /* "out top" (set top for next instruction) */
  257. #define isOT(i) \
  258. ((testOTMode(GET_OPCODE(i)) && GETARG_C(i) == 0) || \
  259. GET_OPCODE(i) == OP_TAILCALL)
  260. /* "in top" (uses top from previous instruction) */
  261. #define isIT(i) (testITMode(GET_OPCODE(i)) && GETARG_B(i) == 0)
  262. #define opmode(ot,it,t,a,m) (((ot)<<6) | ((it)<<5) | ((t)<<4) | ((a)<<3) | (m))
  263. LUAI_DDEC(const char *const luaP_opnames[NUM_OPCODES+1];) /* opcode names */
  264. /* number of list items to accumulate before a SETLIST instruction */
  265. #define LFIELDS_PER_FLUSH 50
  266. #endif