source: dev/trunk/ab5.0/abdev/compiler_x86/Compile_ProcOp.cpp@ 636

Last change on this file since 636 was 636, checked in by dai_9181, 16 years ago

libファイルを跨ったテンプレート展開に対応。

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