[206] | 1 | #pragma once
|
---|
[3] | 2 |
|
---|
[226] | 3 | #include "MachineFixed.h"
|
---|
[3] | 4 |
|
---|
[206] | 5 |
|
---|
[3] | 6 | //変数の種類
|
---|
[40] | 7 | #define NON_VAR 0
|
---|
[62] | 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 |
|
---|
[40] | 14 |
|
---|
[3] | 15 | extern int cp;
|
---|
| 16 |
|
---|
[255] | 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 |
|
---|
[309] | 37 | class StackFrame
|
---|
| 38 | {
|
---|
| 39 | ///////////////////////////
|
---|
| 40 | // スタックフレーム管理
|
---|
| 41 | ///////////////////////////
|
---|
| 42 |
|
---|
| 43 | PertialSchedules pertialSchedules;
|
---|
| 44 |
|
---|
| 45 | int lowest_sp; //スタックポインタの最下位位置
|
---|
| 46 | int now_sp; //スタックポインタ
|
---|
| 47 | int max_parm_size; //パラメータの最大サイズ
|
---|
| 48 |
|
---|
| 49 | public:
|
---|
| 50 | //コンストラクタ
|
---|
| 51 | StackFrame();
|
---|
| 52 |
|
---|
| 53 | //デストラクタ
|
---|
| 54 | ~StackFrame();
|
---|
| 55 |
|
---|
| 56 | int GetFrameSize( int localParamSize );
|
---|
| 57 | int GetNowSp();
|
---|
| 58 | void mov_sp( int reg );
|
---|
| 59 | int push(int reg);
|
---|
| 60 | void push(int xmm_reg,int varSize);
|
---|
| 61 | void ref_offset_data( int reg, int sp_offset );
|
---|
| 62 | void ref(int reg);
|
---|
| 63 | void ref(int xmm_reg,int varSize);
|
---|
| 64 | void pop(int reg = REG_NON);
|
---|
| 65 | void pop(int xmm_reg,int varSize);
|
---|
| 66 | void parameter_allocate(int size);
|
---|
| 67 | void RunningSchedule( int stackFrameSize );
|
---|
| 68 |
|
---|
| 69 | void error_check(void);
|
---|
| 70 | };
|
---|
[308] | 71 | extern StackFrame *pobj_sf;
|
---|
[3] | 72 |
|
---|
[263] | 73 |
|
---|
[3] | 74 | class CBlockReg{
|
---|
| 75 | int array_BlockReg[256];
|
---|
| 76 | int num;
|
---|
| 77 |
|
---|
| 78 | public:
|
---|
| 79 | CBlockReg();
|
---|
| 80 | void lock(int reg);
|
---|
| 81 | void unlock(int reg);
|
---|
| 82 | BOOL check(int reg);
|
---|
| 83 | void clear(void);
|
---|
| 84 |
|
---|
| 85 | //レジスタのバックアップと復旧
|
---|
| 86 | void backup();
|
---|
| 87 | void restore();
|
---|
| 88 | };
|
---|
| 89 | extern CBlockReg *pobj_BlockReg;
|
---|
| 90 | class CRegister{
|
---|
| 91 | ////////////////////
|
---|
| 92 | // レジスタ管理
|
---|
| 93 | ////////////////////
|
---|
| 94 |
|
---|
| 95 | //利用可能なレジスタを列挙する関数
|
---|
| 96 | void EnumRegister(int *pRegList,int nMaxList,int *array_reg,int *sp,int AnswerReg);
|
---|
| 97 |
|
---|
| 98 | int array_UseReg[16],sp_UseReg;
|
---|
| 99 |
|
---|
| 100 | int array_XmmReg[16];
|
---|
| 101 | int sp_XmmReg;
|
---|
| 102 |
|
---|
| 103 | int init_sp_reg,init_sp_xmm_reg;
|
---|
| 104 |
|
---|
| 105 | public:
|
---|
| 106 | CRegister(){};
|
---|
| 107 | CRegister(int AnswerReg);
|
---|
| 108 | ~CRegister(){};
|
---|
| 109 |
|
---|
| 110 | //コンパイラにバグがないかをチェックする機構
|
---|
| 111 | void bug_check();
|
---|
| 112 |
|
---|
| 113 | //汎用レジスタ
|
---|
| 114 | int GetNextReg();
|
---|
| 115 | int GetLockingReg();
|
---|
| 116 | int LockReg();
|
---|
| 117 | int UnlockReg();
|
---|
| 118 |
|
---|
| 119 | //XMMレジスタ
|
---|
| 120 | int GetNextXmmReg();
|
---|
| 121 | int GetLockingXmmReg();
|
---|
| 122 | int LockXmmReg();
|
---|
| 123 | int UnlockXmmReg();
|
---|
| 124 |
|
---|
[19] | 125 | //レジスタが利用中かどうかを調べる
|
---|
| 126 | bool IsUsing( int reg );
|
---|
| 127 |
|
---|
[3] | 128 | //レジスタのバックアップと復旧
|
---|
| 129 | void backup();
|
---|
| 130 | void restore();
|
---|
| 131 | };
|
---|
| 132 | extern CRegister *pobj_reg;
|
---|
| 133 |
|
---|
| 134 |
|
---|
| 135 | #define BACKUP_REGISTER_RESOURCE \
|
---|
| 136 | /* レジスタをスタックフレームにバックアップ */ \
|
---|
| 137 | pobj_BlockReg->backup(); \
|
---|
| 138 | if(pobj_reg) pobj_reg->backup(); \
|
---|
| 139 | \
|
---|
| 140 | /* レジスタブロッキングオブジェクトを退避して再生成 */ \
|
---|
| 141 | CBlockReg *pobj_BlockReg_back; \
|
---|
| 142 | pobj_BlockReg_back=pobj_BlockReg; \
|
---|
| 143 | pobj_BlockReg=new CBlockReg; \
|
---|
| 144 | \
|
---|
| 145 | /* レジスタ管理オブジェクトポインタを退避して0をセット */ \
|
---|
| 146 | CRegister *pobj_reg_back; \
|
---|
| 147 | pobj_reg_back=pobj_reg; \
|
---|
| 148 | pobj_reg=0;
|
---|
| 149 |
|
---|
| 150 | #define RESTORE_REGISTER_RESOURCE \
|
---|
| 151 | /* レジスタブロッキングオブジェクトポインタを復元 */ \
|
---|
| 152 | delete pobj_BlockReg; \
|
---|
| 153 | pobj_BlockReg=pobj_BlockReg_back; \
|
---|
| 154 | \
|
---|
| 155 | /* レジスタ管理オブジェクトポインタを復元 */ \
|
---|
| 156 | delete pobj_reg; \
|
---|
| 157 | pobj_reg=pobj_reg_back; \
|
---|
| 158 | \
|
---|
| 159 | /* レジスタをスタックフレームから復元 */ \
|
---|
| 160 | if(pobj_reg) pobj_reg->restore(); \
|
---|
| 161 | pobj_BlockReg->restore();
|
---|
| 162 |
|
---|
| 163 |
|
---|
| 164 |
|
---|
| 165 | //RSrcSection.cpp
|
---|
| 166 | char *GetRSrcSectionBuffer(int *pLen);
|
---|
| 167 |
|
---|
| 168 | //Compile.cpp
|
---|
[372] | 169 | void Compile( const char *source );
|
---|
[3] | 170 | void ChangeOpcode(char *Command);
|
---|
| 171 | void GetGlobalDataForDll(void);
|
---|
| 172 | DWORD CompileBuffer(char Return_Sequence,WORD Return_Command);
|
---|
| 173 |
|
---|
| 174 | //Register.cpp
|
---|
| 175 | BOOL IsGeneralReg(int reg);
|
---|
| 176 | BOOL IsXmmReg(int reg);
|
---|
| 177 | BOOL IsVolatileReg(int reg);
|
---|
[131] | 178 | void IfR14Push( int reg );
|
---|
[3] | 179 |
|
---|
| 180 | //Compile_Calc.cpp
|
---|
[308] | 181 | void SetVariableFromRax( const Type &varType, int CalcType,RELATIVE_VAR *pRelativeVar);
|
---|
[129] | 182 | void OpcodeCalc(const char *Command);
|
---|
[3] | 183 |
|
---|
| 184 | //NumOpe.cpp
|
---|
[416] | 185 | bool TermOpeOnlyVariable( const char *term, Type &resultType, RELATIVE_VAR &relativeVar, bool isWriteAccess );
|
---|
[128] | 186 | bool TermOpe(
|
---|
| 187 | const char *term,
|
---|
| 188 | const Type &baseType,
|
---|
| 189 | Type &resultType,
|
---|
| 190 | bool &isLiteral,
|
---|
[436] | 191 | bool &isNeedHeapFreeStructure,
|
---|
[128] | 192 | bool *pIsClassName = NULL,
|
---|
[416] | 193 | bool isProcedureCallOnly = false,
|
---|
| 194 | bool isWriteAccess = false );
|
---|
[75] | 195 | bool NumOpe( int *pReg,
|
---|
| 196 | const char *Command,
|
---|
| 197 | const Type &baseType,
|
---|
| 198 | Type &resultType,
|
---|
[436] | 199 | bool *pbIsNeedHeapFreeStructure = NULL );
|
---|
[3] | 200 |
|
---|
| 201 | //NumOpe_Arithmetic.cpp
|
---|
| 202 | BOOL CalcTwoTerm_Arithmetic(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 203 | BOOL Calc_Mod(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 204 | BOOL Calc_Divide(int *type,int *pStackPointer,int BaseType);
|
---|
| 205 | BOOL Calc_IntDivide(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 206 | BOOL Calc_MinusMark(int *type,int sp);
|
---|
| 207 | BOOL Calc_Power(int *type,int *pStackPointer);
|
---|
| 208 | BOOL Calc_Shift(int idCalc,int *type,int *pStackPointer);
|
---|
| 209 |
|
---|
| 210 | //NumOpe_Logical.cpp
|
---|
| 211 | BOOL CalcTwoTerm_Logical(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 212 | BOOL Calc_Not(int *type,int sp);
|
---|
| 213 |
|
---|
| 214 | //NumOpe_Relation.cpp
|
---|
| 215 | BOOL CalcTwoTerm_Relational(int idCalc,int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 216 |
|
---|
| 217 | //NumOpe_TypeOperation.cpp
|
---|
[308] | 218 | void ExtendTypeTo64( const Type &oldType, int reg );
|
---|
| 219 | void ExtendTypeTo32( const Type &oldType, int reg );
|
---|
| 220 | void ExtendTypeTo16( const Type &oldType, int reg );
|
---|
[3] | 221 | void ChangeTypeToXmm_Double(int type,int xmm_reg,int general_reg);
|
---|
| 222 | void ChangeTypeToXmm_Single(int type,int xmm_reg,int general_reg);
|
---|
[308] | 223 | void ChangeTypeToWhole( const Type &oldType, const Type &newType, int reg, int xmm_reg );
|
---|
[3] | 224 | void SetOneTermToReg_RealCalc(int TermType,int *pXmmReg);
|
---|
| 225 | void SetOneTermToReg_Whole64Calc(int TermType,int *pReg);
|
---|
| 226 | void SetOneTermToReg_Whole32Calc(int TermType,int *pReg);
|
---|
| 227 | void SetTowTermToReg_RealCalc(int AnswerType,int *type,int sp,int *pXmmReg1,int *pXmmReg2);
|
---|
| 228 | void SetTowTermToReg_Whole64Calc(int *type,int sp,int *pReg1,int *pReg2);
|
---|
| 229 | void SetTowTermToReg_Whole32Calc(int *type,int sp,int *pReg1,int *pReg2);
|
---|
| 230 | BOOL Calc_Cast(int *type,LONG_PTR *index_stack,int *pStackPointer);
|
---|
| 231 |
|
---|
| 232 | //Compile_Set_Var.cpp
|
---|
| 233 | BOOL IsUse_r11(RELATIVE_VAR *pRelativeVar);
|
---|
[75] | 234 | void SetStructVariableFromRax( const Type &varType, const Type &calcType, RELATIVE_VAR *pRelativeVar,BOOL bUseHeap);
|
---|
[64] | 235 | void SetRealVariable(int VarType, int CalcType, RELATIVE_VAR *pRelativeVar);
|
---|
[36] | 236 | void SetBooleanVariable(int type,RELATIVE_VAR *pRelative);
|
---|
[66] | 237 | void SetWholeVariable(int varSize,int type,RELATIVE_VAR *pRelative);
|
---|
[3] | 238 |
|
---|
| 239 | //increment.cpp
|
---|
[129] | 240 | void IncDec(int idCalc, const char *lpszLeft, const char *lpszRight);
|
---|
[3] | 241 |
|
---|
| 242 | //Compile_Calc_PushVar.cpp
|
---|
| 243 | void SetXmmReg_DoubleVariable(RELATIVE_VAR *pRelativeVar,int xmm_reg);
|
---|
| 244 | void SetXmmReg_SingleVariable(RELATIVE_VAR *pRelativeVar,int xmm_reg);
|
---|
[308] | 245 | void SetReg_WholeVariable( const Type &type, RELATIVE_VAR *pRelativeVar,int reg);
|
---|
[3] | 246 |
|
---|
| 247 | //Compile_Object.cpp
|
---|
[75] | 248 | void Operator_New( const CClass &classObj, const char *objectSizeStr, const char *parameter,const Type &baseTypeInfo );
|
---|
[64] | 249 | void OpcodeDelete(const char *Parameter, bool isSweeping);
|
---|
[3] | 250 |
|
---|
| 251 | //Compile_Var.cpp
|
---|
[316] | 252 | bool _member_offset(bool isErrorEnabled, bool isWriteAccess, const Type &classType, const char *member, RELATIVE_VAR *pRelativeVar, Type &resultType, BOOL bPrivateAccess);
|
---|
[3] | 253 | void SetThisPtrToReg(int reg);
|
---|
[206] | 254 | bool GetVarOffset(bool isErrorEnabled,bool isWriteAccess,const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType, Subscripts *pResultSubscripts = NULL );
|
---|
| 255 | bool SetInitGlobalData(int offset,const Type &type,const Subscripts &subscripts,const char *InitBuf);
|
---|
[40] | 256 | #define DIMFLAG_INITDEBUGVAR 0x01
|
---|
| 257 | #define DIMFLAG_NONCALL_CONSTRACTOR 0x02
|
---|
| 258 | #define DIMFLAG_STATIC 0x04
|
---|
| 259 | #define DIMFLAG_CONST 0x08
|
---|
[308] | 260 | void dim( char *VarName, const Subscripts &subscripts, const Type &type, const char *InitBuf,const char *ConstractParameter,DWORD dwFlags);
|
---|
[3] | 261 | void SetVarPtrToReg(int reg,RELATIVE_VAR *pRelativeVar);
|
---|
[95] | 262 | bool Compile_AddGlobalRootsForGc();
|
---|
[3] | 263 |
|
---|
[71] | 264 | //ParamImpl.cpp
|
---|
| 265 | class ParamImpl{
|
---|
[3] | 266 | char *Parms[255];
|
---|
[528] | 267 | std::vector<Type> types;
|
---|
[3] | 268 | int ParmsNum;
|
---|
| 269 |
|
---|
[316] | 270 | Type leftType;
|
---|
[75] | 271 | Type returnType;
|
---|
[3] | 272 |
|
---|
[20] | 273 | //一時オブジェクト管理用
|
---|
| 274 | bool useTempObject;
|
---|
| 275 | bool useTempParameters[255];
|
---|
[436] | 276 | bool isNeedFreeStructures[255];
|
---|
[20] | 277 | int StackOffsetOfTempObject[255];
|
---|
| 278 |
|
---|
[3] | 279 | public:
|
---|
[71] | 280 | ParamImpl(const char *buffer);
|
---|
[75] | 281 | ParamImpl(const Parameters ¶ms);
|
---|
[71] | 282 | ~ParamImpl();
|
---|
[316] | 283 | void SetLeftType( const Type &type )
|
---|
| 284 | {
|
---|
| 285 | this->leftType = type;
|
---|
| 286 | }
|
---|
[75] | 287 | void SetReturnType( const Type &returnType );
|
---|
[3] | 288 |
|
---|
| 289 | private:
|
---|
[425] | 290 | bool EvaluateOverloadScore( int level, const Parameters &targetParms, const Type &targetResultType, const Type &leftType, const UserProc &userProc, bool &isErrored );
|
---|
[140] | 291 |
|
---|
[3] | 292 | public:
|
---|
[425] | 293 | const UserProc *_OverloadSolution( const char *name, std::vector<const UserProc *> &subs, const Type &leftType, bool isEnabledReturnType );
|
---|
| 294 | const UserProc *OverloadSolution( const char *name, std::vector<const UserProc *> &subs, const Type &leftType, bool isEnabledReturnType = false );
|
---|
[3] | 295 |
|
---|
[77] | 296 | void ApplyDefaultParameters( const Parameters ¶ms );
|
---|
[528] | 297 | bool ErrorCheck( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 );
|
---|
[75] | 298 | void MacroParameterSupport( const Parameters ¶ms );
|
---|
| 299 | void SetStructParameter( int reg, const Type &baseType, const char *expression );
|
---|
[528] | 300 | void SetParameter( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
|
---|
[20] | 301 |
|
---|
| 302 | //一時オブジェクトパラメータの生成と破棄
|
---|
[528] | 303 | int NewTempParameters( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 );
|
---|
[20] | 304 | void DeleteTempParameters();
|
---|
| 305 |
|
---|
[3] | 306 | void BackupParameter(int pi_num);
|
---|
| 307 | void RestoreParameter(int pi_num);
|
---|
| 308 | };
|
---|
| 309 |
|
---|
| 310 | //CLockParameter.cpp
|
---|
| 311 | #define MAX_LOCKPARMS 255
|
---|
| 312 | class CDBLockParms{
|
---|
| 313 | public:
|
---|
| 314 | int array_LevelCount[MAX_LOCKPARMS];
|
---|
| 315 | CDBLockParms();
|
---|
| 316 | ~CDBLockParms();
|
---|
| 317 |
|
---|
| 318 | void lock(int level);
|
---|
| 319 | void unlock(int level);
|
---|
| 320 | };
|
---|
| 321 |
|
---|
| 322 | //Compile_CallProc.cpp
|
---|
| 323 | #define PROCFLAG_NEW 1
|
---|
[75] | 324 | bool Opcode_CallProcPtr(const char *variable, const char *lpszParms,ProcPointer *pProcPointer);
|
---|
[308] | 325 | bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName);
|
---|
[75] | 326 | bool Opcode_CallDllProc( const char *lpszParms,DllProc *pDllProc);
|
---|
[330] | 327 | void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params );
|
---|
[3] | 328 |
|
---|
| 329 | //Compile_ProcOp.cpp
|
---|
[316] | 330 | void _compile_proc(const UserProc *pUserProc);
|
---|
[3] | 331 |
|
---|
| 332 | //Compile_Func.cpp
|
---|
| 333 | int GetFunctionFromName(char *FuncName);
|
---|
[331] | 334 | bool Opcode_CallFunc( const char *Parameter, const int FuncNum, const Type &baseType, Type &resultType, bool isCallOn = true );
|
---|
[3] | 335 |
|
---|
| 336 | //OperatorProc.cpp
|
---|
[75] | 337 | void FreeTempObject(int reg,const CClass *pobj_c);
|
---|
[436] | 338 | int CallOperatorProc(BYTE idCalc, const Type &baseType, int *type_stack,LONG_PTR *index_stack,bool isNeedHeapFreeStructureStack[],int &sp);
|
---|
[75] | 339 | void CallCastOperatorProc(int reg,Type &calcType,BOOL bCalcUseHeap,const Type &toType);
|
---|
[339] | 340 | void CallIndexerGetterProc(int reg, const Type &classType, const char *ObjectName,char *Parameter,Type &resultType, DWORD dwProcFlags = 0 );
|
---|
[3] | 341 |
|
---|
| 342 | //Compile_Statement.cpp
|
---|
[129] | 343 | void OpcodeOthers(const char *Command);
|
---|
[3] | 344 | void OpcodeIf(char *Parameter);
|
---|
| 345 | void OpcodeGoto(char *Parameter);
|
---|
| 346 | void OpcodeWhile(char *Parameter);
|
---|
| 347 | void OpcodeFor(char *Parameter);
|
---|
[372] | 348 | void OpcodeForeach(const char *Parameter);
|
---|
[3] | 349 | void OpcodeDo(char *Parameter);
|
---|
| 350 | void OpcodeContinue(void);
|
---|
| 351 | void OpcodeExitSub(void);
|
---|
[75] | 352 | void OpcodeSelect( const char *Parameter );
|
---|
[3] | 353 | void OpcodeCase(char *Parameter);
|
---|
| 354 | void OpcodeGosub(char *Parameter);
|
---|
| 355 | void OpcodeReturn(char *Parameter);
|
---|
| 356 | void OpcodeSetPtrData(char *Parameter,int type);
|
---|
| 357 |
|
---|
| 358 |
|
---|
| 359 | //InsertOpcode.cpp
|
---|
| 360 | void InsertDimStatement_ToProcHead(char *lpszCommand);
|
---|
| 361 |
|
---|
| 362 |
|
---|
| 363 | BOOL IsSafeReg(int reg);
|
---|