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