1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2017-10-05 05:56:32 +08:00
|
|
|
** $Id: lopcodes.h,v 1.165 2017/10/04 15:49:24 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Opcodes for Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lopcodes_h
|
|
|
|
#define lopcodes_h
|
|
|
|
|
2000-03-25 03:49:23 +08:00
|
|
|
#include "llimits.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2000-02-15 00:51:08 +08:00
|
|
|
/*===========================================================================
|
2017-09-19 00:07:54 +08:00
|
|
|
We assume that instructions are unsigned 32-bit integers.
|
2017-10-03 06:51:32 +08:00
|
|
|
All instructions have an opcode in the first 7 bits.
|
2017-09-19 00:07:54 +08:00
|
|
|
Instructions can have the following formats:
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
2017-10-05 05:56:32 +08:00
|
|
|
iABC |k| C(8) | | B(8) | | A(8) | | Op(7) |
|
2017-10-03 06:51:32 +08:00
|
|
|
iABx | Bx(17) | | A(8) | | Op(7) |
|
|
|
|
iAsBx | sBx (signed)(17) | | A(8) | | Op(7) |
|
|
|
|
iAx | Ax(25) | | Op(7) |
|
2017-09-19 00:07:54 +08:00
|
|
|
|
|
|
|
A signed argument is represented in excess K: the represented value is
|
|
|
|
the written unsigned value minus K, where K is half the maximum for the
|
|
|
|
corresponding unsigned argument.
|
2000-02-15 00:51:08 +08:00
|
|
|
===========================================================================*/
|
1999-03-06 05:16:07 +08:00
|
|
|
|
2000-03-09 08:19:22 +08:00
|
|
|
|
2008-04-03 01:38:54 +08:00
|
|
|
enum OpMode {iABC, iABx, iAsBx, iAx}; /* basic instruction format */
|
2001-06-29 03:58:57 +08:00
|
|
|
|
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
/*
|
|
|
|
** size and position of opcode arguments.
|
|
|
|
*/
|
2017-10-05 05:56:32 +08:00
|
|
|
#define SIZE_C 8
|
|
|
|
#define SIZE_Cx (SIZE_C + 1)
|
2017-10-03 06:51:32 +08:00
|
|
|
#define SIZE_B 8
|
2017-10-05 05:56:32 +08:00
|
|
|
#define SIZE_Bx (SIZE_Cx + SIZE_B)
|
2001-06-06 02:17:01 +08:00
|
|
|
#define SIZE_A 8
|
2017-10-05 05:56:32 +08:00
|
|
|
#define SIZE_Ax (SIZE_Cx + SIZE_B + SIZE_A)
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2017-10-03 06:51:32 +08:00
|
|
|
#define SIZE_OP 7
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2004-08-05 04:18:13 +08:00
|
|
|
#define POS_OP 0
|
|
|
|
#define POS_A (POS_OP + SIZE_OP)
|
2017-10-05 05:56:32 +08:00
|
|
|
#define POS_B (POS_A + SIZE_A)
|
|
|
|
#define POS_C (POS_B + SIZE_B)
|
|
|
|
#define POS_k (POS_C + SIZE_C)
|
|
|
|
#define POS_Bx POS_B
|
2008-04-03 01:38:54 +08:00
|
|
|
#define POS_Ax POS_A
|
2001-06-06 02:17:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** limits for opcode arguments.
|
|
|
|
** we use (signed) int to manipulate most arguments,
|
2005-03-10 00:28:07 +08:00
|
|
|
** so they must fit in LUAI_BITSINT-1 bits (-1 for sign)
|
2001-06-06 02:17:01 +08:00
|
|
|
*/
|
2005-03-10 00:28:07 +08:00
|
|
|
#if SIZE_Bx < LUAI_BITSINT-1
|
2002-04-25 04:07:46 +08:00
|
|
|
#define MAXARG_Bx ((1<<SIZE_Bx)-1)
|
2014-10-25 19:50:46 +08:00
|
|
|
#define MAXARG_sBx (MAXARG_Bx>>1) /* 'sBx' is signed */
|
2001-06-06 02:17:01 +08:00
|
|
|
#else
|
2002-04-25 04:07:46 +08:00
|
|
|
#define MAXARG_Bx MAX_INT
|
|
|
|
#define MAXARG_sBx MAX_INT
|
2001-06-06 02:17:01 +08:00
|
|
|
#endif
|
|
|
|
|
2008-04-03 01:38:54 +08:00
|
|
|
#if SIZE_Ax < LUAI_BITSINT-1
|
|
|
|
#define MAXARG_Ax ((1<<SIZE_Ax)-1)
|
|
|
|
#else
|
|
|
|
#define MAXARG_Ax MAX_INT
|
|
|
|
#endif
|
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2017-10-05 05:56:32 +08:00
|
|
|
#define MAXARG_A ((1<<SIZE_A)-1)
|
|
|
|
#define MAXARG_B ((1<<SIZE_B)-1)
|
|
|
|
#define MAXARG_C ((1<<SIZE_C)-1)
|
|
|
|
#define MAXARG_sC (MAXARG_C >> 1)
|
|
|
|
#define MAXARG_Cx ((1<<(SIZE_C + 1))-1)
|
2000-04-05 04:48:44 +08:00
|
|
|
|
2000-03-09 08:19:22 +08:00
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
/* creates a mask with 'n' 1 bits at position 'p' */
|
2008-04-03 01:38:54 +08:00
|
|
|
#define MASK1(n,p) ((~((~(Instruction)0)<<(n)))<<(p))
|
2000-03-09 08:19:22 +08:00
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
/* creates a mask with 'n' 0 bits at position 'p' */
|
2000-03-09 08:19:22 +08:00
|
|
|
#define MASK0(n,p) (~MASK1(n,p))
|
2000-03-03 22:58:26 +08:00
|
|
|
|
2000-02-15 00:51:08 +08:00
|
|
|
/*
|
|
|
|
** the following macros help to manipulate instructions
|
|
|
|
*/
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2004-08-05 04:18:13 +08:00
|
|
|
#define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
|
|
|
|
#define SET_OPCODE(i,o) ((i) = (((i)&MASK0(SIZE_OP,POS_OP)) | \
|
|
|
|
((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
|
2000-04-05 04:48:44 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define checkopm(i,m) (getOpMode(GET_OPCODE(i)) == m)
|
|
|
|
|
|
|
|
|
2017-04-27 01:46:52 +08:00
|
|
|
#define getarg(i,pos,size) (cast(int, ((i)>>(pos)) & MASK1(size,0)))
|
2008-04-03 01:38:54 +08:00
|
|
|
#define setarg(i,v,pos,size) ((i) = (((i)&MASK0(size,pos)) | \
|
|
|
|
((cast(Instruction, v)<<pos)&MASK1(size,pos))))
|
|
|
|
|
|
|
|
#define GETARG_A(i) getarg(i, POS_A, SIZE_A)
|
|
|
|
#define SETARG_A(i,v) setarg(i, v, POS_A, SIZE_A)
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define GETARG_B(i) check_exp(checkopm(i, iABC), getarg(i, POS_B, SIZE_B))
|
2008-04-03 01:38:54 +08:00
|
|
|
#define SETARG_B(i,v) setarg(i, v, POS_B, SIZE_B)
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define GETARG_C(i) check_exp(checkopm(i, iABC), getarg(i, POS_C, SIZE_C))
|
2017-10-05 05:56:32 +08:00
|
|
|
#define GETARG_sC(i) (GETARG_C(i) - MAXARG_sC)
|
2008-04-03 01:38:54 +08:00
|
|
|
#define SETARG_C(i,v) setarg(i, v, POS_C, SIZE_C)
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2017-10-05 05:56:32 +08:00
|
|
|
#define GETARG_k(i) (cast(int, ((i) & (1 << POS_k))))
|
2017-05-09 00:08:01 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define GETARG_Bx(i) check_exp(checkopm(i, iABx), getarg(i, POS_Bx, SIZE_Bx))
|
2008-04-03 01:38:54 +08:00
|
|
|
#define SETARG_Bx(i,v) setarg(i, v, POS_Bx, SIZE_Bx)
|
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define GETARG_Ax(i) check_exp(checkopm(i, iAx), getarg(i, POS_Ax, SIZE_Ax))
|
2008-04-03 01:38:54 +08:00
|
|
|
#define SETARG_Ax(i,v) setarg(i, v, POS_Ax, SIZE_Ax)
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define GETARG_sBx(i) \
|
|
|
|
check_exp(checkopm(i, iAsBx), getarg(i, POS_Bx, SIZE_Bx) - MAXARG_sBx)
|
2002-04-25 04:07:46 +08:00
|
|
|
#define SETARG_sBx(i,b) SETARG_Bx((i),cast(unsigned int, (b)+MAXARG_sBx))
|
2001-06-06 02:17:01 +08:00
|
|
|
|
|
|
|
|
2017-10-05 05:56:32 +08:00
|
|
|
#define CREATE_ABCk(o,a,b,c,k) ((cast(Instruction, o)<<POS_OP) \
|
2001-09-01 03:46:07 +08:00
|
|
|
| (cast(Instruction, a)<<POS_A) \
|
|
|
|
| (cast(Instruction, b)<<POS_B) \
|
2017-10-05 05:56:32 +08:00
|
|
|
| (cast(Instruction, c)<<POS_C)) \
|
|
|
|
| (cast(Instruction, k)<<POS_k)
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2004-08-05 04:18:13 +08:00
|
|
|
#define CREATE_ABx(o,a,bc) ((cast(Instruction, o)<<POS_OP) \
|
2001-09-01 03:46:07 +08:00
|
|
|
| (cast(Instruction, a)<<POS_A) \
|
2002-04-25 04:07:46 +08:00
|
|
|
| (cast(Instruction, bc)<<POS_Bx))
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2008-04-03 01:38:54 +08:00
|
|
|
#define CREATE_Ax(o,a) ((cast(Instruction, o)<<POS_OP) \
|
2010-10-25 20:24:55 +08:00
|
|
|
| (cast(Instruction, a)<<POS_Ax))
|
2008-04-03 01:38:54 +08:00
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2016-07-20 01:12:21 +08:00
|
|
|
#if !defined(MAXINDEXRK) /* (for debugging only) */
|
2017-10-05 05:56:32 +08:00
|
|
|
#define MAXINDEXRK MAXARG_B
|
2016-07-20 01:12:21 +08:00
|
|
|
#endif
|
2004-06-30 02:49:02 +08:00
|
|
|
|
2000-04-05 04:48:44 +08:00
|
|
|
|
2000-02-22 21:31:43 +08:00
|
|
|
/*
|
2002-08-21 04:03:05 +08:00
|
|
|
** invalid register that fits in 8 bits
|
2001-06-06 02:17:01 +08:00
|
|
|
*/
|
|
|
|
#define NO_REG MAXARG_A
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** R(x) - register
|
2017-09-29 00:53:29 +08:00
|
|
|
** K(x) - constant (in constant table)
|
2017-10-05 05:56:32 +08:00
|
|
|
** RK(x) == if k(i) then K(x) else R(x)
|
2000-02-22 21:31:43 +08:00
|
|
|
*/
|
|
|
|
|
2002-08-22 02:56:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
** grep "ORDER OP" if you change these enums
|
|
|
|
*/
|
|
|
|
|
2000-02-15 00:51:08 +08:00
|
|
|
typedef enum {
|
2000-03-03 22:58:26 +08:00
|
|
|
/*----------------------------------------------------------------------
|
2001-06-06 02:17:01 +08:00
|
|
|
name args description
|
2000-03-03 22:58:26 +08:00
|
|
|
------------------------------------------------------------------------*/
|
2001-06-06 02:17:01 +08:00
|
|
|
OP_MOVE,/* A B R(A) := R(B) */
|
2017-04-21 03:53:55 +08:00
|
|
|
OP_LOADI,/* A sBx R(A) := sBx */
|
2017-09-20 02:38:14 +08:00
|
|
|
OP_LOADF,/* A sBx R(A) := (lua_Number)sBx */
|
2017-09-29 00:53:29 +08:00
|
|
|
OP_LOADK,/* A Bx R(A) := K(Bx) */
|
|
|
|
OP_LOADKX,/* A R(A) := K(extra arg) */
|
2003-05-16 03:46:03 +08:00
|
|
|
OP_LOADBOOL,/* A B C R(A) := (Bool)B; if (C) pc++ */
|
2011-04-20 00:22:13 +08:00
|
|
|
OP_LOADNIL,/* A B R(A), R(A+1), ..., R(A+B) := nil */
|
2001-09-08 01:39:10 +08:00
|
|
|
OP_GETUPVAL,/* A B R(A) := UpValue[B] */
|
2017-04-29 04:57:45 +08:00
|
|
|
OP_SETUPVAL,/* A B UpValue[B] := R(A) */
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2017-04-29 04:57:45 +08:00
|
|
|
OP_GETTABUP,/* A B C R(A) := UpValue[B][K(C):string] */
|
|
|
|
OP_GETTABLE,/* A B C R(A) := R(B)[R(C)] */
|
|
|
|
OP_GETI,/* A B C R(A) := R(B)[C] */
|
2017-09-29 00:53:29 +08:00
|
|
|
OP_GETFIELD,/* A B C R(A) := R(B)[K(C):string] */
|
1997-10-25 02:40:29 +08:00
|
|
|
|
2017-04-29 04:57:45 +08:00
|
|
|
OP_SETTABUP,/* A B C UpValue[A][K(B):string] := RK(C) */
|
|
|
|
OP_SETTABLE,/* A B C R(A)[R(B)] := RK(C) */
|
|
|
|
OP_SETI,/* A B C R(A)[B] := RK(C) */
|
|
|
|
OP_SETFIELD,/* A B C R(A)[K(B):string] := RK(C) */
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2001-10-26 03:14:14 +08:00
|
|
|
OP_NEWTABLE,/* A B C R(A) := {} (size = B,C) */
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2017-04-29 04:57:45 +08:00
|
|
|
OP_SELF,/* A B C R(A+1) := R(B); R(A) := R(B)[RK(C):string] */
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2017-10-05 05:56:32 +08:00
|
|
|
OP_ADDI,/* A B sC R(A) := R(B) + C */
|
|
|
|
OP_SUBI,/* A B sC R(A) := R(B) - C */
|
|
|
|
OP_MULI,/* A B sC R(A) := R(B) * C */
|
|
|
|
OP_MODI,/* A B sC R(A) := R(B) % C */
|
|
|
|
OP_POWI,/* A B sC R(A) := R(B) ^ C */
|
|
|
|
OP_DIVI,/* A B sC R(A) := R(B) / C */
|
|
|
|
OP_IDIVI,/* A B sC R(A) := R(B) // C */
|
2017-10-04 23:49:24 +08:00
|
|
|
|
2017-09-27 02:14:45 +08:00
|
|
|
OP_ADD,/* A B C R(A) := R(B) + R(C) */
|
|
|
|
OP_SUB,/* A B C R(A) := R(B) - R(C) */
|
|
|
|
OP_MUL,/* A B C R(A) := R(B) * R(C) */
|
|
|
|
OP_MOD,/* A B C R(A) := R(B) % R(C) */
|
|
|
|
OP_POW,/* A B C R(A) := R(B) ^ R(C) */
|
|
|
|
OP_DIV,/* A B C R(A) := R(B) / R(C) */
|
|
|
|
OP_IDIV,/* A B C R(A) := R(B) // R(C) */
|
|
|
|
OP_BAND,/* A B C R(A) := R(B) & R(C) */
|
|
|
|
OP_BOR,/* A B C R(A) := R(B) | R(C) */
|
|
|
|
OP_BXOR,/* A B C R(A) := R(B) ~ R(C) */
|
|
|
|
OP_SHL,/* A B C R(A) := R(B) << R(C) */
|
|
|
|
OP_SHR,/* A B C R(A) := R(B) >> R(C) */
|
2001-06-06 02:17:01 +08:00
|
|
|
OP_UNM,/* A B R(A) := -R(B) */
|
2013-12-31 04:47:58 +08:00
|
|
|
OP_BNOT,/* A B R(A) := ~R(B) */
|
2001-06-06 02:17:01 +08:00
|
|
|
OP_NOT,/* A B R(A) := not R(B) */
|
2005-05-20 23:53:42 +08:00
|
|
|
OP_LEN,/* A B R(A) := length of R(B) */
|
1997-09-23 04:53:20 +08:00
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */
|
1997-10-14 06:12:04 +08:00
|
|
|
|
2017-09-14 03:50:08 +08:00
|
|
|
OP_CLOSE,/* A close all upvalues >= R(A) */
|
|
|
|
OP_JMP,/* sBx pc+=sBx */
|
2017-09-27 02:14:45 +08:00
|
|
|
OP_EQ,/* A B C if ((R(B) == R(C)) ~= A) then pc++ */
|
|
|
|
OP_LT,/* A B C if ((R(B) < R(C)) ~= A) then pc++ */
|
|
|
|
OP_LE,/* A B C if ((R(B) <= R(C)) ~= A) then pc++ */
|
1997-10-06 22:51:11 +08:00
|
|
|
|
2006-09-11 22:07:24 +08:00
|
|
|
OP_TEST,/* A C if not (R(A) <=> C) then pc++ */
|
|
|
|
OP_TESTSET,/* A B C if (R(B) <=> C) then R(A) := R(B) else pc++ */
|
1997-10-14 06:12:04 +08:00
|
|
|
|
2002-03-09 03:10:32 +08:00
|
|
|
OP_CALL,/* A B C R(A), ... ,R(A+C-2) := R(A)(R(A+1), ... ,R(A+B-1)) */
|
2002-08-05 22:46:43 +08:00
|
|
|
OP_TAILCALL,/* A B C return R(A)(R(A+1), ... ,R(A+B-1)) */
|
2002-05-06 23:51:41 +08:00
|
|
|
OP_RETURN,/* A B return R(A), ... ,R(A+B-2) (see note) */
|
2000-03-09 21:57:37 +08:00
|
|
|
|
2017-08-15 02:33:14 +08:00
|
|
|
OP_FORLOOP,/* A Bx R(A)+=R(A+2);
|
|
|
|
if R(A) <?= R(A+1) then { pc-=Bx; R(A+3)=R(A) }*/
|
|
|
|
OP_FORPREP,/* A Bx R(A)-=R(A+2); pc+=Bx */
|
2002-03-09 03:10:32 +08:00
|
|
|
|
2008-10-30 23:39:30 +08:00
|
|
|
OP_TFORCALL,/* A C R(A+3), ... ,R(A+2+C) := R(A)(R(A+1), R(A+2)); */
|
2017-08-15 02:33:14 +08:00
|
|
|
OP_TFORLOOP,/* A Bx if R(A+1) ~= nil then { R(A)=R(A+1); pc -= Bx }*/
|
2010-10-14 00:45:54 +08:00
|
|
|
|
2004-10-05 03:01:53 +08:00
|
|
|
OP_SETLIST,/* A B C R(A)[(C-1)*FPF+i] := R(A+i), 1 <= i <= B */
|
1998-01-12 21:35:37 +08:00
|
|
|
|
2009-03-09 23:27:56 +08:00
|
|
|
OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */
|
2004-06-01 02:51:50 +08:00
|
|
|
|
2017-06-29 23:38:41 +08:00
|
|
|
OP_VARARG,/* A B C R(A), R(A+1), ..., R(A+B-2) = vararg(C) */
|
2008-04-03 01:38:54 +08:00
|
|
|
|
2009-09-24 04:33:05 +08:00
|
|
|
OP_EXTRAARG/* Ax extra (larger) argument for previous opcode */
|
1997-09-17 03:25:59 +08:00
|
|
|
} OpCode;
|
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
|
2008-04-03 01:38:54 +08:00
|
|
|
#define NUM_OPCODES (cast(int, OP_EXTRAARG) + 1)
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2000-03-09 21:57:37 +08:00
|
|
|
|
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
/*===========================================================================
|
|
|
|
Notes:
|
2014-10-25 19:50:46 +08:00
|
|
|
(*) In OP_CALL, if (B == 0) then B = top. If (C == 0), then 'top' is
|
2009-03-09 23:27:56 +08:00
|
|
|
set to last_result+1, so next open instruction (OP_CALL, OP_RETURN,
|
2014-10-25 19:50:46 +08:00
|
|
|
OP_SETLIST) may use 'top'.
|
2000-08-29 22:48:16 +08:00
|
|
|
|
2004-06-01 02:51:50 +08:00
|
|
|
(*) In OP_VARARG, if (B == 0) then use actual number of varargs and
|
2017-06-29 23:38:41 +08:00
|
|
|
set top (like in OP_CALL with C == 0). C is the vararg parameter.
|
2004-06-01 02:51:50 +08:00
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
(*) In OP_RETURN, if (B == 0) then return up to 'top'.
|
2000-08-29 22:48:16 +08:00
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
(*) In OP_SETLIST, if (B == 0) then B = 'top'; if (C == 0) then next
|
2009-09-24 04:33:05 +08:00
|
|
|
'instruction' is EXTRAARG(real C).
|
|
|
|
|
2011-04-08 02:14:12 +08:00
|
|
|
(*) In OP_LOADKX, the next 'instruction' is always EXTRAARG.
|
2004-10-05 03:01:53 +08:00
|
|
|
|
|
|
|
(*) For comparisons, A specifies what condition the test should accept
|
2009-03-09 23:27:56 +08:00
|
|
|
(true or false).
|
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
(*) All 'skips' (pc++) assume that next instruction is a jump.
|
2009-03-09 23:27:56 +08:00
|
|
|
|
2002-05-06 23:51:41 +08:00
|
|
|
===========================================================================*/
|
2000-08-29 22:48:16 +08:00
|
|
|
|
2001-06-29 03:58:57 +08:00
|
|
|
|
|
|
|
/*
|
2003-05-14 20:09:12 +08:00
|
|
|
** masks for instruction properties. The format is:
|
2017-09-29 00:53:29 +08:00
|
|
|
** bits 0-2: op mode
|
|
|
|
** bit 3: instruction set register A
|
|
|
|
** bit 4: operator is a test (next instruction must be a jump)
|
2006-09-11 22:07:24 +08:00
|
|
|
*/
|
2001-06-29 03:58:57 +08:00
|
|
|
|
2009-11-20 03:06:52 +08:00
|
|
|
LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
|
2001-06-29 03:58:57 +08:00
|
|
|
|
2017-09-29 00:53:29 +08:00
|
|
|
#define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 7))
|
|
|
|
#define testAMode(m) (luaP_opmodes[m] & (1 << 3))
|
|
|
|
#define testTMode(m) (luaP_opmodes[m] & (1 << 4))
|
|
|
|
|
|
|
|
#define opmode(t,a,m) (((t)<<4) | ((a)<<3) | (m))
|
2001-06-29 03:58:57 +08:00
|
|
|
|
|
|
|
|
2009-11-20 03:06:52 +08:00
|
|
|
LUAI_DDEC const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
|
2001-06-29 03:58:57 +08:00
|
|
|
|
2002-02-15 05:43:01 +08:00
|
|
|
|
|
|
|
/* number of list items to accumulate before a SETLIST instruction */
|
2004-10-05 03:07:42 +08:00
|
|
|
#define LFIELDS_PER_FLUSH 50
|
2002-02-15 05:43:01 +08:00
|
|
|
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#endif
|