lua/lopcodes.h

163 lines
5.1 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2000-04-05 00:48:44 +04:00
** $Id: lopcodes.h,v 1.53 2000/03/27 14:31:12 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Opcodes for Lua virtual machine
** See Copyright Notice in lua.h
*/
#ifndef lopcodes_h
#define lopcodes_h
2000-03-24 22:49:23 +03:00
#include "llimits.h"
1997-09-16 23:25:59 +04:00
2000-02-14 19:51:08 +03:00
/*===========================================================================
2000-03-24 20:26:08 +03:00
We assume that instructions are unsigned numbers.
All instructions have an opcode in the first 6 bits. Moreover,
2000-04-05 00:48:44 +04:00
an instruction can have 0, 1, or 2 arguments. Instructions can
have the following types:
2000-02-14 19:51:08 +03:00
type 0: no arguments
2000-03-24 20:26:08 +03:00
type 1: 1 unsigned argument in the higher bits (called `U')
type 2: 1 signed argument in the higher bits (`S')
type 3: 1st unsigned argument in the higher bits (`A')
2nd unsigned argument in the middle bits (`B')
2000-04-05 00:48:44 +04:00
A signed argument is represented in excess K; that is, the number
value is the unsigned value minus K. K is exactly the maximum value
for that argument (so that -max is represented by 0, and +max is
represented by 2*max), which is half the maximum for the corresponding
unsigned argument.
2000-03-24 20:26:08 +03:00
2000-03-24 22:49:23 +03:00
The size of each argument is defined in `llimits.h'. The usual is an
2000-04-05 00:48:44 +04:00
instruction with 32 bits, U arguments with 26 bits (32-6), B arguments
with 9 bits, and A arguments with 17 bits (32-6-9). For small
instalations, the instruction size can be 16, so U has 10 bits,
2000-03-24 20:26:08 +03:00
and A and B have 5 bits each.
2000-02-14 19:51:08 +03:00
===========================================================================*/
1999-03-06 00:16:07 +03:00
2000-03-09 03:19:22 +03:00
2000-04-05 00:48:44 +04:00
#define MAXARG_sA (MAXARG_A>>1) /* max value for a signed A */
2000-03-09 03:19:22 +03:00
/* creates a mask with `n' 1 bits at position `p' */
#define MASK1(n,p) ((~((~(Instruction)0)<<n))<<p)
2000-03-09 03:19:22 +03:00
/* creates a mask with `n' 0 bits at position `p' */
#define MASK0(n,p) (~MASK1(n,p))
2000-03-03 17:58:26 +03:00
2000-02-14 19:51:08 +03:00
/*
** the following macros help to manipulate instructions
*/
1997-09-16 23:25:59 +04:00
2000-04-05 00:48:44 +04:00
#define CREATE_0(o) ((Instruction)(o))
2000-03-09 03:19:22 +03:00
#define GET_OPCODE(i) ((OpCode)((i)&MASK1(SIZE_OP,0)))
#define SET_OPCODE(i,o) ((i) = (((i)&MASK0(SIZE_OP,0)) | (Instruction)(o)))
2000-04-05 00:48:44 +04:00
#define CREATE_U(o,u) ((Instruction)(o) | (Instruction)(u)<<POS_U)
#define GETARG_U(i) ((int)((i)>>POS_U))
#define SETARG_U(i,u) ((i) = (((i)&MASK0(SIZE_U,POS_U)) | \
((Instruction)(u)<<POS_U)))
2000-04-05 00:48:44 +04:00
#define CREATE_S(o,s) CREATE_U((o),(s)+MAXARG_S)
#define GETARG_S(i) (GETARG_U(i)-MAXARG_S)
#define SETARG_S(i,s) SETARG_U((i),(s)+MAXARG_S)
#define CREATE_AB(o,a,b) ((Instruction)(o) | ((Instruction)(a)<<POS_A) \
| ((Instruction)(b)<<POS_B))
#define GETARG_A(i) ((int)((i)>>POS_A))
#define SETARG_A(i,a) ((i) = (((i)&MASK0(SIZE_A,POS_A)) | \
((Instruction)(a)<<POS_A)))
2000-04-05 00:48:44 +04:00
#define GETARG_B(i) ((int)(((i)>>POS_B) & MASK1(SIZE_B,0)))
#define SETARG_B(i,b) ((i) = (((i)&MASK0(SIZE_B,POS_B)) | \
((Instruction)(b)<<POS_B)))
2000-04-05 00:48:44 +04:00
#define CREATE_sAB(o,a,b) (CREATE_AB((o),(a)+MAXARG_sA,(b)))
#define GETARG_sA(i) (GETARG_A(i)-MAXARG_sA)
2000-02-22 16:31:43 +03:00
/*
** K = U argument used as index to `kstr'
** J = S argument used as jump offset (relative to pc of next instruction)
2000-03-02 15:32:53 +03:00
** L = U argument used as index of local variable
** N = U argument used as index to `knum'
2000-02-22 16:31:43 +03:00
*/
2000-02-14 19:51:08 +03:00
typedef enum {
2000-03-03 17:58:26 +03:00
/*----------------------------------------------------------------------
name args stack before stack after side effects
------------------------------------------------------------------------*/
2000-03-10 21:37:44 +03:00
OP_END,/* - - (return) */
OP_RETURN,/* U - (return) */
2000-03-10 21:37:44 +03:00
OP_CALL,/* A B v_n-v_1 f(at a) r_b-r_1 f(v1,...,v_n) */
2000-03-13 23:37:16 +03:00
OP_TAILCALL,/* A B v_n-v_1 f(at a) (return) f(v1,...,v_n) */
2000-03-10 21:37:44 +03:00
OP_PUSHNIL,/* U - nil_1-nil_u */
OP_POP,/* U a_u-a_1 - */
2000-03-10 21:37:44 +03:00
OP_PUSHINT,/* S - (Number)s */
OP_PUSHSTRING,/* K - KSTR[k] */
OP_PUSHNUM,/* N - KNUM[u] */
OP_PUSHNEGNUM,/* N - -KNUM[u] */
2000-03-10 21:37:44 +03:00
OP_PUSHUPVALUE,/* U - Closure[u] */
2000-03-10 21:37:44 +03:00
OP_PUSHLOCAL,/* L - LOC[u] */
OP_GETGLOBAL,/* K - VAR[KSTR[k]] */
1997-09-16 23:25:59 +04:00
2000-03-10 21:37:44 +03:00
OP_GETTABLE,/* - i t t[i] */
OP_GETDOTTED,/* K t t[KSTR[k]] */
OP_PUSHSELF,/* K t t t[KSTR[k]] */
2000-03-10 21:37:44 +03:00
OP_CREATETABLE,/* U - newarray(size = u) */
2000-03-10 21:37:44 +03:00
OP_SETLOCAL,/* L x - LOC[u]=x */
OP_SETGLOBAL,/* K x - VAR[KSTR[k]]=x */
OP_SETTABLEPOP,/* - v i t - t[i]=v */
OP_SETTABLE,/* U v a_u-a_1 i t a_u-a_1 i t t[i]=v */
2000-03-10 21:37:44 +03:00
OP_SETLIST,/* A B v_b-v_0 t t t[i+a*FPF]=v_i */
OP_SETMAP,/* U v_u k_u - v_0 k_0 t t t[k_i]=v_i */
1997-09-16 23:25:59 +04:00
2000-04-05 00:48:44 +04:00
OP_INCLOCAL,/* sA B - - LOC[B]+=sA */
2000-03-10 21:37:44 +03:00
OP_ADD,/* - y x x+y */
OP_ADDI,/* S x x+s */
OP_SUB,/* - y x x-y */
OP_MULT,/* - y x x*y */
OP_DIV,/* - y x x/y */
OP_POW,/* - y x x^y */
OP_CONC,/* U v_u-v_1 v1..-..v_u */
OP_MINUS,/* - x -x */
OP_NOT,/* - x (x==nil)? 1 : nil */
1997-10-06 18:51:11 +04:00
2000-04-05 00:48:44 +04:00
OP_JMPNEQ,/* J y x - (x~=y)? PC+=s */
OP_JMPEQ,/* J y x - (x==y)? PC+=s */
OP_JMPLT,/* J y x - (x<y)? PC+=s */
OP_JMPLE,/* J y x - (x<y)? PC+=s */
OP_JMPGT,/* J y x - (x>y)? PC+=s */
OP_JMPGE,/* J y x - (x>=y)? PC+=s */
OP_JMPT,/* J x - (x!=nil)? PC+=s */
OP_JMPF,/* J x - (x==nil)? PC+=s */
OP_JMPONT,/* J x (x!=nil)? x : - (x!=nil)? PC+=s */
OP_JMPONF,/* J x (x==nil)? x : - (x==nil)? PC+=s */
2000-03-10 21:37:44 +03:00
OP_JMP,/* J - - PC+=s */
2000-03-10 21:37:44 +03:00
OP_PUSHNILJMP,/* - - nil PC++; */
2000-03-28 00:08:33 +04:00
OP_CLOSURE,/* A B v_b-v_1 closure(KPROTO[a], v_1-v_b) */
2000-03-10 21:37:44 +03:00
OP_SETLINE/* U - - LINE=u */
1998-01-12 16:35:37 +03:00
1997-09-16 23:25:59 +04:00
} OpCode;
2000-04-05 00:48:44 +04:00
#define ISJUMP(o) (OP_JMPNEQ <= (o) && (o) <= OP_JMP)
1997-09-16 23:25:59 +04:00
#endif