mirror of https://github.com/rusefi/lua.git
otimizacao do codigo para construtores.
This commit is contained in:
parent
ad1ebdc4f4
commit
2c9d30f9b0
8
opcode.h
8
opcode.h
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
** TeCGraf - PUC-Rio
|
** TeCGraf - PUC-Rio
|
||||||
** $Id: opcode.h,v 1.1 1993/12/17 18:41:19 celes Exp roberto $
|
** $Id: opcode.h,v 1.2 1993/12/22 21:15:16 roberto Exp roberto $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef opcode_h
|
#ifndef opcode_h
|
||||||
|
@ -14,6 +14,8 @@
|
||||||
#define real float
|
#define real float
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define FIELDS_PER_FLUSH 40
|
||||||
|
|
||||||
typedef unsigned char Byte;
|
typedef unsigned char Byte;
|
||||||
|
|
||||||
typedef unsigned short Word;
|
typedef unsigned short Word;
|
||||||
|
@ -40,7 +42,9 @@ typedef enum
|
||||||
STOREGLOBAL,
|
STOREGLOBAL,
|
||||||
STOREINDEXED0,
|
STOREINDEXED0,
|
||||||
STOREINDEXED,
|
STOREINDEXED,
|
||||||
STOREFIELD,
|
STORELIST0,
|
||||||
|
STORELIST,
|
||||||
|
STORERECORD,
|
||||||
ADJUST,
|
ADJUST,
|
||||||
CREATEARRAY,
|
CREATEARRAY,
|
||||||
EQOP,
|
EQOP,
|
||||||
|
|
Loading…
Reference in New Issue