1 | #include "stdafx.h"
|
---|
2 |
|
---|
3 | #include <jenga/include/smoothie/Smoothie.h>
|
---|
4 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
---|
5 |
|
---|
6 | #include <Program.h>
|
---|
7 | #include <Compiler.h>
|
---|
8 | #include <LexicalScope.h>
|
---|
9 | #include <Class.h>
|
---|
10 | #include <Variable.h>
|
---|
11 | #include <NamespaceSupporter.h>
|
---|
12 |
|
---|
13 | #include "../BasicCompiler_Common/common.h"
|
---|
14 | #include "Opcode.h"
|
---|
15 |
|
---|
16 |
|
---|
17 | void SystemProc( const UserProc &userProc ){
|
---|
18 | if( userProc.GetName() == "_System_GetEip" ){
|
---|
19 | //mov eax,dword ptr[esp]
|
---|
20 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_ESP, 0, MOD_BASE );
|
---|
21 |
|
---|
22 | //ret
|
---|
23 | compiler.codeGenerator.op_ret();
|
---|
24 | }
|
---|
25 | else if( userProc.GetName() == "_System_InitDllGlobalVariables" ){
|
---|
26 | ////////////////////////////////////////
|
---|
27 | // DLLのグローバル領域をコンパイル
|
---|
28 | ////////////////////////////////////////
|
---|
29 |
|
---|
30 | if( !compiler.IsDll() ){
|
---|
31 | //ret
|
---|
32 | compiler.codeGenerator.op_ret();
|
---|
33 |
|
---|
34 | return;
|
---|
35 | }
|
---|
36 |
|
---|
37 | const UserProc *pBackUserProc;
|
---|
38 | pBackUserProc = &UserProc::CompilingUserProc();
|
---|
39 | UserProc::CompileStartForGlobalArea();
|
---|
40 |
|
---|
41 | int BackCp;
|
---|
42 | BackCp=cp;
|
---|
43 | cp=-1;
|
---|
44 |
|
---|
45 | extern BOOL bDebugCompile;
|
---|
46 | if(bDebugCompile){
|
---|
47 | //デバッグ用の変数を定義
|
---|
48 | DebugVariable();
|
---|
49 | }
|
---|
50 |
|
---|
51 | //GC用の変数を定義
|
---|
52 | InitGCVariables();
|
---|
53 |
|
---|
54 | //_System_StartupProgramの呼び出し
|
---|
55 | extern const UserProc *pSub_System_StartupProgram;
|
---|
56 | compiler.codeGenerator.op_call(pSub_System_StartupProgram);
|
---|
57 |
|
---|
58 | //クラスに属する静的メンバを定義
|
---|
59 | compiler.GetObjectModule().meta.GetClasses().InitStaticMember();
|
---|
60 |
|
---|
61 | GetGlobalDataForDll();
|
---|
62 |
|
---|
63 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
64 | cp=BackCp;
|
---|
65 |
|
---|
66 | //ret
|
---|
67 | compiler.codeGenerator.op_ret();
|
---|
68 | }
|
---|
69 | else if( userProc.GetName() == "_System_InitStaticLocalVariables" ){
|
---|
70 | //静的ローカルオブジェクトのコンストラクタ呼び出し
|
---|
71 |
|
---|
72 | BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
|
---|
73 | if(memicmp(pVar->GetName().c_str(),"Static%",7)==0){
|
---|
74 | //コンストラクタ呼び出し
|
---|
75 | if( pVar->GetType().IsObject() ){
|
---|
76 |
|
---|
77 | //エラー用
|
---|
78 | cp=pVar->source_code_address;
|
---|
79 |
|
---|
80 | CallConstructor(
|
---|
81 | pVar->GetName().c_str(),
|
---|
82 | pVar->GetSubscripts(),
|
---|
83 | pVar->GetType(),
|
---|
84 | pVar->GetParamStrForConstructor().c_str());
|
---|
85 | }
|
---|
86 | }
|
---|
87 | }
|
---|
88 |
|
---|
89 | //ret
|
---|
90 | compiler.codeGenerator.op_ret();
|
---|
91 | }
|
---|
92 | else if( userProc.GetName() == "_System_Call_Destructor_of_GlobalObject" ){
|
---|
93 |
|
---|
94 | const UserProc *pBackUserProc;
|
---|
95 | pBackUserProc = &UserProc::CompilingUserProc();
|
---|
96 | UserProc::CompileStartForGlobalArea();
|
---|
97 |
|
---|
98 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
99 |
|
---|
100 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
101 |
|
---|
102 |
|
---|
103 | //ret
|
---|
104 | compiler.codeGenerator.op_ret();
|
---|
105 | }
|
---|
106 | else if( userProc.GetName() == "_System_GetSp" ){
|
---|
107 | //mov eax,esp
|
---|
108 | compiler.codeGenerator.op_mov_RR(REG_EAX,REG_ESP);
|
---|
109 |
|
---|
110 | //add eax,PTR_SIZE
|
---|
111 | compiler.codeGenerator.op_add_RV8(REG_EAX,PTR_SIZE);
|
---|
112 |
|
---|
113 | //ret
|
---|
114 | compiler.codeGenerator.op_ret();
|
---|
115 | }
|
---|
116 | else if( userProc.GetName() == "_allrem" ){
|
---|
117 | //乗除演算用の特殊関数(64ビット整数対応)
|
---|
118 | BYTE Buffer_allrem[]={
|
---|
119 | 0x53,0x57,0x33,0xFF,0x8B,0x44,0x24,0x10,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x0C,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x10,0x89,0x54,0x24,0x0C,0x8B,0x44,0x24,0x18,0x0B,0xC0,0x7D,0x13,0x8B,0x54,0x24,0x14,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x18,0x89,0x54,0x24,0x14,0x0B,0xC0,0x75,0x1B,0x8B,0x4C,0x24,0x14,0x8B,0x44,0x24,0x10,0x33,0xD2,0xF7,0xF1,0x8B,0x44,0x24,0x0C,0xF7,0xF1,0x8B,0xC2,0x33,0xD2,0x4F,0x79,0x4E,0xEB,0x53,0x8B,0xD8,0x8B,0x4C,0x24,0x14,0x8B,0x54,0x24,0x10,0x8B,0x44,0x24,0x0C,0xD1,0xEB,0xD1,0xD9,0xD1,0xEA,0xD1,0xD8,0x0B,0xDB,0x75,0xF4,0xF7,0xF1,0x8B,0xC8,0xF7,0x64,0x24,0x18,0x91,0xF7,0x64,0x24,0x14,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x10,0x77,0x08,0x72,0x0E,0x3B,0x44,0x24,0x0C,0x76,0x08,0x2B,0x44,0x24,0x14,0x1B,0x54,0x24,0x18,0x2B,0x44,0x24,0x0C,0x1B,0x54,0x24,0x10,0x4F,0x79,0x07,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,0x00,0x5F,0x5B,0xC2,0x10,0x00
|
---|
120 | };
|
---|
121 |
|
---|
122 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allrem, 178 ) );
|
---|
123 | }
|
---|
124 | else if( userProc.GetName() == "_aullrem" ){
|
---|
125 | //乗除演算用の特殊関数(64ビット整数対応)
|
---|
126 | BYTE Buffer_aullrem[]={
|
---|
127 | 0x53,0x8B,0x44,0x24,0x14,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x10,0x8B,
|
---|
128 | 0x44,0x24,0x0C,0x33,0xD2,0xF7,0xF1,0x8B,0x44,0x24,0x08,0xF7,0xF1,0x8B,
|
---|
129 | 0xC2,0x33,0xD2,0xEB,0x50,0x8B,0xC8,0x8B,0x5C,0x24,0x10,0x8B,0x54,0x24,
|
---|
130 | 0x0C,0x8B,0x44,0x24,0x08,0xD1,0xE9,0xD1,0xDB,0xD1,0xEA,0xD1,0xD8,0x0B,
|
---|
131 | 0xC9,0x75,0xF4,0xF7,0xF3,0x8B,0xC8,0xF7,0x64,0x24,0x14,0x91,0xF7,0x64,
|
---|
132 | 0x24,0x10,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x0C,0x77,0x08,0x72,0x0E,
|
---|
133 | 0x3B,0x44,0x24,0x08,0x76,0x08,0x2B,0x44,0x24,0x10,0x1B,0x54,0x24,0x14,
|
---|
134 | 0x2B,0x44,0x24,0x08,0x1B,0x54,0x24,0x0C,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,
|
---|
135 | 0x00,0x5B,0xC2,0x10,0x00
|
---|
136 | };
|
---|
137 |
|
---|
138 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aullrem, 117 ) );
|
---|
139 | }
|
---|
140 | else if( userProc.GetName() == "_allmul" ){
|
---|
141 | //乗算用の特殊関数(64ビット整数対応)
|
---|
142 | BYTE Buffer_allmul[]={
|
---|
143 | 0x8B,0x44,0x24,0x08,0x8B,0x4C,0x24,0x10,0x0B,0xC8,0x8B,0x4C,0x24,0x0C,0x75,0x09,0x8B,0x44,0x24,0x04,0xF7,0xE1,0xC2,0x10,0x00,0x53,0xF7,0xE1,0x8B,0xD8,0x8B,0x44,0x24,0x08,0xF7,0x64,0x24,0x14,0x03,0xD8,0x8B,0x44,0x24,0x08,0xF7,0xE1,0x03,0xD3,0x5B,0xC2,0x10,0x00
|
---|
144 | };
|
---|
145 |
|
---|
146 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allmul, 52 ) );
|
---|
147 | }
|
---|
148 | else if( userProc.GetName() == "_alldiv" ){
|
---|
149 | //除算用の特殊関数(64ビット整数対応)
|
---|
150 | BYTE Buffer_alldiv[]={
|
---|
151 | 0x57,0x56,0x53,0x33,0xFF,0x8B,0x44,0x24,0x14,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x10,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x14,0x89,0x54,0x24,0x10,0x8B,0x44,0x24,0x1C,0x0B,0xC0,0x7D,0x14,0x47,0x8B,0x54,0x24,0x18,0xF7,0xD8,0xF7,0xDA,0x83,0xD8,0x00,0x89,0x44,0x24,0x1C,0x89,0x54,0x24,0x18,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x18,0x8B,0x44,0x24,0x14,0x33,0xD2,0xF7,0xF1,0x8B,0xD8,0x8B,0x44,0x24,0x10,0xF7,0xF1,0x8B,0xD3,0xEB,0x41,0x8B,0xD8,0x8B,0x4C,0x24,0x18,0x8B,0x54,0x24,0x14,0x8B,0x44,0x24,0x10,0xD1,0xEB,0xD1,0xD9,0xD1,0xEA,0xD1,0xD8,0x0B,0xDB,0x75,0xF4,0xF7,0xF1,0x8B,0xF0,0xF7,0x64,0x24,0x1C,0x8B,0xC8,0x8B,0x44,0x24,0x18,0xF7,0xE6,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x14,0x77,0x08,0x72,0x07,0x3B,0x44,0x24,0x10,0x76,0x01,0x4E,0x33,0xD2,0x8B,0xC6,0x4F,0x75,0x07,0xF7,0xDA,0xF7,0xD8,0x83,0xDA,0x00,0x5B,0x5E,0x5F,0xC2,0x10,0x00
|
---|
152 | };
|
---|
153 |
|
---|
154 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_alldiv, 170 ) );
|
---|
155 | }
|
---|
156 | else if( userProc.GetName() == "_aulldiv" ){
|
---|
157 | //整数除算用の特殊関数(64ビット整数対応)
|
---|
158 | BYTE Buffer_aulldiv[]={
|
---|
159 | 0x53,0x56,0x8B,0x44,0x24,0x18,0x0B,0xC0,0x75,0x18,0x8B,0x4C,0x24,0x14,
|
---|
160 | 0x8B,0x44,0x24,0x10,0x33,0xD2,0xF7,0xF1,0x8B,0xD8,0x8B,0x44,0x24,0x0C,
|
---|
161 | 0xF7,0xF1,0x8B,0xD3,0xEB,0x41,0x8B,0xC8,0x8B,0x5C,0x24,0x14,0x8B,0x54,
|
---|
162 | 0x24,0x10,0x8B,0x44,0x24,0x0C,0xD1,0xE9,0xD1,0xDB,0xD1,0xEA,0xD1,0xD8,
|
---|
163 | 0x0B,0xC9,0x75,0xF4,0xF7,0xF3,0x8B,0xF0,0xF7,0x64,0x24,0x18,0x8B,0xC8,
|
---|
164 | 0x8B,0x44,0x24,0x14,0xF7,0xE6,0x03,0xD1,0x72,0x0E,0x3B,0x54,0x24,0x10,
|
---|
165 | 0x77,0x08,0x72,0x07,0x3B,0x44,0x24,0x0C,0x76,0x01,0x4E,0x33,0xD2,0x8B,
|
---|
166 | 0xC6,0x5E,0x5B,0xC2,0x10,0x00
|
---|
167 | };
|
---|
168 |
|
---|
169 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aulldiv, 104 ) );
|
---|
170 | }
|
---|
171 | else if( userProc.GetName() == "_allshl" ){
|
---|
172 | //符号あり左ビットシフト用の特殊関数(64ビット整数対応)
|
---|
173 | BYTE Buffer_allshl[]={
|
---|
174 | 0x80,0xF9,0x40,0x73,0x15,0x80,0xF9,0x20,0x73,0x06,0x0F,0xA5,0xC2,0xD3,0xE0,0xC3,0x8B,0xD0,0x33,0xC0,0x80,0xE1,0x1F,0xD3,0xE2,0xC3,0x33,0xC0,0x33,0xD2,0xC3
|
---|
175 | };
|
---|
176 |
|
---|
177 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allshl, 31 ) );
|
---|
178 | }
|
---|
179 | else if( userProc.GetName() == "_allshr" ){
|
---|
180 | //符号あり右ビットシフト用の特殊関数(64ビット整数対応)
|
---|
181 | BYTE Buffer_allshr[]={
|
---|
182 | 0x80,0xF9,0x40,0x73,0x16,0x80,0xF9,0x20,0x73,0x06,0x0F,0xAD,0xD0,0xD3,0xFA,0xC3,0x8B,0xC2,0xC1,0xFA,0x1F,0x80,0xE1,0x1F,0xD3,0xF8,0xC3,0xC1,0xFA,0x1F,0x8B,0xC2,0xC3
|
---|
183 | };
|
---|
184 |
|
---|
185 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_allshr, 33 ) );
|
---|
186 | }
|
---|
187 | else if( userProc.GetName() == "_aullshr" ){
|
---|
188 | //符号なし右ビットシフト用の特殊関数(64ビット整数対応)
|
---|
189 | BYTE Buffer_aullshr[]={
|
---|
190 | 0x80,0xF9,0x40, //cmp cl,40h
|
---|
191 | 0x73,0x15, //jae RETZERO (0040d71a)
|
---|
192 | 0x80,0xF9,0x20, //cmp cl,20h
|
---|
193 | 0x73,0x06, //jae MORE32 (0040d710)
|
---|
194 | 0x0F,0xAD,0xD0, //shrd eax,edx,cl
|
---|
195 | 0xD3,0xEA, //shr edx,cl
|
---|
196 | 0xC3, //ret
|
---|
197 | //MORE32:
|
---|
198 | 0x8B,0xC2, //mov eax,edx
|
---|
199 | 0x33,0xD2, //xor edx,edx
|
---|
200 | 0x80,0xE1,0x1F, //and cl,1Fh
|
---|
201 | 0xD3,0xE8, //shr eax,cl
|
---|
202 | 0xC3, //ret
|
---|
203 | //RETZERO:
|
---|
204 | 0x33,0xC0, //xor eax,eax
|
---|
205 | 0x33,0xD2, //xor edx,edx
|
---|
206 | 0xC3 //ret
|
---|
207 | };
|
---|
208 |
|
---|
209 | compiler.codeGenerator.PutOld( NativeCode( (const char *)Buffer_aullshr, 31 ) );
|
---|
210 | }
|
---|
211 | else{
|
---|
212 | SetError();
|
---|
213 | }
|
---|
214 | }
|
---|
215 | void AutoGeneration( const UserProc &userProc){
|
---|
216 | if( userProc.GetName() == "InitializeUserTypes"
|
---|
217 | && userProc.HasParentClass()
|
---|
218 | && userProc.GetParentClass().GetName() == "_System_TypeBase" ){
|
---|
219 |
|
---|
220 | compiler.GetObjectModule().meta.GetClasses().Compile_System_InitializeUserTypes();
|
---|
221 | }
|
---|
222 | else if( userProc.GetName() == "RegisterGlobalRoots"
|
---|
223 | && userProc.HasParentClass()
|
---|
224 | && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" ){
|
---|
225 |
|
---|
226 | Compile_AddGlobalRootsForGc();
|
---|
227 | }
|
---|
228 | else if( userProc.GetName() == compiler.globalAreaProcName ){
|
---|
229 | ////////////////////////////////////////
|
---|
230 | // グローバル領域をコンパイル
|
---|
231 | ////////////////////////////////////////
|
---|
232 |
|
---|
233 | const UserProc *pBackUserProc = &UserProc::CompilingUserProc();
|
---|
234 | UserProc::CompileStartForGlobalArea();
|
---|
235 |
|
---|
236 | int BackCp = cp;
|
---|
237 | cp=-1;
|
---|
238 |
|
---|
239 | //クラスに属する静的メンバを定義
|
---|
240 | compiler.GetObjectModule().meta.GetClasses().InitStaticMember();
|
---|
241 |
|
---|
242 | //グローバル実行領域をコンパイル開始
|
---|
243 | CompileBuffer(0,0);
|
---|
244 |
|
---|
245 | //Goto未知ラベルスケジュールが存在したらエラーにする
|
---|
246 | BOOST_FOREACH( const GotoLabelSchedule *pGotoLabelSchedule, compiler.codeGenerator.gotoLabelSchedules )
|
---|
247 | {
|
---|
248 | if(pGotoLabelSchedule->GetName().size()>0){
|
---|
249 | SetError(6,pGotoLabelSchedule->GetName(),pGotoLabelSchedule->GetSourceCodePos());
|
---|
250 | }
|
---|
251 | else{
|
---|
252 | char temporary[255];
|
---|
253 | sprintf(temporary,"%d",pGotoLabelSchedule->GetLineNum());
|
---|
254 | SetError(6,temporary,pGotoLabelSchedule->GetSourceCodePos());
|
---|
255 | }
|
---|
256 | }
|
---|
257 |
|
---|
258 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
259 | cp=BackCp;
|
---|
260 | }
|
---|
261 | else if( userProc.HasParentClass()
|
---|
262 | && userProc.IsCastOperator()
|
---|
263 | && userProc.ReturnType().IsInterface() )
|
---|
264 | {
|
---|
265 | // インターフェイス型にキャストするためのメソッド
|
---|
266 |
|
---|
267 | int vtblMasterListIndex = userProc.GetParentClass().GetVtblMasterListIndex( &userProc.ReturnType().GetClass() );
|
---|
268 |
|
---|
269 | char temporary[1024];
|
---|
270 | sprintf( temporary,
|
---|
271 | "Return New %s(ObjPtr( This ),Get_LONG_PTR( (Get_LONG_PTR( ObjPtr(This) ) + SizeOf(LONG_PTR)*%d) As VoidPtr ) As VoidPtr )",
|
---|
272 | userProc.ReturnType().GetClass().GetName().c_str(),
|
---|
273 | vtblMasterListIndex
|
---|
274 | );
|
---|
275 | MakeMiddleCode( temporary );
|
---|
276 |
|
---|
277 | ChangeOpcode( temporary );
|
---|
278 | }
|
---|
279 | else{
|
---|
280 | SetError();
|
---|
281 | }
|
---|
282 | }
|
---|
283 |
|
---|
284 | void _compile_proc(const UserProc *pUserProc)
|
---|
285 | {
|
---|
286 | extern char *basbuf;
|
---|
287 | extern HANDLE hHeap;
|
---|
288 | extern BOOL bDebugCompile;
|
---|
289 | int i3,i4,BaseOffset;
|
---|
290 | char temporary[VN_SIZE];
|
---|
291 |
|
---|
292 | if( pUserProc->GetLocalVars().size() ){
|
---|
293 | SetError();
|
---|
294 | return;
|
---|
295 | }
|
---|
296 |
|
---|
297 | trace_for_sourcecodestep( "★★★ " << pUserProc->GetFullName() << "のコンパイルを開始" );
|
---|
298 |
|
---|
299 | pUserProc->CompleteCompile();
|
---|
300 |
|
---|
301 | extern BOOL bSystemProc;
|
---|
302 | if(memcmp(pUserProc->GetName().c_str(),"_System_",8)==0) bSystemProc=1;
|
---|
303 | else bSystemProc=0;
|
---|
304 |
|
---|
305 | extern BOOL bDebugSupportProc;
|
---|
306 | if(memcmp(pUserProc->GetName().c_str(),"_DebugSys_",10)==0){
|
---|
307 | if(!bDebugCompile){
|
---|
308 | return;
|
---|
309 | }
|
---|
310 | bDebugSupportProc=1;
|
---|
311 | }
|
---|
312 | else bDebugSupportProc=0;
|
---|
313 |
|
---|
314 | if( pUserProc->GetCodeSize() != 0 || pUserProc->GetNativeCode().GetSize() != 0 )
|
---|
315 | {
|
---|
316 | // 既にコード生成が行われている場合はエラー
|
---|
317 | SetError();
|
---|
318 | }
|
---|
319 |
|
---|
320 | //コンパイル中の関数が属するクラス
|
---|
321 | compiler.pCompilingClass = pUserProc->GetParentClassPtr();
|
---|
322 |
|
---|
323 | //コンパイルスタートをクラス管理クラスに追加
|
---|
324 | compiler.GetObjectModule().meta.GetClasses().StartCompile( pUserProc );
|
---|
325 |
|
---|
326 | //コンパイル中の関数
|
---|
327 | UserProc::CompileStartForUserProc( pUserProc );
|
---|
328 |
|
---|
329 | // コンパイル中の関数が属する名前空間
|
---|
330 | compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
|
---|
331 |
|
---|
332 | // コンパイル中の関数でImportsされている名前空間
|
---|
333 | compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
|
---|
334 |
|
---|
335 | // コード生成対象を選択
|
---|
336 | compiler.codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
|
---|
337 |
|
---|
338 | if(pUserProc->IsSystem()){
|
---|
339 | ////////////////////
|
---|
340 | // 特殊関数
|
---|
341 | ////////////////////
|
---|
342 |
|
---|
343 | extern int AllLocalVarSize;
|
---|
344 | AllLocalVarSize=0;
|
---|
345 |
|
---|
346 | SystemProc(*pUserProc);
|
---|
347 | return;
|
---|
348 | }
|
---|
349 |
|
---|
350 | if( !pUserProc->IsAutoGeneration() )
|
---|
351 | {
|
---|
352 | cp=pUserProc->GetCodePos();
|
---|
353 | for(;;cp++){
|
---|
354 | if(IsCommandDelimitation(basbuf[cp])) break;
|
---|
355 | }
|
---|
356 | cp--;
|
---|
357 | }
|
---|
358 |
|
---|
359 | //ローカル変数に関する情報
|
---|
360 | extern int AllLocalVarSize;
|
---|
361 | AllLocalVarSize=0;
|
---|
362 |
|
---|
363 | //パラメータ用の変数データを考慮
|
---|
364 | for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
|
---|
365 | Parameter ¶m = *pUserProc->RealParams()[i3];
|
---|
366 |
|
---|
367 | Variable *pVar = new Variable( param.GetVarName(), param, false, param.IsRef(), "", false );
|
---|
368 |
|
---|
369 | if( param.IsArray() ){
|
---|
370 | pVar->SetArray( param.GetSubscripts() );
|
---|
371 | }
|
---|
372 |
|
---|
373 | int varSize;
|
---|
374 | if( param.IsRef() == false && param.IsStruct() ){
|
---|
375 | //構造体のByValパラメータ
|
---|
376 | pVar->ThisIsParameter();
|
---|
377 | varSize=PTR_SIZE;
|
---|
378 | }
|
---|
379 | else{
|
---|
380 | if( param.IsArray() == false ){
|
---|
381 | varSize = pVar->GetMemorySize();
|
---|
382 | }
|
---|
383 | else{
|
---|
384 | varSize=PTR_SIZE;
|
---|
385 | }
|
---|
386 | }
|
---|
387 | AllLocalVarSize+=varSize;
|
---|
388 | pVar->SetOffsetAddress( AllLocalVarSize );
|
---|
389 |
|
---|
390 | //レキシカルスコープ情報
|
---|
391 | pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
|
---|
392 | pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
|
---|
393 | pVar->bLiving=TRUE;
|
---|
394 |
|
---|
395 | pUserProc->GetLocalVars().push_back( pVar );
|
---|
396 | }
|
---|
397 |
|
---|
398 | //Thisポインタを示すローカルオフセット値をセット
|
---|
399 | extern int LocalVar_ThisPtrOffset;
|
---|
400 | LocalVar_ThisPtrOffset=AllLocalVarSize;
|
---|
401 |
|
---|
402 | BaseOffset=AllLocalVarSize;
|
---|
403 |
|
---|
404 | //ret用のアドレスを考慮
|
---|
405 | AllLocalVarSize+=sizeof(long);
|
---|
406 |
|
---|
407 |
|
---|
408 | ///////////////////////
|
---|
409 | // ここからコード生成
|
---|
410 |
|
---|
411 | //sub esp,AllLocalVarSize(スケジュール)
|
---|
412 | const PertialSchedule *pAllLocalVarPertialSchedule = compiler.codeGenerator.op_sub_esp( 0, true );
|
---|
413 |
|
---|
414 | //push ebp
|
---|
415 | compiler.codeGenerator.op_push(REG_EBP);
|
---|
416 |
|
---|
417 | //mov ebp,esp
|
---|
418 | compiler.codeGenerator.op_mov_RR( REG_EBP, REG_ESP );
|
---|
419 |
|
---|
420 | //push ebx
|
---|
421 | compiler.codeGenerator.op_push(REG_EBX);
|
---|
422 |
|
---|
423 | //push esi
|
---|
424 | compiler.codeGenerator.op_push( REG_ESI );
|
---|
425 |
|
---|
426 | //push edi
|
---|
427 | compiler.codeGenerator.op_push( REG_EDI );
|
---|
428 |
|
---|
429 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
430 | //戻り値が存在するとき
|
---|
431 |
|
---|
432 | const char *temp = pUserProc->GetName().c_str();
|
---|
433 | if( temp[0]==1&&temp[1]==ESC_OPERATOR ){
|
---|
434 | temp = "_System_ReturnValue";
|
---|
435 | }
|
---|
436 |
|
---|
437 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
438 | //戻り値用の構造体(値型)はパラメータで引き渡される
|
---|
439 | }
|
---|
440 | else{
|
---|
441 | if( pUserProc->ReturnType().IsObject() ){
|
---|
442 | sprintf(temporary,"%s=Nothing%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
443 | }
|
---|
444 | else{
|
---|
445 | //戻り値用の変数の定義
|
---|
446 | sprintf(temporary,"%s%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
447 | }
|
---|
448 |
|
---|
449 | OpcodeDim(temporary,0);
|
---|
450 | }
|
---|
451 | }
|
---|
452 |
|
---|
453 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
454 | compiler.codeGenerator.exitSubCodePositions.clear();
|
---|
455 |
|
---|
456 | //ラベル管理オブジェクトを初期化
|
---|
457 | compiler.codeGenerator.gotoLabels.clear();
|
---|
458 |
|
---|
459 | //Gotoラベルスケジュール
|
---|
460 | compiler.codeGenerator.gotoLabelSchedules.clear();
|
---|
461 |
|
---|
462 | //With情報のメモリを確保
|
---|
463 | extern WITHINFO WithInfo;
|
---|
464 | WithInfo.ppName=(char **)HeapAlloc(hHeap,0,1);
|
---|
465 | WithInfo.pWithCp=(int *)HeapAlloc(hHeap,0,1);
|
---|
466 | WithInfo.num=0;
|
---|
467 |
|
---|
468 | //重複エラー情報管理のメモリを確保
|
---|
469 | extern char **SynonymErrorWords;
|
---|
470 | extern int SynonymErrorNum;
|
---|
471 | SynonymErrorNum=0;
|
---|
472 | SynonymErrorWords=(char **)HeapAlloc(hHeap,0,1);
|
---|
473 |
|
---|
474 | //Continueアドレスを初期化
|
---|
475 | compiler.codeGenerator.ClearContinueArea();
|
---|
476 |
|
---|
477 | //レキシカルスコープ情報を初期化
|
---|
478 | compiler.codeGenerator.lexicalScopes.Init( compiler.codeGenerator.GetNativeCodeSize() );
|
---|
479 |
|
---|
480 | const PertialSchedule *pEspOffsetPertialSchedule = NULL;
|
---|
481 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
482 | //push dword ptr[ebp+(AllLocalVarSize-BaseOffset)](スケジュール)
|
---|
483 | pEspOffsetPertialSchedule = compiler.codeGenerator.op_push_M( REG_EBP, 0, Schedule::None, true );
|
---|
484 |
|
---|
485 | //push dword ptr[ebp](以前のebp)
|
---|
486 | compiler.codeGenerator.op_push_M( REG_EBP );
|
---|
487 |
|
---|
488 | //call _DebugSys_StartProc
|
---|
489 | extern const UserProc *pSub_DebugSys_StartProc;
|
---|
490 | compiler.codeGenerator.op_call(pSub_DebugSys_StartProc);
|
---|
491 | }
|
---|
492 |
|
---|
493 | if(compiler.pCompilingClass){
|
---|
494 | if( pUserProc->GetName() == compiler.pCompilingClass->GetName() ){
|
---|
495 | ////////////////////////////////////
|
---|
496 | // コンストラクタをコンパイルするとき
|
---|
497 | ////////////////////////////////////
|
---|
498 |
|
---|
499 | //コンストラクタのコンパイル開始を通知
|
---|
500 | compiler.pCompilingClass->NotifyStartConstructorCompile();
|
---|
501 |
|
---|
502 | //基底クラスかどうかの識別
|
---|
503 | //(継承元がインターフェイスの場合も基底クラスと見なす)
|
---|
504 | BOOL bThisIsSuperClass;
|
---|
505 | if( !compiler.pCompilingClass->HasSuperClass() ) bThisIsSuperClass=1;
|
---|
506 | else if( compiler.pCompilingClass->GetSuperClass().GetConstructorMethod() == NULL ){
|
---|
507 | //インターフェイスを継承したときはコンストラクタを持たない
|
---|
508 | bThisIsSuperClass=1;
|
---|
509 | }
|
---|
510 | else bThisIsSuperClass=0;
|
---|
511 |
|
---|
512 | if(!bThisIsSuperClass){
|
---|
513 | /* サブクラスコンストラクタをコンパイルしているときは、
|
---|
514 | 基底クラスのコンストラクタを呼び出す */
|
---|
515 |
|
---|
516 | i3=cp+1;
|
---|
517 | while(IsCommandDelimitation(basbuf[i3])) i3++;
|
---|
518 | for(i4=0;;i3++,i4++){
|
---|
519 | if(!IsVariableChar(basbuf[i3])){
|
---|
520 | temporary[i4]=0;
|
---|
521 | break;
|
---|
522 | }
|
---|
523 | temporary[i4]=basbuf[i3];
|
---|
524 | }
|
---|
525 | if( compiler.pCompilingClass->GetSuperClass().GetName() == temporary ){
|
---|
526 | //基底クラスのコンストラクタを呼び出す
|
---|
527 | cp=i3;
|
---|
528 | for(i4=0;;cp++,i4++){
|
---|
529 | if(IsCommandDelimitation(basbuf[cp])){
|
---|
530 | temporary[i4]=0;
|
---|
531 | break;
|
---|
532 | }
|
---|
533 | temporary[i4]=basbuf[cp];
|
---|
534 | }
|
---|
535 | if(!(temporary[0]=='('&&temporary[lstrlen(temporary)-1]==')')){
|
---|
536 | SetError(1,NULL,cp);
|
---|
537 | }
|
---|
538 | RemoveStringPare(temporary);
|
---|
539 |
|
---|
540 | Type dummyType;
|
---|
541 | CallProc( PROC_DEFAULT
|
---|
542 | , &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc()
|
---|
543 | , compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc().GetName().c_str()
|
---|
544 | , temporary
|
---|
545 | , Type() // baseTypeはなし
|
---|
546 | , dummyType
|
---|
547 | );
|
---|
548 | }
|
---|
549 | else{
|
---|
550 | //基底クラスのコンストラクタを暗黙的に呼び出す
|
---|
551 | Opcode_CallProc("",
|
---|
552 | &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc(),
|
---|
553 | 0,
|
---|
554 | ""
|
---|
555 | );
|
---|
556 | }
|
---|
557 | }
|
---|
558 | }
|
---|
559 | else if( pUserProc->IsDestructor() ){
|
---|
560 | //デストラクタをコンパイルしたとき
|
---|
561 |
|
---|
562 | //デストラクタのコンパイル開始を通知
|
---|
563 | compiler.pCompilingClass->NotifyStartDestructorCompile();
|
---|
564 | }
|
---|
565 | }
|
---|
566 |
|
---|
567 | //////////////////////////////////////////
|
---|
568 | //////////////////////////////////////////
|
---|
569 | ////// プロシージャ内をコンパイル ////////
|
---|
570 | if( pUserProc->IsAutoGeneration() ){
|
---|
571 | AutoGeneration( *pUserProc );
|
---|
572 | }
|
---|
573 | else{
|
---|
574 | if(pUserProc->IsMacro()){
|
---|
575 | CompileBuffer(ESC_ENDMACRO,0);
|
---|
576 | }
|
---|
577 | else{
|
---|
578 | if(pUserProc->IsSub()){
|
---|
579 | CompileBuffer(ESC_ENDSUB,0);
|
---|
580 | }
|
---|
581 | else if(pUserProc->IsFunction()){
|
---|
582 | CompileBuffer(ESC_ENDFUNCTION,0);
|
---|
583 | }
|
---|
584 | }
|
---|
585 | }
|
---|
586 | //////////////////////////////////////////
|
---|
587 | //////////////////////////////////////////
|
---|
588 |
|
---|
589 | if( compiler.pCompilingClass ){
|
---|
590 |
|
---|
591 | if( compiler.pCompilingClass->IsCompilingConstructor() ){
|
---|
592 | // コンストラクタをコンパイルしていたとき
|
---|
593 |
|
---|
594 | // コンストラクタのコンパイルが完了したことを通知
|
---|
595 | compiler.pCompilingClass->NotifyFinishConstructorCompile();
|
---|
596 | }
|
---|
597 | else if( pUserProc->IsDestructor() ){
|
---|
598 | ////////////////////////////////////
|
---|
599 | //デストラクタをコンパイルしたとき
|
---|
600 | ////////////////////////////////////
|
---|
601 |
|
---|
602 | // デストラクタのコンパイルが完了したことを通知
|
---|
603 | compiler.pCompilingClass->NotifyFinishDestructorCompile();
|
---|
604 |
|
---|
605 | if( compiler.pCompilingClass->HasSuperClass() ){
|
---|
606 | /* サブクラスのデストラクタをコンパイルしているときは、
|
---|
607 | 基底クラスのデストラクタを呼び出す */
|
---|
608 |
|
---|
609 | const CMethod *method = compiler.pCompilingClass->GetSuperClass().GetDestructorMethod();
|
---|
610 | if( method ){
|
---|
611 | Opcode_CallProc("",
|
---|
612 | &method->GetUserProc(),
|
---|
613 | 0,
|
---|
614 | ""
|
---|
615 | );
|
---|
616 | }
|
---|
617 | }
|
---|
618 | }
|
---|
619 | }
|
---|
620 |
|
---|
621 | //With情報のメモリを解放
|
---|
622 | for(i3=0;i3<WithInfo.num;i3++){
|
---|
623 | SetError(22,"With",WithInfo.pWithCp[i3]);
|
---|
624 | HeapDefaultFree(WithInfo.ppName[i3]);
|
---|
625 | }
|
---|
626 | HeapDefaultFree(WithInfo.ppName);
|
---|
627 | HeapDefaultFree(WithInfo.pWithCp);
|
---|
628 |
|
---|
629 | //push ebp
|
---|
630 | AllLocalVarSize+=sizeof(long);
|
---|
631 |
|
---|
632 | //ローカルオブジェクトの解放処理
|
---|
633 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
634 |
|
---|
635 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
636 | compiler.codeGenerator.ResolveExitSubSchedule();
|
---|
637 |
|
---|
638 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
639 | compiler.codeGenerator.opfix( pEspOffsetPertialSchedule, AllLocalVarSize-BaseOffset-sizeof(long) );
|
---|
640 |
|
---|
641 | //call _DebugSys_EndProc
|
---|
642 | extern const UserProc *pSub_DebugSys_EndProc;
|
---|
643 | compiler.codeGenerator.op_call(pSub_DebugSys_EndProc);
|
---|
644 | }
|
---|
645 |
|
---|
646 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
647 | //戻り値をeax、edxに設定
|
---|
648 | RELATIVE_VAR RelativeVar;
|
---|
649 |
|
---|
650 | const char *temp = pUserProc->GetName().c_str();
|
---|
651 | if( temp[0]==1 && temp[1]==ESC_OPERATOR ){
|
---|
652 | temp="_System_ReturnValue";
|
---|
653 | }
|
---|
654 | GetVarOffsetReadWrite(temp,&RelativeVar,Type());
|
---|
655 |
|
---|
656 | const Type &returnType = pUserProc->ReturnType();
|
---|
657 | if( returnType.IsObject() || returnType.IsStruct() )
|
---|
658 | {
|
---|
659 | SetVarPtrToEax(&RelativeVar);
|
---|
660 | if( returnType.IsObject() )
|
---|
661 | {
|
---|
662 | //mov eax,dword ptr[eax]
|
---|
663 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
664 | }
|
---|
665 | }
|
---|
666 | else if( returnType.IsReal() )
|
---|
667 | {
|
---|
668 | //fld qword ptr[ebp+offset]
|
---|
669 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
670 | compiler.codeGenerator.op_fld_base_offset( returnType.GetBasicType(), REG_EBP, RelativeVar.offset, Schedule::None, true )
|
---|
671 | );
|
---|
672 | }
|
---|
673 | else if( returnType.Is64() )
|
---|
674 | {
|
---|
675 | //mov eax,dword ptr[ebp+offset]
|
---|
676 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
677 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
678 | );
|
---|
679 |
|
---|
680 | //mov edx,dword ptr[ebp+offset+sizeof(long)]
|
---|
681 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
682 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_EBP, RelativeVar.offset+sizeof(long), MOD_BASE_DISP32, Schedule::None, true )
|
---|
683 | );
|
---|
684 | }
|
---|
685 | else if( returnType.GetSize() == sizeof(long) )
|
---|
686 | {
|
---|
687 | //mov eax,dword ptr[ebp+offset]
|
---|
688 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
689 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
690 | );
|
---|
691 | }
|
---|
692 | else if( returnType.GetSize() == sizeof(short) )
|
---|
693 | {
|
---|
694 | //xor eax,eax(eaxを0に初期化する)
|
---|
695 | compiler.codeGenerator.op_zero_reg(REG_EAX);
|
---|
696 |
|
---|
697 | //mov ax,word ptr[ebp+offset]
|
---|
698 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
699 | compiler.codeGenerator.op_mov_RM( sizeof(short), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
700 | );
|
---|
701 | }
|
---|
702 | else if( returnType.GetSize() == sizeof(char) )
|
---|
703 | {
|
---|
704 | //xor eax,eax(eaxを0に初期化する)
|
---|
705 | compiler.codeGenerator.op_zero_reg(REG_EAX);
|
---|
706 |
|
---|
707 | //mov al,byte ptr[ebp+offset]
|
---|
708 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
709 | compiler.codeGenerator.op_mov_RM( sizeof(char), REG_EAX, REG_EBP, RelativeVar.offset, MOD_BASE_DISP32, Schedule::None, true )
|
---|
710 | );
|
---|
711 | }
|
---|
712 | else
|
---|
713 | {
|
---|
714 | SetError();
|
---|
715 | }
|
---|
716 | }
|
---|
717 |
|
---|
718 | //ローカル変数アドレススケジュール
|
---|
719 | BOOST_FOREACH( const PertialSchedule *pPertialSchedule, compiler.codeGenerator.localVarPertialSchedules )
|
---|
720 | {
|
---|
721 | compiler.codeGenerator.opfix_offset( pPertialSchedule, AllLocalVarSize );
|
---|
722 | }
|
---|
723 | compiler.codeGenerator.localVarPertialSchedules.clear();
|
---|
724 | BOOST_FOREACH( Variable *pVar, pUserProc->GetLocalVars() ){
|
---|
725 | //後にデバッグで利用する
|
---|
726 | pVar->SetOffsetAddress( AllLocalVarSize - pVar->GetOffsetAddress() );
|
---|
727 | }
|
---|
728 |
|
---|
729 | //push ebp、ret用のアドレスを考慮
|
---|
730 | AllLocalVarSize-=sizeof(long)*2;
|
---|
731 |
|
---|
732 | //ローカル変数用メモリを確保するためのスケジュール(subコマンド)
|
---|
733 | compiler.codeGenerator.opfix( pAllLocalVarPertialSchedule, AllLocalVarSize - BaseOffset );
|
---|
734 |
|
---|
735 | //pop edi
|
---|
736 | compiler.codeGenerator.op_pop( REG_EDI );
|
---|
737 |
|
---|
738 | //pop esi
|
---|
739 | compiler.codeGenerator.op_pop( REG_ESI );
|
---|
740 |
|
---|
741 | //pop ebx
|
---|
742 | compiler.codeGenerator.op_pop(REG_EBX);
|
---|
743 |
|
---|
744 | if(bDebugCompile){
|
---|
745 | //cmp esp,ebp
|
---|
746 | compiler.codeGenerator.op_cmp_RR( REG_ESP, REG_EBP );
|
---|
747 |
|
---|
748 | //je 6(次のcallとbreakpointを飛び越す)
|
---|
749 | compiler.codeGenerator.op_je( 6 );
|
---|
750 |
|
---|
751 | //call _esp_error
|
---|
752 | extern const UserProc *pSub_esp_error;
|
---|
753 | compiler.codeGenerator.op_call( pSub_esp_error );
|
---|
754 |
|
---|
755 | breakpoint;
|
---|
756 | }
|
---|
757 |
|
---|
758 | //mov esp,ebp
|
---|
759 | compiler.codeGenerator.op_mov_RR( REG_ESP, REG_EBP );
|
---|
760 |
|
---|
761 | //pop ebp
|
---|
762 | compiler.codeGenerator.op_pop(REG_EBP);
|
---|
763 |
|
---|
764 | //add esp AllLocalVarSize
|
---|
765 | compiler.codeGenerator.op_add_esp(AllLocalVarSize-BaseOffset);
|
---|
766 |
|
---|
767 | if( BaseOffset==0 || pUserProc->IsCdecl() ){
|
---|
768 | //ret
|
---|
769 | compiler.codeGenerator.op_ret();
|
---|
770 | }
|
---|
771 | else{
|
---|
772 | //ret BaseOffset(パラメータ分のスタック領域を解放)
|
---|
773 | compiler.codeGenerator.op_ret( (_int16)BaseOffset );
|
---|
774 | }
|
---|
775 |
|
---|
776 |
|
---|
777 | //重複エラー情報管理のメモリを解放
|
---|
778 | for(i3=0;i3<SynonymErrorNum;i3++) HeapDefaultFree(SynonymErrorWords[i3]);
|
---|
779 | HeapDefaultFree(SynonymErrorWords);
|
---|
780 | SynonymErrorWords=0;
|
---|
781 |
|
---|
782 |
|
---|
783 | //ローカル変数のネーム情報は後に解放する
|
---|
784 | }
|
---|