5 #define MAX_FUNC_STACKSIZE 0xFF 6 #define MAX_LITERALS ((SQInteger)0x7FFFFFFF) 31 enum AppendArrayType {
76 _OP_APPENDARRAY= 0x22,
94 _OP_POSTFOREACH= 0x34,
111 SQInstruction() : _arg1(0), op(0), _arg0(0), _arg2(0), _arg3(0){}
112 SQInstruction(SQOpcode _op,SQInteger a0=0,SQInteger a1=0,SQInteger a2=0,SQInteger a3=0)
113 { op = (
unsigned char)_op;
114 _arg0 = (
unsigned char)a0;_arg1 = (SQInt32)a1;
115 _arg2 = (
unsigned char)a2;_arg3 = (
unsigned char)a3;
129 #define NEW_SLOT_ATTRIBUTES_FLAG 0x01 130 #define NEW_SLOT_STATIC_FLAG 0x02 132 #endif // _SQOPCODES_H_
Definition: sqopcodes.h:109
Definition: sqopcodes.h:105