1 | #pragma once
|
---|
2 |
|
---|
3 | //#define _CRT_SECURE_NO_DEPRECATE
|
---|
4 | #pragma warning(disable : 4996)
|
---|
5 |
|
---|
6 | #include <option.h>
|
---|
7 |
|
---|
8 | using namespace std;
|
---|
9 |
|
---|
10 | #ifdef _AMD64_
|
---|
11 | #include "../BasicCompiler64/resource.h"
|
---|
12 | #include "../BasicCompiler64/CommandValue.h"
|
---|
13 | #include "../BasicCompiler64/FunctionValue.h"
|
---|
14 | #define OPCODE_H_PATH "../BasicCompiler64/opcode.h"
|
---|
15 | #else
|
---|
16 | #include "../BasicCompiler32/resource.h"
|
---|
17 | #include "../BasicCompiler32/CommandValue.h"
|
---|
18 | #include "../BasicCompiler32/FunctionValue.h"
|
---|
19 | #define OPCODE_H_PATH "../BasicCompiler32/opcode.h"
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | #include <jenga/include/smoothie/BasicFixed.h>
|
---|
23 | #include "../BasicCompiler_Common/NonVolatile.h"
|
---|
24 | #include "../BasicCompiler_Common/psapi.h"
|
---|
25 | #include "../BasicCompiler_Common/BreakPoint.h"
|
---|
26 |
|
---|
27 |
|
---|
28 |
|
---|
29 | #if defined(JPN)
|
---|
30 | //日本語
|
---|
31 | #include "common_msg_jpn.h"
|
---|
32 | #else
|
---|
33 | //英語
|
---|
34 | #include "common_msg_eng.h"
|
---|
35 | #endif
|
---|
36 |
|
---|
37 |
|
---|
38 | #define PTR_SIZE sizeof(LONG_PTR)
|
---|
39 | #define OBJECT_HEAD_SIZE PTR_SIZE*4
|
---|
40 |
|
---|
41 | #define MAX_LEN 65535
|
---|
42 | #define DIGIT_SIZE 128
|
---|
43 | #define MAX_PARMS 64
|
---|
44 | #define MAX_ARRAYDIM 16
|
---|
45 | #define MAX_HASH 32761
|
---|
46 |
|
---|
47 |
|
---|
48 | #ifdef _AMD64_
|
---|
49 | #define PLATFORM 64
|
---|
50 | #else
|
---|
51 | #define PLATFORM 32
|
---|
52 | #ifndef LONG_PTR
|
---|
53 | typedef long LONG_PTR;
|
---|
54 | typedef DWORD ULONG_PTR;
|
---|
55 | #endif
|
---|
56 | #endif
|
---|
57 |
|
---|
58 |
|
---|
59 | //未定義の定数情報
|
---|
60 | #ifndef IMAGE_FILE_MACHINE_AMD64
|
---|
61 | #define IMAGE_FILE_MACHINE_AMD64 0x8664
|
---|
62 | #endif
|
---|
63 |
|
---|
64 | #ifdef _AMD64_
|
---|
65 | #ifndef IMAGE_SIZEOF_NT_OPTIONAL64_HEADER
|
---|
66 | #define IMAGE_SIZEOF_NT_OPTIONAL64_HEADER 240
|
---|
67 | #endif
|
---|
68 | #else
|
---|
69 | #ifndef IMAGE_SIZEOF_NT_OPTIONAL32_HEADER
|
---|
70 | #define IMAGE_SIZEOF_NT_OPTIONAL32_HEADER 224
|
---|
71 | #endif
|
---|
72 | #endif
|
---|
73 |
|
---|
74 |
|
---|
75 | extern HWND hOwnerEditor;
|
---|
76 | extern HANDLE hHeap;
|
---|
77 | extern int cp;
|
---|
78 | extern int typeOfPtrChar;
|
---|
79 | extern int typeOfPtrUChar;
|
---|
80 |
|
---|
81 |
|
---|
82 |
|
---|
83 | //////////////////////////////////////////
|
---|
84 | // BasicCompiler、ProjectEditor共通の定数
|
---|
85 | //////////////////////////////////////////
|
---|
86 |
|
---|
87 | //サイズ変更枠の太さ
|
---|
88 | #define LEVER_THICK 5
|
---|
89 |
|
---|
90 | #define WM_SHOWERROR WM_USER+70 //エラー表示メッセージ
|
---|
91 |
|
---|
92 | #define WM_SETCOMPILEVIEW WM_USER+71 //コンパイラウィンドウが表示されたとき
|
---|
93 | #define WM_DESTROYCOMPILEVIEW WM_USER+72 //コンパイラウィンドウが破棄されたとき
|
---|
94 |
|
---|
95 | #define WM_SETDEBUGGERBASE WM_USER+73 //デバッガベースウィンドウが表示されたとき
|
---|
96 | #define WM_DESTROYDEBUGGERBASE WM_USER+74 //デバッガベースウィンドウが破棄されたとき
|
---|
97 |
|
---|
98 | #define WM_SETDEBUGGERVIEW WM_USER+75 //デバッガウィンドウが表示されたとき
|
---|
99 | #define WM_DESTROYDEBUGGERVIEW WM_USER+76 //デバッガウィンドウが表示されたとき
|
---|
100 |
|
---|
101 | ///////////////////////////////////////////
|
---|
102 |
|
---|
103 |
|
---|
104 | #define WM_SHOWVARLIST WM_USER+80
|
---|
105 | #define WM_VARLIST_CLOSE WM_USER+81 //変数リストの終了メッセージ(破棄のみ、解放なし)
|
---|
106 |
|
---|
107 |
|
---|
108 |
|
---|
109 | ///////////////////////////////////////////
|
---|
110 | // デバッグ コマンド
|
---|
111 |
|
---|
112 | #define WM_DEBUG_CONTINUE WM_USER+200
|
---|
113 | #define WM_STEP_IN WM_USER+201
|
---|
114 | #define WM_STEP_OVER WM_USER+202
|
---|
115 | #define WM_STEP_CURSOR WM_USER+203
|
---|
116 | #define WM_DEBUG_STOP WM_USER+204
|
---|
117 | #define WM_DEBUG_PAUSE WM_USER+205
|
---|
118 | #define WM_CLOSE_DEBUGGER WM_USER+206
|
---|
119 |
|
---|
120 | ///////////////////////////////////////////
|
---|
121 |
|
---|
122 |
|
---|
123 |
|
---|
124 |
|
---|
125 | #define FILE_ALIGNMENT 0x1000
|
---|
126 | #define MEM_ALIGNMENT 0x1000
|
---|
127 | #define EXE_HEADER_SIZE 0x1000
|
---|
128 |
|
---|
129 |
|
---|
130 |
|
---|
131 | struct ERRORINFO{
|
---|
132 | char *FileName;
|
---|
133 | int line;
|
---|
134 | };
|
---|
135 |
|
---|
136 | //変数の相対情報
|
---|
137 | struct RELATIVE_VAR{
|
---|
138 | DWORD dwKind;
|
---|
139 | LONG_PTR offset;
|
---|
140 | BOOL bOffsetOffset;
|
---|
141 | };
|
---|
142 |
|
---|
143 |
|
---|
144 | struct RESOURCEDATAINFO{
|
---|
145 | DWORD dwId;
|
---|
146 | char FileName[MAX_PATH];
|
---|
147 | };
|
---|
148 |
|
---|
149 |
|
---|
150 | //////////////////////////////////////////
|
---|
151 | // リソース ヘッダ(アイコン、カーソル用)
|
---|
152 | typedef struct{
|
---|
153 | WORD idReserved;
|
---|
154 | WORD idType;
|
---|
155 | WORD idCount;
|
---|
156 | }ICONDIR,CURSORDIR;
|
---|
157 |
|
---|
158 |
|
---|
159 | /////////////////////////////
|
---|
160 | // .curファイルのヘッダ情報
|
---|
161 | struct CURSORDIRENTRY{
|
---|
162 | BYTE bWidth;
|
---|
163 | BYTE bHeight;
|
---|
164 | BYTE bColorCount;
|
---|
165 | BYTE bReserved;
|
---|
166 | WORD wXHotspot;
|
---|
167 | WORD wYHotspot;
|
---|
168 | DWORD dwBytesInRes;
|
---|
169 | DWORD dwImageOffset;
|
---|
170 | };
|
---|
171 | struct CURSORDIRENTRY_RES{
|
---|
172 | WORD wWidth;
|
---|
173 | WORD wHeight;
|
---|
174 | WORD wXHotspot;
|
---|
175 | WORD wYHotspot;
|
---|
176 | DWORD dwBytesInRes;
|
---|
177 | WORD wCursorNum;
|
---|
178 | };
|
---|
179 |
|
---|
180 |
|
---|
181 | ////////////////////////////
|
---|
182 | //.icoファイルのヘッダ情報
|
---|
183 | struct ICONDIRENTRY{
|
---|
184 | BYTE bWidth;
|
---|
185 | BYTE bHeight;
|
---|
186 | BYTE bColorCount;
|
---|
187 | BYTE bReserved;
|
---|
188 | WORD wPlanes;
|
---|
189 | WORD wBitCount;
|
---|
190 | DWORD dwBytesInRes;
|
---|
191 | DWORD dwImageOffset;
|
---|
192 | };
|
---|
193 | struct ICONDIRENTRY_RES{
|
---|
194 | BYTE bWidth;
|
---|
195 | BYTE bHeight;
|
---|
196 | BYTE bColorCount;
|
---|
197 | BYTE bReserved;
|
---|
198 | WORD wPlanes;
|
---|
199 | WORD wBitCount;
|
---|
200 | DWORD dwBytesInRes;
|
---|
201 | WORD wIconNum;
|
---|
202 | };
|
---|
203 |
|
---|
204 |
|
---|
205 |
|
---|
206 | #include "../BasicCompiler_Common/PESchedule.h"
|
---|
207 | #include "../BasicCompiler_Common/VariableOpe.h"
|
---|
208 |
|
---|
209 |
|
---|
210 |
|
---|
211 | bool StaticCalculation(bool enableerror, const char *Command,int BaseType,_int64 *pi64data,Type &resultType,BOOL bDebuggingWatchList=0, bool *pIsMemoryAccessError=NULL);
|
---|
212 |
|
---|
213 |
|
---|
214 | //BasicCompiler.cpp
|
---|
215 | void HeapDefaultFree(LPVOID lpMem);
|
---|
216 | void ts(int i);
|
---|
217 | void ts(int i,int i2);
|
---|
218 | void ts(char *msg);
|
---|
219 | void ts(char *msg,char *title);
|
---|
220 | void epi_check();
|
---|
221 | void GetRelationalPath(char *path,char *dir);
|
---|
222 | void GetFullPath( char *path, const string &baseDirPath );
|
---|
223 | void ShowErrorLine(int LineNum,const char *FileName);
|
---|
224 | BOOL GetFilePathDialog(HWND hwnd,char *filename,LPSTR Filter,LPSTR Title,BOOL bOpen);
|
---|
225 | void MakeMessageText(char *buffer,char *msg,int flag);
|
---|
226 |
|
---|
227 | //hash.cpp
|
---|
228 | int hash_default(const char *name);
|
---|
229 | DllProc *GetDeclareHash(const char *name);
|
---|
230 | void GetOverloadSubHash( const char *lpszName, std::vector<const UserProc *> &subs );
|
---|
231 | const UserProc *GetSubHash(const char *name,BOOL bError=0);
|
---|
232 | const UserProc *GetMethodHash(const char *ObjectName,const char *MethodName,const char *Parameter,BOOL bError=0);
|
---|
233 | const UserProc *GetClassMethod( const char *className, const char *methodName );
|
---|
234 |
|
---|
235 | //Object.cpp
|
---|
236 | void CallConstructor( const char *ObjectName,const Subscripts &subscripts, const Type &type,const char *Parameter);
|
---|
237 | bool Operator_New( const char *expression, const Type &baseType, Type &resultType );
|
---|
238 |
|
---|
239 | //Overload.sbp
|
---|
240 | class Parameters;
|
---|
241 | const UserProc *OverloadSolutionWithStrParam(
|
---|
242 | const char *name,
|
---|
243 | std::vector<const UserProc *> &subs,
|
---|
244 | const char *Parameter,
|
---|
245 | const char *ObjectName);
|
---|
246 | const UserProc *OverloadSolution(
|
---|
247 | const char *name,
|
---|
248 | std::vector<const UserProc *> &subs,
|
---|
249 | const Parameters ¶ms,
|
---|
250 | const Type &returnType );
|
---|
251 |
|
---|
252 | //Debug.cpp
|
---|
253 | void Debugger_StepIn(void);
|
---|
254 | void Debugger_StepOver(void);
|
---|
255 | void Debugger_StepCursor(void);
|
---|
256 | void Debugger_Stop(void);
|
---|
257 | void Debugger_Pause(void);
|
---|
258 | ULONG_PTR rva_to_real(DWORD p);
|
---|
259 | UserProc *GetSubFromObp(ULONG_PTR pos);
|
---|
260 | void ReadOpBuffer();
|
---|
261 | void DebugProgram(void);
|
---|
262 |
|
---|
263 | //VarList.cpp
|
---|
264 | void InitVarList(DWORD dwThreadId);
|
---|
265 | BOOL CALLBACK DlgDebugger(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
|
---|
266 | BOOL CALLBACK DlgVarList(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
|
---|
267 |
|
---|
268 | //WatchList.cpp
|
---|
269 | ULONG_PTR Debugging_GetVarPtr(RELATIVE_VAR *pRelativeVar);
|
---|
270 | ULONG_PTR Debugging_GetThisPtrOffset(LONG_PTR obp_Rip);
|
---|
271 | int Debugging_GetVarOffset( char *variable,RELATIVE_VAR *pRelativeVar, Type &resultType, Subscripts *pResultSubscripts = NULL );
|
---|
272 |
|
---|
273 | //MakeExe.cpp
|
---|
274 | void StepCompileProgress(void);
|
---|
275 | void AddSourceCode(char *buffer);
|
---|
276 | void OutputExe(void);
|
---|
277 | int MainThread(DWORD dummy);
|
---|
278 |
|
---|
279 | //Intermediate_Step1.cpp
|
---|
280 | void ChangeReturnCode(char *buffer);
|
---|
281 | void DeleteComment(char *buffer);
|
---|
282 | void KillReturnCode(char *buffer);
|
---|
283 | void CheckParenthesis(char *buffer);
|
---|
284 | BOOL CheckParenthesis2(char *buffer);
|
---|
285 | void DirectiveCheck(void);
|
---|
286 | void NextCommandFormat(char *buffer);
|
---|
287 | void SetEscapeSequenceFormat(char *buffer);
|
---|
288 | void DefCommandFormat(char *buffer);
|
---|
289 | void IfCommandFormat(char *buffer);
|
---|
290 | void CheckPareCommand(void);
|
---|
291 |
|
---|
292 | //Intermediate_Step2.cpp
|
---|
293 | bool GetConstInfo(void);
|
---|
294 | void ChangeCommandToCode(char *buffer);
|
---|
295 |
|
---|
296 | //preprocessor.cpp
|
---|
297 | char *OpenBasicFile(char *FileName);
|
---|
298 |
|
---|
299 | //Resource.cpp
|
---|
300 | void GetResourceData(char *FileName);
|
---|
301 |
|
---|
302 | //CommandFormat.cpp
|
---|
303 | void ComOpen(char *Parameter,char *buffer,int nowLine);
|
---|
304 | void ComClose(char *Parameter,char *buffer);
|
---|
305 | void ComField(char *Parameter,char *buffer);
|
---|
306 | void ComLine(char *Parameter,char *buffer,int nowLine);
|
---|
307 | void ComCircle(char *Parameter,char *buffer,int nowLine);
|
---|
308 | void ComPSet(char *Parameter,char *buffer,int nowLine);
|
---|
309 | void ComPaint(char *Parameter,char *buffer,int nowLine);
|
---|
310 |
|
---|
311 | // StrOperation.cpp
|
---|
312 | void KillSpaces(char *str1,char *str2);
|
---|
313 | void KillStringSpaces(char *str);
|
---|
314 | BOOL RemoveStringQuotes(char *str);
|
---|
315 | void RemoveStringPare(char *str);
|
---|
316 | void RemoveStringBracket(char *str);
|
---|
317 | void SetStringQuotes(char *str);
|
---|
318 | int FormatString_EscapeSequence(char *buffer);
|
---|
319 | void SlideString(char *str,int slide);
|
---|
320 | void SlideBuffer(char *buffer,int length,int slide);
|
---|
321 | int GetSourceCodeIndexFromLine( const char *source, int LineNum );
|
---|
322 | char GetEndXXXCommand(char es);
|
---|
323 | void GetDefaultNameFromES(char es,char *name);
|
---|
324 | const std::string &FormatEscapeSequenceStringToDefaultString( const std::string &source );
|
---|
325 | bool IsFileExist(const char *path);
|
---|
326 | BOOL ShortPathToLongPath(char ShortPath[MAX_PATH],char *LongPath);
|
---|
327 | BOOL GetFolder(HWND hWnd,char *folder,char *OpenFolderTitle);
|
---|
328 | void ShortPathToLongPath(const char *ShortPath,char *LongPath);
|
---|
329 |
|
---|
330 | //calculation.cpp
|
---|
331 | bool IsNumberTopChar(const char *buffer);
|
---|
332 | bool IsNumberChar(const char c);
|
---|
333 | BOOL IsNumCalcMark(const char *Command,int p);
|
---|
334 | BOOL IsNumCalcMark_Back(const char *Command,int p);
|
---|
335 | BOOL IsStrCalcMark(const char c);
|
---|
336 | BOOL IsExponent(const char *Command,int p);
|
---|
337 | int GetLiteralIndex(_int64 i64data);
|
---|
338 | int NeutralizationType(int type1,LONG_PTR index1,int type2,LONG_PTR index2);
|
---|
339 | DWORD GetLiteralValue(char *value,_int64 *pi64,int BaseType, bool isNotifyError = true );
|
---|
340 | int IsStrCalculation(const char *Command);
|
---|
341 | BYTE GetCalcId(const char *Command,int *pi);
|
---|
342 | BOOL GetNumOpeElements(const char *Command,int *pnum,
|
---|
343 | char *values[255],long calc[255],long stack[255]);
|
---|
344 |
|
---|
345 | //NumOpe_GetType.cpp
|
---|
346 | int AutoBigCast(int BaseType,int CalcType);
|
---|
347 | BOOL CheckCalcType(int idCalc,int *type,int sp);
|
---|
348 | bool GetTermType( const char *term, Type &resultType, bool &isLiteral, bool *pIsClassName = NULL );
|
---|
349 | bool NumOpe_GetType( const char *expression, const Type &baseType, Type &resultType, bool *pIsLiteralCalculation = NULL );
|
---|
350 |
|
---|
351 | //Subroutine.cpp
|
---|
352 | int GetCallProcName(char *buffer,char *name);
|
---|
353 | int GetProc(char *name,void **ppInfo);
|
---|
354 | void SplitObjectName(const char *name,char *ObjectName, ReferenceKind &referenceFind );
|
---|
355 | bool CallProc( int kind, const void *pProc, const char *fullCallName, const char *lpszParms, Type &resultType, bool isCallOn = true );
|
---|
356 | bool CallPropertyMethod( const char *variable, const char *rightSide, Type &resultType);
|
---|
357 | bool GetReturnTypeOfPropertyMethod( const char *variable, const char *rightSide, Type &resultType );
|
---|
358 | bool GetReturnTypeOfIndexerGetterProc( const Type &classType, Type &resultType );
|
---|
359 | int AddProcPtrInfo( const string &typeExpression, int nowLine );
|
---|
360 | bool IsNeedProcCompile();
|
---|
361 | void CompileLocal();
|
---|
362 |
|
---|
363 | //OldStatement.cpp
|
---|
364 | void Opcode_Input(const char *Parameter);
|
---|
365 | void Opcode_Print(const char *Parameter,BOOL bWrite);
|
---|
366 |
|
---|
367 | //error.cpp
|
---|
368 | void SetError(int ErrorNum,const char *KeyWord,int pos);
|
---|
369 | void SetError(int ErrorNum,const string &keyWord,int pos);
|
---|
370 | void SetError();
|
---|
371 | void CompileMessage(const char *buffer);
|
---|
372 | bool CheckDifferentType( const Type &varType,const Type &calcType,const char *pszFuncName,const int ParmNum);
|
---|
373 |
|
---|
374 | //Compile.cpp
|
---|
375 | void GetIdentifierToken( char *token, const char *source, int &pos );
|
---|
376 | void GetCommandToken( char *token, const char *source, int &pos );
|
---|
377 | void SplitGenericClassInstance( const char *fullName, char *className, Jenga::Common::Strings &typeParameters );
|
---|
378 | int JumpStatement(const char *source, int &pos);
|
---|
379 | void Compile(void);
|
---|
380 |
|
---|
381 | //Diagnose.cpp
|
---|
382 | void Diagnose();
|
---|
383 |
|
---|
384 | //gc.cpp
|
---|
385 | void InitGCVariables(void);
|
---|
386 |
|
---|
387 |
|
---|
388 |
|
---|
389 | #ifdef _DEBUG
|
---|
390 | /*Debug*/
|
---|
391 | /*
|
---|
392 | #define HeapAlloc CheckHeapAlloc
|
---|
393 | #define HeapReAlloc CheckHeapReAlloc
|
---|
394 | LPVOID CheckHeapAlloc(HANDLE hHeap,DWORD dwFlags,DWORD dwBytes);
|
---|
395 | LPVOID CheckHeapReAlloc(HANDLE hHeap,DWORD dwFlags,LPVOID lpMem,DWORD dwBytes);
|
---|
396 | */
|
---|
397 | #endif
|
---|