1 | //#define _CRT_SECURE_NO_DEPRECATE
|
---|
2 | #pragma warning(disable : 4996)
|
---|
3 |
|
---|
4 | #include <windows.h>
|
---|
5 | #include <stdio.h>
|
---|
6 | #include <string.h>
|
---|
7 | #include <math.h>
|
---|
8 | #include <commctrl.h>
|
---|
9 | #include <time.h>
|
---|
10 | #include <limits.h>
|
---|
11 | #include <shlobj.h>
|
---|
12 | #include <vector>
|
---|
13 |
|
---|
14 | //boost libraries
|
---|
15 | #include <boost/foreach.hpp>
|
---|
16 |
|
---|
17 | #define foreach BOOST_FOREACH
|
---|
18 |
|
---|
19 | #ifdef _AMD64_
|
---|
20 | #include "../BasicCompiler64/resource.h"
|
---|
21 | #include "../BasicCompiler64/CommandValue.h"
|
---|
22 | #include "../BasicCompiler64/FunctionValue.h"
|
---|
23 | #define OPCODE_H_PATH "../BasicCompiler64/opcode.h"
|
---|
24 | #else
|
---|
25 | #include "../BasicCompiler32/resource.h"
|
---|
26 | #include "../BasicCompiler32/CommandValue.h"
|
---|
27 | #include "../BasicCompiler32/FunctionValue.h"
|
---|
28 | #define OPCODE_H_PATH "../BasicCompiler32/opcode.h"
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #include "../BasicCompiler_Common/BasicFixed.h"
|
---|
32 | #include "../BasicCompiler_Common/NonVolatile.h"
|
---|
33 | #include "../BasicCompiler_Common/TypeDef.h"
|
---|
34 | #include "../BasicCompiler_Common/psapi.h"
|
---|
35 | #include "../BasicCompiler_Common/BreakPoint.h"
|
---|
36 |
|
---|
37 |
|
---|
38 |
|
---|
39 | //バージョン
|
---|
40 | #define MAJOR_VER 5
|
---|
41 | #define MINOR_VER 00
|
---|
42 | #define REVISION_VER 00
|
---|
43 |
|
---|
44 | #ifdef _AMD64_
|
---|
45 | #define VER_INFO "β13 (x64)"
|
---|
46 | #else
|
---|
47 | #define VER_INFO "β13"
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | #if defined(JPN)
|
---|
51 | //日本語
|
---|
52 | #include "common_msg_jpn.h"
|
---|
53 | #else
|
---|
54 | //英語
|
---|
55 | #include "common_msg_eng.h"
|
---|
56 | #endif
|
---|
57 |
|
---|
58 |
|
---|
59 | #pragma comment(lib, "psapi.lib")
|
---|
60 |
|
---|
61 |
|
---|
62 | #define PTR_SIZE sizeof(LONG_PTR)
|
---|
63 |
|
---|
64 | #define MAX_LEN 65535
|
---|
65 | #define VN_SIZE 512
|
---|
66 | #define DIGIT_SIZE 128
|
---|
67 | #define MAX_PARMS 64
|
---|
68 | #define MAX_ARRAYDIM 16
|
---|
69 | #define MAX_HASH 32761
|
---|
70 |
|
---|
71 |
|
---|
72 | #ifdef _AMD64_
|
---|
73 | #define PLATFORM 64
|
---|
74 | #else
|
---|
75 | #define PLATFORM 32
|
---|
76 | typedef long LONG_PTR;
|
---|
77 | typedef DWORD ULONG_PTR;
|
---|
78 | #endif
|
---|
79 |
|
---|
80 |
|
---|
81 | //未定義の定数情報
|
---|
82 | #define IMAGE_FILE_MACHINE_AMD64 0x8664
|
---|
83 |
|
---|
84 |
|
---|
85 |
|
---|
86 | extern HWND hOwnerEditor;
|
---|
87 | extern HANDLE hHeap;
|
---|
88 | extern char BasicSystemDir[MAX_PATH];
|
---|
89 | extern int cp;
|
---|
90 | extern bool isUnicode;
|
---|
91 |
|
---|
92 |
|
---|
93 |
|
---|
94 | //////////////////////////////////////////
|
---|
95 | // BasicCompiler、ProjectEditor共通の定数
|
---|
96 | //////////////////////////////////////////
|
---|
97 |
|
---|
98 | //サイズ変更枠の太さ
|
---|
99 | #define LEVER_THICK 5
|
---|
100 |
|
---|
101 | #define WM_SHOWERROR WM_USER+70 //エラー表示メッセージ
|
---|
102 |
|
---|
103 | #define WM_SETCOMPILEVIEW WM_USER+71 //コンパイラウィンドウが表示されたとき
|
---|
104 | #define WM_DESTROYCOMPILEVIEW WM_USER+72 //コンパイラウィンドウが破棄されたとき
|
---|
105 |
|
---|
106 | #define WM_SETDEBUGGERBASE WM_USER+73 //デバッガベースウィンドウが表示されたとき
|
---|
107 | #define WM_DESTROYDEBUGGERBASE WM_USER+74 //デバッガベースウィンドウが破棄されたとき
|
---|
108 |
|
---|
109 | #define WM_SETDEBUGGERVIEW WM_USER+75 //デバッガウィンドウが表示されたとき
|
---|
110 | #define WM_DESTROYDEBUGGERVIEW WM_USER+76 //デバッガウィンドウが表示されたとき
|
---|
111 |
|
---|
112 | ///////////////////////////////////////////
|
---|
113 |
|
---|
114 |
|
---|
115 | #define WM_SHOWVARLIST WM_USER+80
|
---|
116 | #define WM_VARLIST_CLOSE WM_USER+81 //変数リストの終了メッセージ(破棄のみ、解放なし)
|
---|
117 |
|
---|
118 |
|
---|
119 |
|
---|
120 | ///////////////////////////////////////////
|
---|
121 | // デバッグ コマンド
|
---|
122 |
|
---|
123 | #define WM_DEBUG_CONTINUE WM_USER+200
|
---|
124 | #define WM_STEP_IN WM_USER+201
|
---|
125 | #define WM_STEP_OVER WM_USER+202
|
---|
126 | #define WM_STEP_CURSOR WM_USER+203
|
---|
127 | #define WM_DEBUG_STOP WM_USER+204
|
---|
128 | #define WM_DEBUG_PAUSE WM_USER+205
|
---|
129 | #define WM_CLOSE_DEBUGGER WM_USER+206
|
---|
130 |
|
---|
131 | ///////////////////////////////////////////
|
---|
132 |
|
---|
133 |
|
---|
134 |
|
---|
135 |
|
---|
136 | #define FILE_ALIGNMENT 0x1000
|
---|
137 | #define MEM_ALIGNMENT 0x1000
|
---|
138 | #define EXE_HEADER_SIZE 0x1000
|
---|
139 |
|
---|
140 |
|
---|
141 | //クラス管理用のクラス
|
---|
142 | #include "Class.h"
|
---|
143 |
|
---|
144 | //列挙体管理用のクラス
|
---|
145 | #include "Enum.h"
|
---|
146 |
|
---|
147 | //定数管理用のクラス
|
---|
148 | #include "Const.h"
|
---|
149 |
|
---|
150 |
|
---|
151 | struct ERRORINFO{
|
---|
152 | char *FileName;
|
---|
153 | int line;
|
---|
154 | };
|
---|
155 | struct INCLUDEFILEINFO{
|
---|
156 | char **ppFileNames;
|
---|
157 | int FilesNum;
|
---|
158 | int LineOfFile[MAX_LEN];
|
---|
159 | };
|
---|
160 |
|
---|
161 |
|
---|
162 | //変数
|
---|
163 | #define REF_PARAMETER 1
|
---|
164 | #define OBJECT_PARAMETER 2
|
---|
165 | #define REF_VARIABLE 4
|
---|
166 | struct VARIABLE{
|
---|
167 | char name[255];
|
---|
168 | int type;
|
---|
169 | union{
|
---|
170 | LONG_PTR index;
|
---|
171 | CClass *pobj_c;
|
---|
172 | }u;
|
---|
173 |
|
---|
174 | DWORD fRef;
|
---|
175 |
|
---|
176 | //定数変数かどうか
|
---|
177 | bool bConst;
|
---|
178 |
|
---|
179 | BOOL bArray;
|
---|
180 | int SubScripts[MAX_ARRAYDIM];
|
---|
181 |
|
---|
182 | //コンストラクタ用パラメータ
|
---|
183 | char *ConstractParameter;
|
---|
184 |
|
---|
185 | /* --- オフセット ---
|
---|
186 |
|
---|
187 | ※グローバル変数で初期バッファがない場合は最上位ビットに1がセットされ、
|
---|
188 | 初期バッファの有無が識別される。
|
---|
189 | (その後、スケジュール実行により、実際の配置に並び替えられる)*/
|
---|
190 | int offset;
|
---|
191 |
|
---|
192 |
|
---|
193 | //レキシカルスコープ用
|
---|
194 | int ScopeStartAddress;
|
---|
195 | int ScopeEndAddress;
|
---|
196 | int ScopeLevel;
|
---|
197 | BOOL bLiving;
|
---|
198 |
|
---|
199 |
|
---|
200 | int source_code_address;
|
---|
201 | };
|
---|
202 |
|
---|
203 | //変数の相対情報
|
---|
204 | struct RELATIVE_VAR{
|
---|
205 | DWORD dwKind;
|
---|
206 | LONG_PTR offset;
|
---|
207 | BOOL bOffsetOffset;
|
---|
208 | };
|
---|
209 |
|
---|
210 | //パラメータ
|
---|
211 | struct PARAMETER_INFO{
|
---|
212 | char *name;
|
---|
213 | int type;
|
---|
214 | union{
|
---|
215 | LONG_PTR index;
|
---|
216 | CClass *pobj_c;
|
---|
217 | }u;
|
---|
218 |
|
---|
219 | BOOL bByVal;
|
---|
220 | BOOL bArray;
|
---|
221 | int SubScripts[MAX_ARRAYDIM];
|
---|
222 | };
|
---|
223 |
|
---|
224 | #define SUBTYPE_SUB 1
|
---|
225 | #define SUBTYPE_FUNCTION 2
|
---|
226 | #define SUBTYPE_MACRO 3
|
---|
227 | struct SUBINFO{
|
---|
228 | DWORD dwType;
|
---|
229 |
|
---|
230 | //クラス情報
|
---|
231 | CClass *pobj_ParentClass;
|
---|
232 |
|
---|
233 | long id;
|
---|
234 |
|
---|
235 | char *name;
|
---|
236 | long address;
|
---|
237 |
|
---|
238 | //パラメータ
|
---|
239 | PARAMETER_INFO *pParmInfo;
|
---|
240 | int ParmNum;
|
---|
241 | int SecondParmNum;
|
---|
242 | PARAMETER_INFO *pRealParmInfo;
|
---|
243 | int RealParmNum;
|
---|
244 | int RealSecondParmNum;
|
---|
245 |
|
---|
246 | //戻り値
|
---|
247 | int ReturnType;
|
---|
248 | union{
|
---|
249 | LONG_PTR ReturnIndex;
|
---|
250 | CClass *Return_pobj_c;
|
---|
251 | }u;
|
---|
252 | bool isReturnRef;
|
---|
253 |
|
---|
254 | DWORD CompileAddress;
|
---|
255 | DWORD EndOpAddr;
|
---|
256 | VARIABLE *pVar;
|
---|
257 | int VarNum;
|
---|
258 |
|
---|
259 | BOOL bExport;
|
---|
260 | BOOL bCdecl;
|
---|
261 | BOOL bVirtual;
|
---|
262 | BOOL bUse;
|
---|
263 | BOOL bCompile;
|
---|
264 | BOOL bSystem;
|
---|
265 |
|
---|
266 | SUBINFO *pNextData;
|
---|
267 | };
|
---|
268 | #define DECLARE_DYNAMIC 1
|
---|
269 | #define DECLARE_STATIC 2
|
---|
270 | struct DECLAREINFO{
|
---|
271 | DWORD dwType;
|
---|
272 |
|
---|
273 | char *file;
|
---|
274 | char *name;
|
---|
275 | char *alias;
|
---|
276 | BOOL bCdecl;
|
---|
277 |
|
---|
278 | //パラメータ
|
---|
279 | PARAMETER_INFO *pParmInfo;
|
---|
280 | int ParmNum;
|
---|
281 |
|
---|
282 | //戻り値
|
---|
283 | int ReturnType;
|
---|
284 | union{
|
---|
285 | LONG_PTR ReturnIndex;
|
---|
286 | CClass *Return_pobj_c;
|
---|
287 | }u;
|
---|
288 |
|
---|
289 | union{
|
---|
290 | int LookupAddress;
|
---|
291 | int StaticProc_CodeAddress;
|
---|
292 | };
|
---|
293 |
|
---|
294 | BOOL bUse;
|
---|
295 |
|
---|
296 | int pos;
|
---|
297 |
|
---|
298 | DECLAREINFO *pNextData;
|
---|
299 | };
|
---|
300 | struct PROCPTRINFO{
|
---|
301 | PARAMETER_INFO *pParmInfo;
|
---|
302 | int ParmNum;
|
---|
303 |
|
---|
304 | int ReturnType;
|
---|
305 | union{
|
---|
306 | LONG_PTR ReturnIndex;
|
---|
307 | CClass *Return_pobj_c;
|
---|
308 | }u;
|
---|
309 | };
|
---|
310 | struct CONSTINFO{
|
---|
311 | char *name;
|
---|
312 | char *StrValue;
|
---|
313 |
|
---|
314 | double DblValue;
|
---|
315 | _int64 i64Value;
|
---|
316 | int type;
|
---|
317 | LONG_PTR lpIndex;
|
---|
318 |
|
---|
319 | int ParmNum;
|
---|
320 | char **ppParm;
|
---|
321 |
|
---|
322 | CONSTINFO *pNextData;
|
---|
323 | };
|
---|
324 |
|
---|
325 |
|
---|
326 | #define CODETYPE_SYSTEMPROC 0x0001
|
---|
327 | #define CODETYPE_DEBUGPROC 0x0002
|
---|
328 | struct LINEINFO{
|
---|
329 | int TopCp;
|
---|
330 | int TopObp;
|
---|
331 | DWORD dwCodeType;
|
---|
332 | };
|
---|
333 | struct RESOURCEDATAINFO{
|
---|
334 | DWORD dwId;
|
---|
335 | char FileName[MAX_PATH];
|
---|
336 | };
|
---|
337 |
|
---|
338 |
|
---|
339 | //////////////////////////////////////////
|
---|
340 | // リソース ヘッダ(アイコン、カーソル用)
|
---|
341 | typedef struct{
|
---|
342 | WORD idReserved;
|
---|
343 | WORD idType;
|
---|
344 | WORD idCount;
|
---|
345 | }ICONDIR,CURSORDIR;
|
---|
346 |
|
---|
347 |
|
---|
348 | /////////////////////////////
|
---|
349 | // .curファイルのヘッダ情報
|
---|
350 | struct CURSORDIRENTRY{
|
---|
351 | BYTE bWidth;
|
---|
352 | BYTE bHeight;
|
---|
353 | BYTE bColorCount;
|
---|
354 | BYTE bReserved;
|
---|
355 | WORD wXHotspot;
|
---|
356 | WORD wYHotspot;
|
---|
357 | DWORD dwBytesInRes;
|
---|
358 | DWORD dwImageOffset;
|
---|
359 | };
|
---|
360 | struct CURSORDIRENTRY_RES{
|
---|
361 | WORD wWidth;
|
---|
362 | WORD wHeight;
|
---|
363 | WORD wXHotspot;
|
---|
364 | WORD wYHotspot;
|
---|
365 | DWORD dwBytesInRes;
|
---|
366 | WORD wCursorNum;
|
---|
367 | };
|
---|
368 |
|
---|
369 |
|
---|
370 | ////////////////////////////
|
---|
371 | //.icoファイルのヘッダ情報
|
---|
372 | struct ICONDIRENTRY{
|
---|
373 | BYTE bWidth;
|
---|
374 | BYTE bHeight;
|
---|
375 | BYTE bColorCount;
|
---|
376 | BYTE bReserved;
|
---|
377 | WORD wPlanes;
|
---|
378 | WORD wBitCount;
|
---|
379 | DWORD dwBytesInRes;
|
---|
380 | DWORD dwImageOffset;
|
---|
381 | };
|
---|
382 | struct ICONDIRENTRY_RES{
|
---|
383 | BYTE bWidth;
|
---|
384 | BYTE bHeight;
|
---|
385 | BYTE bColorCount;
|
---|
386 | BYTE bReserved;
|
---|
387 | WORD wPlanes;
|
---|
388 | WORD wBitCount;
|
---|
389 | DWORD dwBytesInRes;
|
---|
390 | WORD wIconNum;
|
---|
391 | };
|
---|
392 |
|
---|
393 |
|
---|
394 |
|
---|
395 | #include "../BasicCompiler_Common/PESchedule.h"
|
---|
396 | #include "../BasicCompiler_Common/DebugSection.h"
|
---|
397 | #include "../BasicCompiler_Common/LexicalScoping.h"
|
---|
398 | #include "../BasicCompiler_Common/Variable.h"
|
---|
399 | #include "../BasicCompiler_Common/Exception.h"
|
---|
400 |
|
---|
401 |
|
---|
402 |
|
---|
403 | int StaticCalculation(bool enableerror, const char *Command,int BaseType,_int64 *pi64data,LONG_PTR *plpIndex,BOOL bDebuggingWatchList=0);
|
---|
404 |
|
---|
405 |
|
---|
406 | //BasicCompiler.cpp
|
---|
407 | void HeapDefaultFree(LPVOID lpMem);
|
---|
408 | void ts(int i);
|
---|
409 | void ts(int i,int i2);
|
---|
410 | void ts(char *msg);
|
---|
411 | void ts(char *msg,char *title);
|
---|
412 | void epi_check();
|
---|
413 | void GetRelationalPath(char *path,char *dir);
|
---|
414 | void GetFullPath(char *path,char *dir);
|
---|
415 | void ShowErrorLine(int LineNum,char *FileName);
|
---|
416 | BOOL GetFilePathDialog(HWND hwnd,char *filename,LPSTR Filter,LPSTR Title,BOOL bOpen);
|
---|
417 | void MakeMessageText(char *buffer,char *msg,int flag);
|
---|
418 |
|
---|
419 | //hash.cpp
|
---|
420 | int hash_default(char *name);
|
---|
421 | CONSTINFO *GetConstHash(char *name);
|
---|
422 | DECLAREINFO *GetDeclareHash(char *name);
|
---|
423 | SUBINFO *GetSubHash(const char *name,BOOL bError=0);
|
---|
424 | SUBINFO *GetMethodHash(char *ObjectName,char *MethodName,char *Parameter,BOOL bError=0);
|
---|
425 | void GetOverloadSubHash( const char *lpszName, std::vector<SUBINFO *> &subs );
|
---|
426 |
|
---|
427 | //Object.cpp
|
---|
428 | int GetSizeOfClassMember(CClass *pobj_c,char *pMemberName,int *pMemberNum);
|
---|
429 | int GetSizeOfClass(CClass *pobj_c);
|
---|
430 | void AddClassName(char *Parameter,int NowLine);
|
---|
431 | void CallConstructor(char *VarName,int *SubScripts,TYPEINFO &TypeInfo,char *Parameter);
|
---|
432 |
|
---|
433 | //Overload.sbp
|
---|
434 | SUBINFO *OverloadSolutionWithStrParam(
|
---|
435 | const char *name,
|
---|
436 | std::vector<SUBINFO *> &subs,
|
---|
437 | const char *Parameter,
|
---|
438 | const char *ObjectName,
|
---|
439 | TYPEINFO *pReturnTypeInfo);
|
---|
440 | SUBINFO *OverloadSolution(
|
---|
441 | const char *name,
|
---|
442 | std::vector<SUBINFO *> &subs,
|
---|
443 | const PARAMETER_INFO *ppi,
|
---|
444 | const int ParmNum,
|
---|
445 | TYPEINFO *pReturnTypeInfo);
|
---|
446 |
|
---|
447 | //Debug.cpp
|
---|
448 | void Debugger_StepIn(void);
|
---|
449 | void Debugger_StepOver(void);
|
---|
450 | void Debugger_StepCursor(void);
|
---|
451 | void Debugger_Stop(void);
|
---|
452 | void Debugger_Pause(void);
|
---|
453 | ULONG_PTR rva_to_real(DWORD p);
|
---|
454 | SUBINFO *GetSubFromObp(ULONG_PTR pos);
|
---|
455 | void ReadOpBuffer();
|
---|
456 | void DebugProgram(void);
|
---|
457 |
|
---|
458 | //VarList.cpp
|
---|
459 | void InitVarList(DWORD dwThreadId);
|
---|
460 | BOOL CALLBACK DlgDebugger(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
|
---|
461 | BOOL CALLBACK DlgVarList(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
|
---|
462 |
|
---|
463 | //WatchList.cpp
|
---|
464 | ULONG_PTR Debugging_GetVarPtr(RELATIVE_VAR *pRelativeVar);
|
---|
465 | ULONG_PTR Debugging_GetThisPtrOffset(LONG_PTR obp_Rip);
|
---|
466 | int Debugging_GetVarOffset(char *variable,int *pType,RELATIVE_VAR *pRelativeVar,LONG_PTR *plpIndex,int *pss);
|
---|
467 |
|
---|
468 | //MakeExe.cpp
|
---|
469 | void StepCompileProgress(void);
|
---|
470 | void DeleteConstInfo(CONSTINFO **ppConstHash);
|
---|
471 | void DeleteDeclareInfo(void);
|
---|
472 | void AddSourceCode(char *buffer);
|
---|
473 | void OutputExe(void);
|
---|
474 | int MainThread(DWORD dummy);
|
---|
475 |
|
---|
476 | //Intermediate_Step1.cpp
|
---|
477 | void ChangeReturnCode(char *buffer);
|
---|
478 | void DeleteComment(char *buffer);
|
---|
479 | void KillReturnCode(char *buffer);
|
---|
480 | void CheckParenthesis(char *buffer);
|
---|
481 | BOOL CheckParenthesis2(char *buffer);
|
---|
482 | void DirectiveCheck(void);
|
---|
483 | void NextCommandFormat(char *buffer);
|
---|
484 | void SetEscapeSequenceFormat(char *buffer);
|
---|
485 | void DefCommandFormat(char *buffer);
|
---|
486 | void IfCommandFormat(char *buffer);
|
---|
487 | void CheckPareCommand(void);
|
---|
488 |
|
---|
489 | //Intermediate_Step2.cpp
|
---|
490 | bool GetConstInfo(void);
|
---|
491 | void ChangeCommandToCode(char *buffer);
|
---|
492 |
|
---|
493 | //preprocessor.cpp
|
---|
494 | char *OpenBasicFile(char *FileName);
|
---|
495 |
|
---|
496 | //Resource.cpp
|
---|
497 | void GetResourceData(char *FileName);
|
---|
498 |
|
---|
499 | //CommandFormat.cpp
|
---|
500 | void ComOpen(char *Parameter,char *buffer,int NowLine);
|
---|
501 | void ComClose(char *Parameter,char *buffer);
|
---|
502 | void ComField(char *Parameter,char *buffer);
|
---|
503 | void ComLine(char *Parameter,char *buffer,int NowLine);
|
---|
504 | void ComCircle(char *Parameter,char *buffer,int NowLine);
|
---|
505 | void ComPSet(char *Parameter,char *buffer,int NowLine);
|
---|
506 | void ComPaint(char *Parameter,char *buffer,int NowLine);
|
---|
507 |
|
---|
508 | // StrOperation.cpp
|
---|
509 | void KillSpaces(char *str1,char *str2);
|
---|
510 | void KillStringSpaces(char *str);
|
---|
511 | BOOL RemoveStringQuotes(char *str);
|
---|
512 | void RemoveStringPare(char *str);
|
---|
513 | void RemoveStringBracket(char *str);
|
---|
514 | void SetStringQuotes(char *str);
|
---|
515 | int FormatString_EscapeSequence(char *buffer);
|
---|
516 | void SlideString(char *str,int slide);
|
---|
517 | void SlideBuffer(char *buffer,int length,int slide);
|
---|
518 | _int8 IsCommandDelimitation(char c);
|
---|
519 | BOOL IsBlank(char c);
|
---|
520 | int GetOneParameter(char *Parameter,int pos,char *retAns);
|
---|
521 | int JumpOneParameter(char *Parameter,int i);
|
---|
522 | int GetStringInQuotation(char *buffer,char *ReadBuffer);
|
---|
523 | int GetStringInPare(char *buffer,const char *ReadBuffer);
|
---|
524 | int GetStringInPare_RemovePare(char *buffer,char *ReadBuffer);
|
---|
525 | int GetStringInBracket(char *buffer,const char *ReadBuffer);
|
---|
526 | int JumpStringInPare(const char *buffer,int pos);
|
---|
527 | int JumpStringInBracket(const char *buffer,int pos);
|
---|
528 | int GetCpFromLine(int LineNum);
|
---|
529 | BOOL GetLineNum(int pos,int *pLine,char *FileName);
|
---|
530 | char GetEndXXXCommand(char es);
|
---|
531 | void GetDefaultNameFromES(char es,char *name);
|
---|
532 | void GetCalcName(int idCalc,char *name);
|
---|
533 | BOOL IsFile(char *path);
|
---|
534 | BOOL ShortPathToLongPath(char ShortPath[MAX_PATH],char *LongPath);
|
---|
535 | BOOL GetFolder(HWND hWnd,char *folder,char *OpenFolderTitle);
|
---|
536 | void ShortPathToLongPath(const char *ShortPath,char *LongPath);
|
---|
537 |
|
---|
538 | //calculation.cpp
|
---|
539 | bool IsNumberTopChar(const char *buffer);
|
---|
540 | bool IsNumberChar(const char c);
|
---|
541 | BOOL IsNumCalcMark(const char *Command,int p);
|
---|
542 | BOOL IsNumCalcMark_Back(const char *Command,int p);
|
---|
543 | BOOL IsStrCalcMark(const char c);
|
---|
544 | BOOL IsExponent(const char *Command,int p);
|
---|
545 | int GetLiteralIndex(_int64 i64data);
|
---|
546 | int NeutralizationType(int type1,LONG_PTR index1,int type2,LONG_PTR index2);
|
---|
547 | DWORD GetLiteralValue(char *value,_int64 *pi64,int BaseType);
|
---|
548 | BOOL GetConstCalcBuffer(char *name,char *Parameter,char *pCalcBuffer);
|
---|
549 | DWORD GetConstValue(char *name,double *dbl,char *buffer,LONG_PTR *plpIndex);
|
---|
550 | BOOL IsStringObjectType(TYPEINFO *pTypeInfo);
|
---|
551 | BOOL IsStringSubsituation(CClass *pobj_c);
|
---|
552 | int IsStrCalculation(char *Command);
|
---|
553 | BYTE GetCalcId(const char *Command,int *pi);
|
---|
554 | BOOL GetNumOpeElements(const char *Command,int *pnum,
|
---|
555 | char *values[255],long calc[255],long stack[255]);
|
---|
556 |
|
---|
557 | //NumOpe_GetType.cpp
|
---|
558 | int AutoBigCast(int BaseType,int CalcType);
|
---|
559 | BOOL CheckCalcType(int idCalc,int *type,int sp);
|
---|
560 | int NumOpe_GetType(char *Command,TYPEINFO *pBaseType,LONG_PTR *plpIndex);
|
---|
561 |
|
---|
562 | //Subroutine.cpp
|
---|
563 | int GetCallProcName(char *buffer,char *name);
|
---|
564 | int GetProc(char *name,void **ppInfo);
|
---|
565 | void SplitObjectName(const char *name,char *ObjectName,int *pRefType);
|
---|
566 | bool SplitMemberName( const char *desc, char *object, char *member );
|
---|
567 | int CallProc(int idProc,void *pInfo,char *name,char *Parameter,LONG_PTR *plpRetIndex);
|
---|
568 | BOOL CallPropertyMethod(char *variable,char *RightSide,TYPEINFO *pRetTypeInfo);
|
---|
569 | int GetReturnTypeOfProc(int idProc,void *pInfo,char *name,char *Parameter,LONG_PTR *plpRetIndex);
|
---|
570 | BOOL GetReturnTypeOfPropertyMethod(char *variable,char *RightSide,TYPEINFO *pRetTypeInfo);
|
---|
571 | bool GetReturnTypeOfIndexerGetterProc(CClass *pobj_Class,TYPEINFO &RetTypeInfo);
|
---|
572 | BOOL CompareParameter(PARAMETER_INFO *ppi1,int pi_num1,PARAMETER_INFO *ppi2,int pi_num2);
|
---|
573 | SUBINFO *AddSubData(char *buffer,int NowLine,BOOL bVirtual,CClass *pobj_c,BOOL bStatic=0);
|
---|
574 | void GetSubInfo(void);
|
---|
575 | void DeleteSubInfo(SUBINFO **ppSubHash,char **ppMacroNames,int MacroNum);
|
---|
576 | void DeleteDeclareInfo(void);
|
---|
577 | int AddProcPtrInfo(char *buffer,DWORD dwProcType);
|
---|
578 | void DeleteProcPtrInfo(void);
|
---|
579 |
|
---|
580 | //LoopRefCheck.cpp
|
---|
581 | class CLoopRefCheck{
|
---|
582 | char **names;
|
---|
583 | int num;
|
---|
584 | void init();
|
---|
585 | public:
|
---|
586 | CLoopRefCheck();
|
---|
587 | ~CLoopRefCheck();
|
---|
588 | void add(char *lpszInheritsClass);
|
---|
589 | void del(char *lpszInheritsClass);
|
---|
590 | BOOL check(char *lpszInheritsClass);
|
---|
591 | };
|
---|
592 | extern CLoopRefCheck *pobj_LoopRefCheck;
|
---|
593 |
|
---|
594 | //DataTable.cpp
|
---|
595 | class DataTable{
|
---|
596 | void *pdata;
|
---|
597 | int size;
|
---|
598 |
|
---|
599 | public:
|
---|
600 | DataTable();
|
---|
601 | ~DataTable();
|
---|
602 | void Init();
|
---|
603 |
|
---|
604 | int AddBinary( const void *pdata, int size );
|
---|
605 | int Add( _int64 i64data );
|
---|
606 | int Add( int i32data );
|
---|
607 | int Add( double dbl );
|
---|
608 | int Add( float flt );
|
---|
609 | int AddString( const char *str, int length );
|
---|
610 | int AddString( const char *str );
|
---|
611 |
|
---|
612 | const void *GetPtr() const;
|
---|
613 | int GetSize() const;
|
---|
614 | };
|
---|
615 | extern DataTable dataTable;
|
---|
616 |
|
---|
617 | //error.cpp
|
---|
618 | void SetError(int ErrorNum,const char *KeyWord,int pos);
|
---|
619 | void CompileMessage(char *buffer);
|
---|
620 | bool CheckDifferentType(const int VarType,const LONG_PTR lpVarIndex,const int CalcType,const LONG_PTR lpCalcIndex,const char *pszFuncName,const int ParmNum);
|
---|
621 |
|
---|
622 | //Compile.cpp
|
---|
623 | void GetIdentifierToken( char *token, const char *source, int &pos );
|
---|
624 | int JumpStatement(const char *source, int &pos);
|
---|
625 | void DebugVariable(void);
|
---|
626 | void Compile(void);
|
---|
627 |
|
---|
628 | //gc.cpp
|
---|
629 | void InitGCVariables(void);
|
---|
630 | void PerformedGcVarSchedule(void);
|
---|
631 |
|
---|
632 |
|
---|
633 |
|
---|
634 | #ifdef _DEBUG
|
---|
635 | /*Debug*/
|
---|
636 | /*
|
---|
637 | #define HeapAlloc CheckHeapAlloc
|
---|
638 | #define HeapReAlloc CheckHeapReAlloc
|
---|
639 | LPVOID CheckHeapAlloc(HANDLE hHeap,DWORD dwFlags,DWORD dwBytes);
|
---|
640 | LPVOID CheckHeapReAlloc(HANDLE hHeap,DWORD dwFlags,LPVOID lpMem,DWORD dwBytes);
|
---|
641 | */
|
---|
642 | #endif
|
---|