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