[3] | 1 | //Opcode.h
|
---|
| 2 |
|
---|
| 3 | //未定義の定数情報
|
---|
| 4 | #define IMAGE_FILE_MACHINE_AMD64 0x8664
|
---|
| 5 |
|
---|
| 6 |
|
---|
| 7 | //レジスタを示す定数
|
---|
| 8 | #define REG_EAX 0x00 //reg:000
|
---|
| 9 | #define REG_ECX 0x01 //reg:001
|
---|
| 10 | #define REG_EDX 0x02 //reg:010
|
---|
| 11 | #define REG_EBX 0x03 //reg:011
|
---|
| 12 | #define REG_ESP 0x04 //reg:100
|
---|
| 13 | #define REG_EBP 0x05 //reg:101
|
---|
| 14 | #define REG_ESI 0x06 //reg:110
|
---|
| 15 | #define REG_EDI 0x07 //reg:111
|
---|
| 16 |
|
---|
| 17 | #define REG_RAX REG_EAX
|
---|
| 18 | #define REG_RCX REG_ECX
|
---|
| 19 | #define REG_RDX REG_EDX
|
---|
| 20 | #define REG_RBX REG_EBX
|
---|
| 21 | #define REG_RSP REG_ESP
|
---|
| 22 | #define REG_RBP REG_EBP
|
---|
| 23 | #define REG_RSI REG_ESI
|
---|
| 24 | #define REG_RDI REG_EDI
|
---|
| 25 |
|
---|
| 26 | #define REGISTER_OPERAND(reg) (reg&0x07)
|
---|
| 27 |
|
---|
| 28 | //変数の種類
|
---|
| 29 | #define NON_VAR 0
|
---|
| 30 | #define VAR_GLOBAL 1 //Global Variable
|
---|
| 31 | #define VAR_LOCAL 2 //Local Variable
|
---|
| 32 | #define VAR_REFLOCAL 3 //Local Refference Variable
|
---|
| 33 | #define VAR_DIRECTMEM 4 //Direct memory
|
---|
| 34 |
|
---|
[49] | 35 |
|
---|
[3] | 36 | extern int cp;
|
---|
| 37 | extern int obp;
|
---|
| 38 | extern char *OpBuffer;
|
---|
| 39 |
|
---|
[49] | 40 | #define breakpoint OpBuffer[obp++]=(char)0xCC;
|
---|
| 41 |
|
---|
| 42 |
|
---|
[3] | 43 | //ラベルアドレス
|
---|
| 44 | struct LABEL{
|
---|
| 45 | char *pName;
|
---|
| 46 | int line;
|
---|
| 47 | DWORD address;
|
---|
| 48 | };
|
---|
| 49 |
|
---|
| 50 | //Goto未知ラベル
|
---|
| 51 | struct GOTOLABELSCHEDULE{
|
---|
| 52 | char *pName;
|
---|
| 53 | int line;
|
---|
| 54 | DWORD pos;
|
---|
| 55 | DWORD now_cp;
|
---|
| 56 | };
|
---|
| 57 |
|
---|
| 58 | //プロシージャの種類
|
---|
| 59 | #define PROC_DEFAULT 1 //ユーザー定義関数
|
---|
| 60 | #define PROC_DLL 2 //DLL関数
|
---|
| 61 | #define PROC_BUILTIN 3 //コンパイラ埋め込み型
|
---|
| 62 | #define PROC_PTR 4 //関数ポインタ
|
---|
| 63 |
|
---|
| 64 | //プロシージャ
|
---|
| 65 | struct PROCEDURE{
|
---|
| 66 | char name[255];
|
---|
| 67 | int address;
|
---|
| 68 | int types[MAX_PARMS];
|
---|
| 69 | _int8 ByVal[MAX_PARMS];
|
---|
| 70 | BOOL ReturnType;
|
---|
| 71 | };
|
---|
| 72 |
|
---|
| 73 | //With情報
|
---|
| 74 | struct WITHINFO{
|
---|
| 75 | char **ppName;
|
---|
| 76 | int *pWithCp;
|
---|
| 77 | int num;
|
---|
| 78 | };
|
---|
| 79 |
|
---|
| 80 |
|
---|
| 81 | //RSrcSection.cpp
|
---|
| 82 | char *GetRSrcSectionBuffer(int *pLen);
|
---|
| 83 |
|
---|
| 84 | //Compile.cpp
|
---|
| 85 | void ChangeOpcode(char *Command);
|
---|
| 86 | void GetGlobalDataForDll(void);
|
---|
| 87 | DWORD CompileBuffer(char Return_Sequence,WORD Return_Command);
|
---|
| 88 |
|
---|
| 89 | //Compile_Calc.cpp
|
---|
| 90 | void ChangeTypeToDouble_ToFpuReg(int OldType);
|
---|
| 91 | void ChangeTypeToDouble(int OldType);
|
---|
| 92 | void ChangeTypeToSingle(int OldType);
|
---|
| 93 | void ChangeTypeToInt64(int OldType);
|
---|
| 94 | void ChangeTypeToLong(int OldType);
|
---|
| 95 | void ChangeTypeToInteger(int OldType);
|
---|
| 96 | void ChangeTypeToByte(int OldType);
|
---|
| 97 | void OpcodeCalc(char *Command);
|
---|
[40] | 98 | void SetRefVariable( const char *varname, const char *expression );
|
---|
[3] | 99 |
|
---|
| 100 | //NumOpe.cpp
|
---|
| 101 | void PushReturnValue(int type);
|
---|
[40] | 102 | int NumOpe(const char *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap=0);
|
---|
[3] | 103 |
|
---|
| 104 | //NumOpe_Arithmetic.cpp
|
---|
| 105 | void GetStackData_ToRegister(int *type,int sp);
|
---|
| 106 | BOOL CalcTwoTerm_Arithmetic(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 107 | BOOL Calc_Mod(int *type,int *pStackPointer);
|
---|
| 108 | BOOL Calc_Divide(int *type,int *pStackPointer,int BaseType);
|
---|
| 109 | BOOL Calc_IntDivide(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 110 | BOOL Calc_MinusMark(int *type,int sp);
|
---|
| 111 | BOOL Calc_Power(int *type,int *pStackPointer);
|
---|
| 112 | BOOL Calc_Cast(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 113 | BOOL Calc_SHL(int *type,int *pStackPointer);
|
---|
| 114 | BOOL Calc_SHR(int *type,int *pStackPointer);
|
---|
| 115 |
|
---|
| 116 | //NumOpe_Logical.cpp
|
---|
| 117 | BOOL Calc_Xor(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 118 | BOOL Calc_Or(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 119 | BOOL Calc_And(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 120 | BOOL Calc_Not(int *type,int sp);
|
---|
| 121 |
|
---|
| 122 | //NumOpe_Relation.cpp
|
---|
| 123 | BOOL Calc_Relation_PE(int *type_stack,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 124 | BOOL Calc_Relation_QE(int *type_stack,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 125 | BOOL Calc_Relation_P(int *type_stack,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 126 | BOOL Calc_Relation_Q(int *type_stack,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 127 | BOOL Calc_Relation_NotEqual(int *type,int *pStackPointer);
|
---|
| 128 | BOOL Calc_Relation_Equal(int *type,int *pStackPointer);
|
---|
| 129 |
|
---|
| 130 | //NumOpe_TypeOperation.cpp
|
---|
| 131 | void ExtendStackTo64(int type);
|
---|
| 132 | void ChangeTypeToWhole(int OldType,int NewType);
|
---|
| 133 |
|
---|
| 134 | //Compile_Set_Var.cpp
|
---|
| 135 | BOOL IsUse_ecx(RELATIVE_VAR *pRelativeVar);
|
---|
| 136 | void SetObjectVariable(LONG_PTR lpVarIndex,int CalcType,LONG_PTR lpCalcIndex,BOOL bUseHeap);
|
---|
| 137 | void SetDoubleVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
| 138 | void SetSingleVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
| 139 | void SetInt64Variable(int type,RELATIVE_VAR *pRelative);
|
---|
| 140 | void SetDWordVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
| 141 | void SetLongVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
| 142 | void Set16Variable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
| 143 | void Set8Variable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset);
|
---|
[36] | 144 | void SetBooleanVariable(int type,RELATIVE_VAR *pRelative);
|
---|
[3] | 145 |
|
---|
| 146 | //increment.cpp
|
---|
| 147 | void IncDec(int idCalc, char *lpszLeft, char *lpszRight);
|
---|
| 148 |
|
---|
| 149 | //calc2.cpp
|
---|
| 150 | #define EXP_TYPE_NUMBER 1
|
---|
| 151 | #define EXP_TYPE_EAX 2
|
---|
| 152 | #define EXP_TYPE_FPU 3
|
---|
| 153 | #define EXP_TYPE_VAR 4
|
---|
| 154 | int NumOpEx(char *Command,double *pDbl,DWORD *pdwType,RELATIVE_VAR *pRelativeVar);
|
---|
| 155 |
|
---|
| 156 | //SetVar.cpp
|
---|
| 157 | BOOL SetVariable(DWORD dwVarType,RELATIVE_VAR *pVarRelativeVar,
|
---|
| 158 | DWORD dwExpType,DWORD dwType,void *data);
|
---|
| 159 |
|
---|
| 160 | //Compile_Calc_PushVar.cpp
|
---|
| 161 | void SetReg_RealVariable(int type,RELATIVE_VAR *pRelativeVar);
|
---|
| 162 | void SetReg_WholeVariable(int type,RELATIVE_VAR *pRelativeVar,int reg);
|
---|
| 163 | void PushDoubleVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 164 | void PushLongVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 165 | void PushIntegerVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 166 | void PushWordVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 167 | void PushCharVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 168 | void PushByteVariable(RELATIVE_VAR *pRelativeVar);
|
---|
| 169 |
|
---|
| 170 | //Compile_Object.cpp
|
---|
[40] | 171 | int Operator_New(const char *Parameter,LONG_PTR *plpIndex);
|
---|
[3] | 172 | void OpcodeDelete(char *Parameter);
|
---|
| 173 |
|
---|
| 174 | //Compile_Var.cpp
|
---|
| 175 | void GetWithName(char *buffer);
|
---|
| 176 | void SetThisPtrToReg(int reg);
|
---|
[40] | 177 | BOOL GetVarOffset(bool isErrorEnabled,bool isWriteAccess,const char *NameBuffer,int *pType,RELATIVE_VAR *pRelativeVar,LONG_PTR *plpIndex,int *pss=0);
|
---|
[3] | 178 | BOOL SetInitGlobalData(int offset,int type,LONG_PTR lpIndex,int *SubScripts,char *InitBuf);
|
---|
[8] | 179 | #define DIMFLAG_INITDEBUGVAR 1
|
---|
| 180 | #define DIMFLAG_NONCALL_CONSTRACTOR 2
|
---|
| 181 | #define DIMFLAG_STATIC 4
|
---|
| 182 | #define DIMFLAG_CONST 8
|
---|
[3] | 183 | void OpcodeDim(char *Parameter,DWORD dwFlag);
|
---|
| 184 | void SetVarPtrToEax(RELATIVE_VAR *pRelativeVar);
|
---|
| 185 |
|
---|
| 186 | //CParameter.cpp
|
---|
| 187 | #define OVERLOAD_LEVEL1 1
|
---|
| 188 | #define OVERLOAD_LEVEL2 2
|
---|
| 189 | #define OVERLOAD_LEVEL3 3
|
---|
| 190 | class CParameter{
|
---|
| 191 | char *Parms[255];
|
---|
| 192 | TYPEINFO types[255];
|
---|
| 193 | int ParmsNum;
|
---|
| 194 |
|
---|
| 195 | TYPEINFO ReturnTypeInfo;
|
---|
| 196 |
|
---|
[20] | 197 | //一時オブジェクト管理用
|
---|
| 198 | bool useTempObject;
|
---|
| 199 | bool useTempParameters[255];
|
---|
| 200 | int nCountOfTempObjects;
|
---|
| 201 |
|
---|
[3] | 202 | public:
|
---|
[50] | 203 | CParameter(const char *buffer);
|
---|
| 204 | CParameter(const PARAMETER_INFO *pParamInfo, const int ParmNum);
|
---|
[3] | 205 | ~CParameter();
|
---|
| 206 | void SetReturnType(TYPEINFO *pTypeInfo);
|
---|
| 207 |
|
---|
| 208 | private:
|
---|
| 209 | BOOL _overload_check(PARAMETER_INFO *ppi,int pi_num,TYPEINFO *pReturnTypeInfo,int overload_level);
|
---|
[50] | 210 | SUBINFO *OverloadSolutionWithReturnType( const char *name, std::vector<SUBINFO *> &subs );
|
---|
[3] | 211 | public:
|
---|
[50] | 212 | SUBINFO *OverloadSolution( const char *name, std::vector<SUBINFO *> &subs );
|
---|
[3] | 213 |
|
---|
[46] | 214 | BOOL ErrorCheck(const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum);
|
---|
[3] | 215 | void MacroParameterSupport(PARAMETER_INFO *ppi);
|
---|
| 216 | void SetObjectParameter(CClass *pobj_Class,LPSTR Parameter);
|
---|
[46] | 217 | int SetParameter(const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum);
|
---|
[20] | 218 |
|
---|
| 219 | //一時オブジェクトパラメータの生成と破棄
|
---|
[46] | 220 | void NewTempParameters( const char *FuncName,PARAMETER_INFO *ppi,int pi_num,int SecondParmNum );
|
---|
[20] | 221 | void DeleteTempParameters();
|
---|
[3] | 222 | };
|
---|
| 223 |
|
---|
| 224 | //Compile_CallProc.cpp
|
---|
| 225 | void AddLocalVarAddrSchedule();
|
---|
| 226 | #define PROCFLAG_NEW 1
|
---|
| 227 | int Opcode_CallProcPtr(char *variable,char *Parameter,PROCPTRINFO *pi,LONG_PTR *plpIndex);
|
---|
[31] | 228 | void Opcode_CallProc(char *Parameter,SUBINFO *psi,DWORD dwFlags,char *ObjectName,int RefType);
|
---|
[3] | 229 | int Opcode_CallDllProc(char *Parameter,DECLAREINFO *pdi,LONG_PTR *plpIndex);
|
---|
| 230 |
|
---|
| 231 | //Compile_ProcOp.cpp
|
---|
| 232 | void CompileLocal();
|
---|
| 233 |
|
---|
| 234 | //Compile_Func.cpp
|
---|
| 235 | int GetFunctionType(int FuncNum);
|
---|
| 236 | int GetFunctionFromName(char *FuncName);
|
---|
[46] | 237 | void Opcode_CallFunc( const char *Parameter, const int FuncNum, TYPEINFO &ReturnTypeInfo );
|
---|
[3] | 238 |
|
---|
| 239 | //OperatorProc.cpp
|
---|
| 240 | void FreeTempObject(int reg,CClass *pobj_c);
|
---|
| 241 | int CallOperatorProc(int idCalc,TYPEINFO *pBaseTypeInfo,int *type,LONG_PTR *index_stack,BOOL *bUseHeap,int &sp);
|
---|
| 242 | void CallCastOperatorProc(int &CalcType,LONG_PTR &lpCalcIndex,BOOL bCalcUseHeap,int ToType,LONG_PTR lpToIndex);
|
---|
[38] | 243 | void CallIndexerGetterProc(CClass *pobj_Class,char *ObjectName,char *Parameter,TYPEINFO &RetTypeInfo);
|
---|
[3] | 244 |
|
---|
| 245 | //Compile_Statement.cpp
|
---|
| 246 | void OpcodeOthers(char *Command);
|
---|
| 247 | void OpcodeIf(char *Parameter);
|
---|
| 248 | void OpcodeGoto(char *Parameter);
|
---|
| 249 | void OpcodeWhile(char *Parameter);
|
---|
| 250 | void OpcodeFor(char *Parameter);
|
---|
| 251 | void OpcodeDo(char *Parameter);
|
---|
| 252 | void OpcodeContinue(void);
|
---|
| 253 | void OpcodeExitSub(void);
|
---|
| 254 | void OpcodeSelect(char *Parameter);
|
---|
| 255 | void OpcodeCase(char *Parameter);
|
---|
| 256 | void OpcodeGosub(char *Parameter);
|
---|
| 257 | void OpcodeReturn(char *Parameter);
|
---|
| 258 | void Opcode_Input(char *Parameter);
|
---|
| 259 | void Opcode_Print(char *Parameter,BOOL bWrite);
|
---|
| 260 | void OpcodeCallPtr(char *Parameter);
|
---|
| 261 | void OpcodeSetPtrData(char *Parameter,int type);
|
---|
| 262 |
|
---|
| 263 |
|
---|
| 264 |
|
---|
| 265 |
|
---|
| 266 | ////////////////////////////////
|
---|
| 267 | // IA-32機械語生成に利用する関数郡
|
---|
| 268 | ////////////////////////////////
|
---|
| 269 |
|
---|
| 270 | //Mod(モード)
|
---|
| 271 | #define MOD_BASE (char)0x00
|
---|
| 272 | #define MOD_DISP32 (char)0xFF
|
---|
| 273 | #define MOD_BASE_DISP8 (char)0x40
|
---|
| 274 | #define MOD_BASE_DISP32 (char)0x80
|
---|
| 275 | #define MOD_REG (char)0xC0
|
---|
| 276 |
|
---|
| 277 | #define USE_OFFSET 1
|
---|
| 278 | #define NON_OFFSET 0
|
---|
| 279 |
|
---|
| 280 | //op32_main.cpp
|
---|
| 281 | BOOL IsSafeReg(int reg);
|
---|
| 282 | void op_mov_RV (int reg,int offset);
|
---|
| 283 | void op_mov_RV (int op_size,int reg,int offset);
|
---|
| 284 | void op_mov_RR (int reg1,int reg2);
|
---|
| 285 | void op_mov_RM (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
| 286 | void op_mov_RM_ex (int op_size,int reg,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
| 287 | void op_mov_MR (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
| 288 | void op_mov_MR_ex (int op_size,int reg,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
| 289 | void op_movsx_R32R16 (int reg32,int reg16);
|
---|
| 290 | void op_movsx_R32R8 (int reg32,int reg8);
|
---|
| 291 | void op_movsx_R16R8 (int reg16,int reg8);
|
---|
| 292 | void op_inc (int reg);
|
---|
| 293 | void op_dec (int reg);
|
---|
| 294 | void op_add_RV8 (int reg,char cValue);
|
---|
| 295 | void op_add_RM (int op_size,int reg,int base_reg,int offset,char mod);
|
---|
| 296 | void op_adc_RV8 (int reg,char cValue);
|
---|
| 297 | void op_sub_RV8 (int reg,char cValue);
|
---|
| 298 | void op_sbb_RV8 (int reg,char cValue);
|
---|
[36] | 299 | void op_sbb_RR ( int reg1, int reg2 );
|
---|
[3] | 300 | void op_and_RV (int reg,int value);
|
---|
[36] | 301 | void op_or_RR ( int op_size, int reg1, int reg2 );
|
---|
| 302 | void op_neg ( int reg );
|
---|
[3] | 303 | void op_cdq ();
|
---|
| 304 |
|
---|
| 305 | void op_rep_movs (int op_size);
|
---|
| 306 |
|
---|
| 307 | void op_push(int reg);
|
---|
| 308 | void op_push_value(long data);
|
---|
| 309 | void op_pop(int reg);
|
---|
| 310 | void op_add_esp(int num);
|
---|
| 311 | void op_sub_esp(int num);
|
---|
[36] | 312 | void op_cmp_value(int op_size,int reg,char byte_data);
|
---|
| 313 | void op_setne( int reg );
|
---|
[3] | 314 | void op_test(int reg1,int reg2);
|
---|
| 315 | void op_fld_ptr_esp(int type);
|
---|
| 316 | void op_fld_basereg (int type,int base_reg);
|
---|
| 317 | void op_fld_base_offset (int type,int base_reg,int offset);
|
---|
| 318 | void op_fld_base_offset_ex (int type,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
| 319 | void op_fstp_basereg (int type,int base_reg);
|
---|
| 320 | void op_fstp_base_offset (int type,int base_reg,int offset);
|
---|
| 321 | void op_fstp_base_offset_ex (int type,int base_reg1,int base_reg2,int offset,BOOL bUseOffset);
|
---|
| 322 | void op_zero_reg(int reg);
|
---|
| 323 | void fpu_cast();
|
---|
| 324 | void fpu_cast_end();
|
---|
| 325 |
|
---|
| 326 | void op_call(SUBINFO *psi);
|
---|