source: dev/trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp@ 265

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