[206] | 1 | #pragma once |
---|
[3] | 2 | |
---|
[225] | 3 | #include "MachineFixed.h" |
---|
[206] | 4 | |
---|
| 5 | |
---|
[3] | 6 | //変数の種類 |
---|
[62] | 7 | #define NON_VAR 0 |
---|
| 8 | #define VAR_GLOBAL 1 // Global Variable |
---|
| 9 | #define VAR_REFGLOBAL 2 // Global Refference Variable |
---|
| 10 | #define VAR_LOCAL 3 // Local Variable |
---|
| 11 | #define VAR_REFLOCAL 4 // Local Refference Variable |
---|
| 12 | #define VAR_DIRECTMEM 5 // Direct memory |
---|
[3] | 13 | |
---|
[49] | 14 | |
---|
[3] | 15 | extern int cp; |
---|
| 16 | |
---|
[253] | 17 | #define breakpoint compiler.codeGenerator.PutOld( (char)0xCC ); |
---|
[49] | 18 | |
---|
| 19 | |
---|
[3] | 20 | //プロシージャ |
---|
| 21 | struct PROCEDURE{ |
---|
| 22 | char name[255]; |
---|
| 23 | int address; |
---|
| 24 | int types[MAX_PARMS]; |
---|
| 25 | _int8 ByVal[MAX_PARMS]; |
---|
| 26 | BOOL ReturnType; |
---|
| 27 | }; |
---|
| 28 | |
---|
| 29 | //With情報 |
---|
| 30 | struct WITHINFO{ |
---|
| 31 | char **ppName; |
---|
| 32 | int *pWithCp; |
---|
| 33 | int num; |
---|
| 34 | }; |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | //RSrcSection.cpp |
---|
| 38 | char *GetRSrcSectionBuffer(int *pLen); |
---|
| 39 | |
---|
| 40 | //Compile.cpp |
---|
[372] | 41 | void Compile( const char *source ); |
---|
[3] | 42 | void ChangeOpcode(char *Command); |
---|
| 43 | void GetGlobalDataForDll(void); |
---|
| 44 | DWORD CompileBuffer(char Return_Sequence,WORD Return_Command); |
---|
| 45 | |
---|
| 46 | //Compile_Calc.cpp |
---|
| 47 | void ChangeTypeToDouble_ToFpuReg(int OldType); |
---|
| 48 | void ChangeTypeToDouble(int OldType); |
---|
| 49 | void ChangeTypeToSingle(int OldType); |
---|
| 50 | void ChangeTypeToInt64(int OldType); |
---|
| 51 | void ChangeTypeToLong(int OldType); |
---|
| 52 | void ChangeTypeToInteger(int OldType); |
---|
| 53 | void ChangeTypeToByte(int OldType); |
---|
[290] | 54 | void SetVariableFromEax( const Type &varType, int CalcType,RELATIVE_VAR *pRelativeVar); |
---|
[129] | 55 | void OpcodeCalc( const char *Command ); |
---|
[3] | 56 | |
---|
| 57 | //NumOpe.cpp |
---|
[673] | 58 | void PushReturnValue( const Type &type ); |
---|
[415] | 59 | bool TermOpeOnlyVariable( const char *term, Type &resultType, RELATIVE_VAR &relativeVar, bool isWriteAccess ); |
---|
[128] | 60 | bool TermOpe( |
---|
| 61 | const char *term, |
---|
| 62 | const Type &baseType, |
---|
| 63 | Type &resultType, |
---|
| 64 | bool &isLiteral, |
---|
[435] | 65 | bool &isNeedHeapFreeStructure, |
---|
[128] | 66 | bool *pIsClassName = NULL, |
---|
[415] | 67 | bool isProcedureCallOnly = false, |
---|
| 68 | bool isWriteAccess = false ); |
---|
[97] | 69 | bool NumOpe( int reg, |
---|
| 70 | const char *expression, |
---|
| 71 | const Type &baseType, |
---|
| 72 | Type &resultType, |
---|
[436] | 73 | bool *pbIsNeedHeapFreeStructure = NULL ); |
---|
[75] | 74 | bool NumOpe( const char *Command, |
---|
| 75 | const Type &baseType, |
---|
| 76 | Type &resultType, |
---|
[436] | 77 | bool *pbIsNeedHeapFreeStructure = NULL ); |
---|
[3] | 78 | |
---|
| 79 | //NumOpe_Arithmetic.cpp |
---|
| 80 | void GetStackData_ToRegister(int *type,int sp); |
---|
| 81 | BOOL CalcTwoTerm_Arithmetic(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 82 | BOOL Calc_Mod(int *type,int *pStackPointer); |
---|
| 83 | BOOL Calc_Divide(int *type,int *pStackPointer,int BaseType); |
---|
| 84 | BOOL Calc_IntDivide(int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 85 | BOOL Calc_MinusMark(int *type,int sp); |
---|
| 86 | BOOL Calc_Power(int *type,int *pStackPointer); |
---|
| 87 | BOOL Calc_Cast(int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 88 | BOOL Calc_SHL(int *type,int *pStackPointer); |
---|
| 89 | BOOL Calc_SHR(int *type,int *pStackPointer); |
---|
| 90 | |
---|
| 91 | //NumOpe_Logical.cpp |
---|
| 92 | BOOL Calc_Xor(int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 93 | BOOL Calc_Or(int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 94 | BOOL Calc_And(int *type,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 95 | BOOL Calc_Not(int *type,int sp); |
---|
| 96 | |
---|
| 97 | //NumOpe_Relation.cpp |
---|
| 98 | BOOL Calc_Relation_PE(int *type_stack,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 99 | BOOL Calc_Relation_QE(int *type_stack,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 100 | BOOL Calc_Relation_P(int *type_stack,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 101 | BOOL Calc_Relation_Q(int *type_stack,LONG_PTR *index_stack,int *pStackPointer); |
---|
| 102 | BOOL Calc_Relation_NotEqual(int *type,int *pStackPointer); |
---|
| 103 | BOOL Calc_Relation_Equal(int *type,int *pStackPointer); |
---|
| 104 | |
---|
| 105 | //NumOpe_TypeOperation.cpp |
---|
[290] | 106 | void ExtendStackTo64( const Type &oldType ); |
---|
| 107 | void ChangeTypeToWhole( const Type &oldType, const Type &newType ); |
---|
[3] | 108 | |
---|
| 109 | //Compile_Set_Var.cpp |
---|
| 110 | BOOL IsUse_ecx(RELATIVE_VAR *pRelativeVar); |
---|
[75] | 111 | void SetStructVariable( const Type &varType, const Type &calcType, BOOL bUseHeap); |
---|
[64] | 112 | void SetRealVariable(int VarType, int CalcType, RELATIVE_VAR *pRelativeVar); |
---|
[66] | 113 | void SetWholeVariable( int varSize,int calcType, RELATIVE_VAR *pRelative ); |
---|
[64] | 114 | |
---|
[3] | 115 | void SetDoubleVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
| 116 | void SetSingleVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
| 117 | void SetInt64Variable(int type,RELATIVE_VAR *pRelative); |
---|
| 118 | void SetDWordVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
| 119 | void SetLongVariable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
| 120 | void Set16Variable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
| 121 | void Set8Variable(int type,DWORD VarKind,DWORD offset,BOOL bOffsetOffset); |
---|
[36] | 122 | void SetBooleanVariable(int type,RELATIVE_VAR *pRelative); |
---|
[97] | 123 | void ExtendTypeTo64(int type); |
---|
| 124 | void ExtendTypeTo32(int type,int reg); |
---|
| 125 | void ExtendTypeTo16(int type,int reg); |
---|
[3] | 126 | |
---|
| 127 | //increment.cpp |
---|
[129] | 128 | void IncDec(int idCalc, const char *lpszLeft, const char *lpszRight); |
---|
[3] | 129 | |
---|
| 130 | //calc2.cpp |
---|
| 131 | #define EXP_TYPE_NUMBER 1 |
---|
| 132 | #define EXP_TYPE_EAX 2 |
---|
| 133 | #define EXP_TYPE_FPU 3 |
---|
| 134 | #define EXP_TYPE_VAR 4 |
---|
| 135 | int NumOpEx(char *Command,double *pDbl,DWORD *pdwType,RELATIVE_VAR *pRelativeVar); |
---|
| 136 | |
---|
| 137 | //SetVar.cpp |
---|
| 138 | BOOL SetVariable(DWORD dwVarType,RELATIVE_VAR *pVarRelativeVar, |
---|
| 139 | DWORD dwExpType,DWORD dwType,void *data); |
---|
| 140 | |
---|
| 141 | //Compile_Calc_PushVar.cpp |
---|
| 142 | void SetReg_RealVariable(int type,RELATIVE_VAR *pRelativeVar); |
---|
[308] | 143 | void SetReg_WholeVariable( const Type &type, RELATIVE_VAR *pRelativeVar,int reg, bool is64Head = false); |
---|
[3] | 144 | void PushLongVariable(RELATIVE_VAR *pRelativeVar); |
---|
| 145 | |
---|
| 146 | //Compile_Object.cpp |
---|
[75] | 147 | void Operator_New( const CClass &classObj, const char *objectSizeStr, const char *parameter, const Type &baseType ); |
---|
[64] | 148 | void OpcodeDelete(const char *Parameter, bool isSweeping); |
---|
[3] | 149 | |
---|
| 150 | //Compile_Var.cpp |
---|
[66] | 151 | void SetRelativeOffset( RELATIVE_VAR &relativeVar ); |
---|
[290] | 152 | bool _member_offset(bool isErrorEnabled, bool isWriteAccess, const Type &classType, const char *member, RELATIVE_VAR *pRelativeVar, Type &resultType, BOOL bPrivateAccess); |
---|
[3] | 153 | void SetThisPtrToReg(int reg); |
---|
[206] | 154 | bool GetVarOffset(bool isErrorEnabled,bool isWriteAccess,const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType, Subscripts *pResultSubscripts = NULL ); |
---|
| 155 | bool SetInitGlobalData(int offset,const Type &type,const Subscripts &subscripts,const char *InitBuf); |
---|
[8] | 156 | #define DIMFLAG_INITDEBUGVAR 1 |
---|
| 157 | #define DIMFLAG_NONCALL_CONSTRACTOR 2 |
---|
| 158 | #define DIMFLAG_STATIC 4 |
---|
| 159 | #define DIMFLAG_CONST 8 |
---|
[299] | 160 | void dim( char *VarName, const Subscripts &subscripts, const Type &type, const char *InitBuf,const char *ConstractParameter,DWORD dwFlags); |
---|
[3] | 161 | void SetVarPtrToEax(RELATIVE_VAR *pRelativeVar); |
---|
[97] | 162 | void SetVarPtrToReg(int reg,RELATIVE_VAR *pRelativeVar); |
---|
[95] | 163 | bool Compile_AddGlobalRootsForGc(); |
---|
[3] | 164 | |
---|
[71] | 165 | //ParamImpl.cpp |
---|
| 166 | class ParamImpl{ |
---|
[3] | 167 | char *Parms[255]; |
---|
[376] | 168 | Types types; |
---|
[3] | 169 | int ParmsNum; |
---|
| 170 | |
---|
[292] | 171 | Type leftType; |
---|
[76] | 172 | Type returnType; |
---|
[3] | 173 | |
---|
[20] | 174 | //一時オブジェクト管理用 |
---|
| 175 | bool useTempObject; |
---|
| 176 | bool useTempParameters[255]; |
---|
[436] | 177 | bool isNeedFreeStructures[255]; |
---|
[20] | 178 | int nCountOfTempObjects; |
---|
| 179 | |
---|
[3] | 180 | public: |
---|
[71] | 181 | ParamImpl(const char *buffer); |
---|
[75] | 182 | ParamImpl(const Parameters ¶ms); |
---|
[71] | 183 | ~ParamImpl(); |
---|
[292] | 184 | void SetLeftType( const Type &type ) |
---|
| 185 | { |
---|
| 186 | this->leftType = type; |
---|
| 187 | } |
---|
[75] | 188 | void SetReturnType( const Type &returnType ); |
---|
[3] | 189 | |
---|
| 190 | private: |
---|
[424] | 191 | bool EvaluateOverloadScore( int level, const Parameters &targetParms, const Type &targetResultType, const Type &leftType, const UserProc &userProc, bool &isErrored ); |
---|
[3] | 192 | public: |
---|
[424] | 193 | const UserProc *_OverloadSolution( const char *name, std::vector<const UserProc *> &subs, const Type &leftType, bool isEnabledReturnType ); |
---|
| 194 | const UserProc *OverloadSolution( const char *name, std::vector<const UserProc *> &subs, const Type &leftType, bool isEnabledReturnType = false ); |
---|
[3] | 195 | |
---|
[77] | 196 | void ApplyDefaultParameters( const Parameters ¶ms ); |
---|
[523] | 197 | bool ErrorCheck( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 ); |
---|
[73] | 198 | void MacroParameterSupport( const Parameters ¶ms ); |
---|
[76] | 199 | void SetStructParameter( const Type &baseType, const char *expression ); |
---|
[523] | 200 | int SetParameter( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1, const UserProc *pUserProc = NULL ); |
---|
[20] | 201 | |
---|
| 202 | //一時オブジェクトパラメータの生成と破棄 |
---|
[523] | 203 | int NewTempParameters( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 ); |
---|
[20] | 204 | void DeleteTempParameters(); |
---|
[3] | 205 | }; |
---|
| 206 | |
---|
| 207 | //Compile_CallProc.cpp |
---|
| 208 | #define PROCFLAG_NEW 1 |
---|
[76] | 209 | bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer); |
---|
[290] | 210 | bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName ); |
---|
[250] | 211 | bool Opcode_CallDllProc( const char *lpszParms, const DllProc *pDllProc ); |
---|
[325] | 212 | void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params ); |
---|
[3] | 213 | |
---|
| 214 | //Compile_ProcOp.cpp |
---|
[316] | 215 | void _compile_proc(const UserProc *pUserProc); |
---|
[3] | 216 | |
---|
| 217 | //Compile_Func.cpp |
---|
| 218 | int GetFunctionFromName(char *FuncName); |
---|
[331] | 219 | bool Opcode_CallFunc( const char *Parameter, const int FuncNum, const Type &baseType, Type &resultType, bool isCallOn = true ); |
---|
[3] | 220 | |
---|
| 221 | //OperatorProc.cpp |
---|
[76] | 222 | void FreeTempObject(int reg,const CClass *pobj_c); |
---|
[435] | 223 | int CallOperatorProc(int idCalc, const Type &baseType, int *type_stack, LONG_PTR *index_stack,bool isNeedHeapFreeStructureStack[],int &sp); |
---|
[75] | 224 | void CallCastOperatorProc(Type &calcType,BOOL bCalcUseHeap,const Type &toType); |
---|
[334] | 225 | void CallIndexerGetterProc( const Type &classType, const char *ObjectName, char *Parameter,Type &resultType, DWORD dwProcFlags = 0 ); |
---|
[3] | 226 | |
---|
| 227 | //Compile_Statement.cpp |
---|
[129] | 228 | void OpcodeOthers( const char *Command ); |
---|
[3] | 229 | void OpcodeIf(char *Parameter); |
---|
| 230 | void OpcodeGoto(char *Parameter); |
---|
| 231 | void OpcodeWhile(char *Parameter); |
---|
| 232 | void OpcodeFor(char *Parameter); |
---|
[372] | 233 | void OpcodeForeach( const char *Parameter ); |
---|
[3] | 234 | void OpcodeDo(char *Parameter); |
---|
| 235 | void OpcodeContinue(void); |
---|
| 236 | void OpcodeExitSub(void); |
---|
[76] | 237 | void OpcodeSelect(const char *lpszParms); |
---|
[3] | 238 | void OpcodeCase(char *Parameter); |
---|
| 239 | void OpcodeGosub(char *Parameter); |
---|
| 240 | void OpcodeReturn(char *Parameter); |
---|
| 241 | void OpcodeSetPtrData(char *Parameter,int type); |
---|
| 242 | |
---|
| 243 | |
---|
| 244 | |
---|
| 245 | |
---|
| 246 | //op32_main.cpp |
---|
| 247 | BOOL IsSafeReg(int reg); |
---|