1 | #pragma once
|
---|
2 |
|
---|
3 | #include "MachineFixed.h"
|
---|
4 |
|
---|
5 |
|
---|
6 | //変数の種類
|
---|
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
|
---|
13 |
|
---|
14 |
|
---|
15 | extern int cp;
|
---|
16 |
|
---|
17 | #define breakpoint compiler.codeGenerator.PutOld( (char)0xCC );
|
---|
18 |
|
---|
19 |
|
---|
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
|
---|
41 | void Compile( const char *source );
|
---|
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);
|
---|
54 | void SetVariableFromEax( const Type &varType, int CalcType,RELATIVE_VAR *pRelativeVar);
|
---|
55 | void OpcodeCalc( const char *Command );
|
---|
56 |
|
---|
57 | //NumOpe.cpp
|
---|
58 | void PushReturnValue(int type);
|
---|
59 | bool TermOpeOnlyVariable( const char *term, Type &resultType, RELATIVE_VAR &relativeVar, bool isWriteAccess );
|
---|
60 | bool TermOpe(
|
---|
61 | const char *term,
|
---|
62 | const Type &baseType,
|
---|
63 | Type &resultType,
|
---|
64 | bool &isLiteral,
|
---|
65 | bool &isNeedHeapFreeStructure,
|
---|
66 | bool *pIsClassName = NULL,
|
---|
67 | bool isProcedureCallOnly = false,
|
---|
68 | bool isWriteAccess = false );
|
---|
69 | bool NumOpe( int reg,
|
---|
70 | const char *expression,
|
---|
71 | const Type &baseType,
|
---|
72 | Type &resultType,
|
---|
73 | bool *pbIsNeedHeapFreeStructure = NULL );
|
---|
74 | bool NumOpe( const char *Command,
|
---|
75 | const Type &baseType,
|
---|
76 | Type &resultType,
|
---|
77 | bool *pbIsNeedHeapFreeStructure = NULL );
|
---|
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
|
---|
106 | void ExtendStackTo64( const Type &oldType );
|
---|
107 | void ChangeTypeToWhole( const Type &oldType, const Type &newType );
|
---|
108 |
|
---|
109 | //Compile_Set_Var.cpp
|
---|
110 | BOOL IsUse_ecx(RELATIVE_VAR *pRelativeVar);
|
---|
111 | void SetStructVariable( const Type &varType, const Type &calcType, BOOL bUseHeap);
|
---|
112 | void SetRealVariable(int VarType, int CalcType, RELATIVE_VAR *pRelativeVar);
|
---|
113 | void SetWholeVariable( int varSize,int calcType, RELATIVE_VAR *pRelative );
|
---|
114 |
|
---|
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);
|
---|
122 | void SetBooleanVariable(int type,RELATIVE_VAR *pRelative);
|
---|
123 | void ExtendTypeTo64(int type);
|
---|
124 | void ExtendTypeTo32(int type,int reg);
|
---|
125 | void ExtendTypeTo16(int type,int reg);
|
---|
126 |
|
---|
127 | //increment.cpp
|
---|
128 | void IncDec(int idCalc, const char *lpszLeft, const char *lpszRight);
|
---|
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);
|
---|
143 | void SetReg_WholeVariable( const Type &type, RELATIVE_VAR *pRelativeVar,int reg, bool is64Head = false);
|
---|
144 | void PushLongVariable(RELATIVE_VAR *pRelativeVar);
|
---|
145 |
|
---|
146 | //Compile_Object.cpp
|
---|
147 | void Operator_New( const CClass &classObj, const char *objectSizeStr, const char *parameter, const Type &baseType );
|
---|
148 | void OpcodeDelete(const char *Parameter, bool isSweeping);
|
---|
149 |
|
---|
150 | //Compile_Var.cpp
|
---|
151 | void SetRelativeOffset( RELATIVE_VAR &relativeVar );
|
---|
152 | bool _member_offset(bool isErrorEnabled, bool isWriteAccess, const Type &classType, const char *member, RELATIVE_VAR *pRelativeVar, Type &resultType, BOOL bPrivateAccess);
|
---|
153 | void SetThisPtrToReg(int reg);
|
---|
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);
|
---|
156 | #define DIMFLAG_INITDEBUGVAR 1
|
---|
157 | #define DIMFLAG_NONCALL_CONSTRACTOR 2
|
---|
158 | #define DIMFLAG_STATIC 4
|
---|
159 | #define DIMFLAG_CONST 8
|
---|
160 | void dim( char *VarName, const Subscripts &subscripts, const Type &type, const char *InitBuf,const char *ConstractParameter,DWORD dwFlags);
|
---|
161 | void SetVarPtrToEax(RELATIVE_VAR *pRelativeVar);
|
---|
162 | void SetVarPtrToReg(int reg,RELATIVE_VAR *pRelativeVar);
|
---|
163 | bool Compile_AddGlobalRootsForGc();
|
---|
164 |
|
---|
165 | //ParamImpl.cpp
|
---|
166 | class ParamImpl{
|
---|
167 | char *Parms[255];
|
---|
168 | Types types;
|
---|
169 | int ParmsNum;
|
---|
170 |
|
---|
171 | Type leftType;
|
---|
172 | Type returnType;
|
---|
173 |
|
---|
174 | //一時オブジェクト管理用
|
---|
175 | bool useTempObject;
|
---|
176 | bool useTempParameters[255];
|
---|
177 | bool isNeedFreeStructures[255];
|
---|
178 | int nCountOfTempObjects;
|
---|
179 |
|
---|
180 | public:
|
---|
181 | ParamImpl(const char *buffer);
|
---|
182 | ParamImpl(const Parameters ¶ms);
|
---|
183 | ~ParamImpl();
|
---|
184 | void SetLeftType( const Type &type )
|
---|
185 | {
|
---|
186 | this->leftType = type;
|
---|
187 | }
|
---|
188 | void SetReturnType( const Type &returnType );
|
---|
189 |
|
---|
190 | private:
|
---|
191 | bool EvaluateOverloadScore( int level, const Parameters &targetParms, const Type &targetResultType, const Type &leftType, const UserProc &userProc, bool &isErrored );
|
---|
192 | public:
|
---|
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 );
|
---|
195 |
|
---|
196 | void ApplyDefaultParameters( const Parameters ¶ms );
|
---|
197 | bool ErrorCheck( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 );
|
---|
198 | void MacroParameterSupport( const Parameters ¶ms );
|
---|
199 | void SetStructParameter( const Type &baseType, const char *expression );
|
---|
200 | int SetParameter( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
|
---|
201 |
|
---|
202 | //一時オブジェクトパラメータの生成と破棄
|
---|
203 | int NewTempParameters( const std::string &procName, const Parameters ¶ms, int SecondParmNum = -1 );
|
---|
204 | void DeleteTempParameters();
|
---|
205 | };
|
---|
206 |
|
---|
207 | //Compile_CallProc.cpp
|
---|
208 | #define PROCFLAG_NEW 1
|
---|
209 | bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer);
|
---|
210 | bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName );
|
---|
211 | bool Opcode_CallDllProc( const char *lpszParms, const DllProc *pDllProc );
|
---|
212 | void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params );
|
---|
213 |
|
---|
214 | //Compile_ProcOp.cpp
|
---|
215 | void _compile_proc(const UserProc *pUserProc);
|
---|
216 |
|
---|
217 | //Compile_Func.cpp
|
---|
218 | int GetFunctionFromName(char *FuncName);
|
---|
219 | bool Opcode_CallFunc( const char *Parameter, const int FuncNum, const Type &baseType, Type &resultType, bool isCallOn = true );
|
---|
220 |
|
---|
221 | //OperatorProc.cpp
|
---|
222 | void FreeTempObject(int reg,const CClass *pobj_c);
|
---|
223 | int CallOperatorProc(int idCalc, const Type &baseType, int *type_stack, LONG_PTR *index_stack,bool isNeedHeapFreeStructureStack[],int &sp);
|
---|
224 | void CallCastOperatorProc(Type &calcType,BOOL bCalcUseHeap,const Type &toType);
|
---|
225 | void CallIndexerGetterProc( const Type &classType, const char *ObjectName, char *Parameter,Type &resultType, DWORD dwProcFlags = 0 );
|
---|
226 |
|
---|
227 | //Compile_Statement.cpp
|
---|
228 | void OpcodeOthers( const char *Command );
|
---|
229 | void OpcodeIf(char *Parameter);
|
---|
230 | void OpcodeGoto(char *Parameter);
|
---|
231 | void OpcodeWhile(char *Parameter);
|
---|
232 | void OpcodeFor(char *Parameter);
|
---|
233 | void OpcodeForeach( const char *Parameter );
|
---|
234 | void OpcodeDo(char *Parameter);
|
---|
235 | void OpcodeContinue(void);
|
---|
236 | void OpcodeExitSub(void);
|
---|
237 | void OpcodeSelect(const char *lpszParms);
|
---|
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);
|
---|