source: dev/trunk/ab5.0/abdev/compiler_x64/Compile_ProcOp.cpp@ 704

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

[702]を64bit版にマージ。

File size: 19.9 KB
Line 
1#include "stdafx.h"
2
3#include "Opcode.h"
4
5void SystemProc( const UserProc &userProc ){
6 if( userProc.GetName() == "_System_GetEip" ){
7 //mov rax,qword ptr[rsp]
8 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RAX,REG_RSP,0,MOD_BASE);
9
10 //ret
11 compiler.codeGenerator.op_ret();
12 }
13 else if( userProc.GetName() == "_System_InitDllGlobalVariables" ){
14 ////////////////////////////////////////
15 // DLLのグローバル領域をコンパイル
16 ////////////////////////////////////////
17 if(!compiler.IsDll()){
18 //ret
19 compiler.codeGenerator.op_ret();
20
21 return;
22 }
23
24 int BackCp;
25 BackCp=cp;
26 cp=-1;
27
28 //sub rsp,スタックフレームサイズ
29 const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
30
31 if( compiler.IsDebug() )
32 {
33 //デバッグ用の変数を定義
34 DebugVariable();
35 }
36
37 //GC用の変数を定義
38 InitGCVariables();
39
40 //_System_StartupProgramの呼び出し
41 extern const UserProc *pSub_System_StartupProgram;
42 compiler.codeGenerator.op_call(pSub_System_StartupProgram);
43
44 //クラスに属する静的メンバを定義
45 ActiveBasic::Compiler::ProcedureGenerator::Generate_InitStaticMember(
46 compiler.GetObjectModule().meta.GetClasses()
47 );
48
49 GetGlobalDataForDll();
50
51 //add rsp,スタックフレームサイズ
52 compiler.codeGenerator.op_add_RV(REG_RSP,pobj_sf->GetFrameSize(0));
53
54 //スタックフレームスケジュール(subコマンドに渡す値)
55 compiler.codeGenerator.opfix( pStackFramePertialSchedule, pobj_sf->GetFrameSize(0) );
56
57 cp=BackCp;
58
59 //ret
60 compiler.codeGenerator.op_ret();
61 }
62 else if( userProc.GetName() == "_System_InitStaticLocalVariables" ){
63 //静的ローカルオブジェクトのコンストラクタ呼び出し
64
65 //sub rsp,スタックフレームサイズ
66 const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
67
68 BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
69 if(memicmp(pVar->GetName().c_str(),"Static%",7)==0){
70 //コンストラクタ呼び出し
71 if( pVar->GetType().IsObject() ){
72
73 //エラー用
74 cp=pVar->source_code_address;
75
76 CallConstructor(
77 pVar->GetName().c_str(),
78 pVar->GetSubscripts(),
79 pVar->GetType(),
80 pVar->GetParamStrForConstructor().c_str());
81 }
82 }
83 }
84
85 //add rsp,スタックフレームサイズ
86 compiler.codeGenerator.op_add_RV(REG_RSP,pobj_sf->GetFrameSize(0));
87
88 //スタックフレームスケジュール(subコマンドに渡す値)
89 compiler.codeGenerator.opfix( pStackFramePertialSchedule, pobj_sf->GetFrameSize(0) );
90
91 //ret
92 compiler.codeGenerator.op_ret();
93 }
94 else if( userProc.GetName() == "_System_Call_Destructor_of_GlobalObject" )
95 {
96 //sub rsp,8(※RSPを16バイト境界にあわせるため)
97 compiler.codeGenerator.op_sub_rsp(0x8);
98 compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
99
100 //add rsp,8
101 compiler.codeGenerator.op_add_RV(REG_RSP,0x8);
102
103 //ret
104 compiler.codeGenerator.op_ret();
105 }
106 else{
107 compiler.errorMessenger.OutputFatalError();
108 }
109}
110void AutoGeneration(const UserProc &userProc){
111 if( userProc.GetName() == "InitializeUserTypes"
112 && userProc.HasParentClass()
113 && userProc.GetParentClass().GetName() == "_System_TypeBase" )
114 {
115 ActiveBasic::Compiler::ProcedureGenerator::Generate_System_InitializeUserTypes(
116 compiler.GetObjectModule().meta.GetClasses()
117 );
118 }
119 else if( userProc.GetName() == "InitializeUserTypesForBaseType"
120 && userProc.HasParentClass()
121 && userProc.GetParentClass().GetName() == "_System_TypeBase" )
122 {
123 ActiveBasic::Compiler::ProcedureGenerator::Generate_System_InitializeUserTypesForBaseType(
124 compiler.GetObjectModule().meta.GetClasses()
125 );
126 }
127 else if( userProc.GetName() == "RegisterGlobalRoots"
128 && userProc.HasParentClass()
129 && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" )
130 {
131 Compile_AddGlobalRootsForGc();
132 }
133 else if( userProc.GetName() == compiler.globalAreaProcName )
134 {
135 ////////////////////////////////////////
136 // グローバル領域をコンパイル
137 ////////////////////////////////////////
138
139 UserProc::pGlobalProc = &userProc;
140
141 int BackCp = cp;
142 cp=-1;
143
144 //クラスに属する静的メンバを定義
145 ActiveBasic::Compiler::ProcedureGenerator::Generate_InitStaticMember(
146 compiler.GetObjectModule().meta.GetClasses()
147 );
148
149 //グローバル実行領域をコンパイル開始
150 CompileBuffer(0,0);
151
152 //Goto未知ラベルスケジュールが存在したらエラーにする
153 BOOST_FOREACH( const GotoLabelSchedule *pGotoLabelSchedule, compiler.codeGenerator.gotoLabelSchedules )
154 {
155 if(pGotoLabelSchedule->GetName().size()>0){
156 compiler.errorMessenger.Output(6,pGotoLabelSchedule->GetName(),pGotoLabelSchedule->GetSourceCodePos());
157 }
158 else{
159 char temporary[255];
160 sprintf(temporary,"%d",pGotoLabelSchedule->GetLineNum());
161 compiler.errorMessenger.Output(6,temporary,pGotoLabelSchedule->GetSourceCodePos());
162 }
163 }
164
165 cp=BackCp;
166 }
167 else if( userProc.HasParentClass()
168 && userProc.IsCastOperator()
169 && userProc.ReturnType().IsInterface() )
170 {
171 // インターフェイス型にキャストするためのメソッド
172
173 int vtblMasterListIndex = userProc.GetParentClass().GetVtblMasterListIndex( &userProc.ReturnType().GetClass() );
174
175 char temporary[1024];
176 sprintf( temporary,
177 "Return New %s(ObjPtr( This ),Get_LONG_PTR( (Get_LONG_PTR( ObjPtr(This)+SizeOf(VoidPtr) ) + SizeOf(LONG_PTR)*%d) As VoidPtr ) As VoidPtr )",
178 userProc.ReturnType().GetClass().GetName().c_str(),
179 vtblMasterListIndex
180 );
181 MakeMiddleCode( temporary );
182
183 ChangeOpcode( temporary );
184 }
185 else{
186 compiler.errorMessenger.OutputFatalError();
187 }
188}
189void _compile_proc(const UserProc *pUserProc){
190 extern char *basbuf;
191 extern HANDLE hHeap;
192 int i3,i4;
193 char temporary[VN_SIZE];
194
195 if( pUserProc->GetLocalVars().size() ){
196 compiler.errorMessenger.OutputFatalError();
197 return;
198 }
199
200 trace_for_sourcecodestep( "★★★ " << FormatEscapeSequenceStringToDefaultString( pUserProc->GetFullName() ) << "のコンパイルを開始" );
201
202 pUserProc->CompleteCompile();
203
204 extern BOOL bDebugSupportProc;
205 if(memcmp(pUserProc->GetName().c_str(),"_DebugSys_",10)==0){
206 if( !compiler.IsDebug() )
207 {
208 return;
209 }
210 bDebugSupportProc=1;
211 }
212 else bDebugSupportProc=0;
213
214 compiler.StartProcedureCompile( pUserProc );
215
216 if(pUserProc->IsAutoGenerationSystem()){
217 ////////////////////
218 // 特殊関数
219 ////////////////////
220
221 extern int AllLocalVarSize;
222 AllLocalVarSize=0;
223
224 //スタックフレーム管理用オブジェクトを初期化
225 extern StackFrame *pobj_sf;
226 pobj_sf=new StackFrame();
227
228 SystemProc(*pUserProc);
229
230 //スタックフレーム管理用オブジェクトを破棄
231 delete pobj_sf;
232 pobj_sf=0;
233
234 return;
235 }
236
237 if( !pUserProc->IsAutoGeneration() )
238 {
239 // 対象のソースコードを含むオブジェクトモジュールのインデックスを指定する
240 // ※テンプレート展開がされている場合、対象のソースコードが現在のオブジェクトモジュールではない場合がある
241 compiler.SetCurrentRelationalObjectModuleIndexForSource( pUserProc->GetSourceCodePosition().GetRelationalObjectModuleIndex() );
242 basbuf = const_cast<char *>(compiler.GetCurrentSource().GetBuffer());
243
244 cp=pUserProc->GetSourceCodePosition().GetPos();
245 for(;;cp++){
246 if(IsCommandDelimitation(basbuf[cp])) break;
247 }
248 cp--;
249 }
250
251 //プロシージャ抜け出しスケジュール(Exit Sub/Function)
252 compiler.codeGenerator.exitSubCodePositions.clear();
253
254 //ラベル用のメモリを確保
255 compiler.codeGenerator.gotoLabels.clear();
256
257 //Gotoラベルスケジュール
258 compiler.codeGenerator.gotoLabelSchedules.clear();
259
260 //With情報を初期化
261 extern WithInfos withInfos;
262 withInfos.clear();
263
264 //Continueアドレスを初期化
265 compiler.codeGenerator.ClearContinueArea();
266
267 //ローカル変数に関する情報
268 extern int AllLocalVarSize;
269 AllLocalVarSize=0;
270
271 //レキシカルスコープ情報を初期化
272 compiler.codeGenerator.lexicalScopes.Init( compiler.codeGenerator.GetNativeCodeSize() );
273
274
275 /////////////////////////////////////
276 // パラメータ用の変数データを考慮
277 /////////////////////////////////////
278
279 //パラメータ用の変数データを考慮
280 for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
281 Parameter &param = *pUserProc->RealParams()[i3];
282
283 Variable *pVar = new Variable(
284 ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( param.GetVarName().c_str() ),
285 param,
286 false,
287 param.IsRef(),
288 "",
289 false
290 );
291
292 if( param.IsArray() ){
293 pVar->SetArray( param.GetSubscripts() );
294 }
295
296 int varSize;
297 if( param.IsRef() == false && param.IsStruct() ){
298 //構造体のByValパラメータ
299 pVar->ThisIsByValStructParameter();
300 varSize=PTR_SIZE;
301 }
302 else{
303 if( param.IsArray() == false ){
304 varSize = pVar->GetMemorySize();
305 }
306 else{
307 varSize=PTR_SIZE;
308 }
309 }
310 AllLocalVarSize+=varSize;
311 pVar->SetOffsetAddress( AllLocalVarSize );
312
313 //レキシカルスコープ情報
314 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
315 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
316 pVar->isLiving = true;
317
318 pUserProc->GetLocalVars().push_back( pVar );
319 }
320
321 //Thisポインタを示すローカルオフセット値をセット
322 extern int LocalVar_ThisPtrOffset;
323 LocalVar_ThisPtrOffset=AllLocalVarSize;
324
325 //スタックフレーム管理用クラスを初期化
326 extern StackFrame *pobj_sf;
327 pobj_sf=new StackFrame();
328
329
330 ///////////////////////
331 // ここからコード生成
332
333 for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
334 Parameter &param = *pUserProc->RealParams()[i3];
335 if(i3==3){
336 if(param.IsReal()&&param.IsRef() == false){
337 //movsd qword ptr[rsp+0x20],xmm3
338 compiler.codeGenerator.op_movsd_MR(REG_XMM3,REG_RSP,0x20,MOD_BASE_DISP32);
339 }
340 else{
341 //mov qword ptr[rsp+0x20],r9
342 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_R9,REG_RSP,0x20,MOD_BASE_DISP32);
343 }
344 }
345 if(i3==2){
346 if(param.IsReal()&&param.IsRef() == false){
347 //movsd qword ptr[rsp+0x18],xmm2
348 compiler.codeGenerator.op_movsd_MR(REG_XMM2,REG_RSP,0x18,MOD_BASE_DISP32);
349 }
350 else{
351 //mov qword ptr[rsp+0x18],r8
352 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_R8,REG_RSP,0x18,MOD_BASE_DISP32);
353 }
354 }
355 if(i3==1){
356 if(param.IsReal()&&param.IsRef() == false){
357 //movsd qword ptr[rsp+0x10],xmm1
358 compiler.codeGenerator.op_movsd_MR(REG_XMM1,REG_RSP,0x10,MOD_BASE_DISP32);
359 }
360 else{
361 //mov qword ptr[rsp+0x10],rdx
362 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RDX,REG_RSP,0x10,MOD_BASE_DISP32);
363 }
364 }
365 if(i3==0){
366 if(param.IsReal()&&param.IsRef() == false){
367 //movsd qword ptr[rsp+0x8],xmm0
368 compiler.codeGenerator.op_movsd_MR(REG_XMM0,REG_RSP,0x8,MOD_BASE_DISP32);
369 }
370 else{
371 //mov qword ptr[rsp+0x8],rcx
372 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RCX,REG_RSP,0x8,MOD_BASE_DISP32);
373 }
374 }
375 }
376
377 //ret用のアドレスを考慮
378 AllLocalVarSize+=sizeof(_int64);
379
380 //sub rsp,スタックフレームサイズ
381 const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
382
383 //mov qword ptr[rsp+offset],reg ※スタックフレームを利用
384 pobj_sf->push(REG_RBX);
385 pobj_sf->push(REG_RSI);
386 pobj_sf->push(REG_RDI);
387 pobj_sf->push(REG_R12);
388 pobj_sf->push(REG_R13);
389 pobj_sf->push(REG_R14);
390 pobj_sf->push(REG_R15);
391
392 //ローカル変数のベース値
393 int BaseLocalVar;
394 BaseLocalVar=AllLocalVarSize;
395
396 if( !pUserProc->ReturnType().IsNull() ){
397 //戻り値が存在するとき
398
399 const char *temp = pUserProc->GetName().c_str();
400 if( temp[0]==1&&temp[1]==ESC_OPERATOR ){
401 temp = "_System_ReturnValue";
402 }
403
404 if( pUserProc->ReturnType().IsStruct() ){
405 //戻り値用の構造体(値型)はパラメータで引き渡される
406 }
407 else{
408 if( pUserProc->ReturnType().IsObject() ){
409 sprintf(temporary,"%s=Nothing%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
410 }
411 else{
412 //戻り値用の変数の定義
413 sprintf(temporary,"%s%c%c%s",temp,1,ESC_AS, compiler.TypeToString( pUserProc->ReturnType() ).c_str() );
414 }
415
416 OpcodeDim(temporary,0);
417 }
418 }
419
420 const PertialSchedule *pRspOffsetPertialSchedule1 = NULL;
421 const PertialSchedule *pRspOffsetPertialSchedule2 = NULL;
422 if( compiler.IsDebug() && bDebugSupportProc == 0 )
423 {
424 //mov rdx, qword ptr[rsp+スタックフレームサイズ]
425 pRspOffsetPertialSchedule1 = compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RDX,REG_RSP,0,MOD_BASE_DISP32, Schedule::None, true );
426
427 //mov rcx,rsp
428 compiler.codeGenerator.op_mov_RR(REG_RCX,REG_RSP);
429
430 //add rcx,スタックフレームサイズ+sizeof(_int64) ※ret用のサイズを考慮
431 pRspOffsetPertialSchedule2 = compiler.codeGenerator.op_add_RV(REG_RCX,0, Schedule::None, true );
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.IsCompilingClass() ){
439 if( pUserProc->GetName() == compiler.GetCompilingClass().GetName() ){
440 ////////////////////////////////////
441 // コンストラクタをコンパイルするとき
442 ////////////////////////////////////
443
444 //コンストラクタのコンパイル開始を通知
445 compiler.GetCompilingClass().NotifyStartConstructorCompile();
446
447 if( compiler.GetCompilingClass().HasSuperClass() )
448 {
449 /* サブクラスコンストラクタをコンパイルしているときは、
450 基底クラスのコンストラクタを呼び出す */
451
452 i3=cp+1;
453 while(IsCommandDelimitation(basbuf[i3])) i3++;
454 for(i4=0;;i3++,i4++){
455 if(!IsVariableChar(basbuf[i3])){
456 temporary[i4]=0;
457 break;
458 }
459 temporary[i4]=basbuf[i3];
460 }
461 if( compiler.GetCompilingClass().GetSuperClass().GetName() == temporary ){
462 //基底クラスのコンストラクタを呼び出す
463 cp=i3;
464 for(i4=0;;cp++,i4++){
465 if(IsCommandDelimitation(basbuf[cp])){
466 temporary[i4]=0;
467 break;
468 }
469 temporary[i4]=basbuf[cp];
470 }
471 if(!(temporary[0]=='('&&temporary[lstrlen(temporary)-1]==')')){
472 compiler.errorMessenger.Output(1,NULL,cp);
473 }
474 RemoveStringPare(temporary);
475
476
477 ////////////////////////
478 // オーバーロードを解決
479 ////////////////////////
480
481 std::vector<const UserProc *> subs;
482 compiler.GetCompilingClass().GetSuperClass().GetDynamicMethods().Enum( compiler.GetCompilingClass().GetSuperClass().GetName().c_str(), subs );
483
484 const UserProc *pUserProc = NULL;
485 if( subs.size() > 0 )
486 {
487 //オーバーロードを解決
488 pUserProc=OverloadSolutionWithStrParam( compiler.GetCompilingClass().GetSuperClass().GetName().c_str(),
489 subs,temporary,"");
490 }
491 if( !pUserProc )
492 {
493 compiler.errorMessenger.Output(1,NULL,cp);
494 }
495 else
496 {
497 Type dummyType;
498 CallProc( PROC_DEFAULT
499 , pUserProc
500 , pUserProc->GetName().c_str()
501 , temporary
502 , Type() // baseTypeはなし
503 , dummyType
504 , true
505 , PROCFLAG_PERMIT_CONSTRUCTOR
506 );
507 }
508 }
509 else{
510 if( compiler.GetCompilingClass().GetSuperClass().GetConstructorMethod() != NULL )
511 {
512 // 基底クラスがデフォルトコンストラクタを保有するとき
513
514 // 基底クラスのコンストラクタを暗黙的に呼び出す
515 Opcode_CallProc("",
516 &compiler.GetCompilingClass().GetSuperClass().GetConstructorMethod()->GetUserProc(),
517 PROCFLAG_PERMIT_CONSTRUCTOR,
518 ""
519 );
520 }
521 }
522 }
523 }
524 else if( pUserProc->IsDestructor() ){
525 //デストラクタをコンパイルしたとき
526
527 //デストラクタのコンパイル開始を通知
528 compiler.GetCompilingClass().NotifyStartDestructorCompile();
529 }
530 }
531
532 //////////////////////////////////////////
533 //////////////////////////////////////////
534 ////// プロシージャ内をコンパイル ////////
535 if( pUserProc->IsAutoGeneration() ){
536 AutoGeneration( *pUserProc );
537 }
538 else{
539 if(pUserProc->IsMacro()){
540 CompileBuffer(ESC_ENDMACRO,0);
541 }
542 else{
543 if(pUserProc->IsSub()){
544 CompileBuffer(ESC_ENDSUB,0);
545 }
546 else if(pUserProc->IsFunction()){
547 CompileBuffer(ESC_ENDFUNCTION,0);
548 }
549 }
550 }
551 //////////////////////////////////////////
552 //////////////////////////////////////////
553
554 if( compiler.IsCompilingClass() ){
555
556 if( compiler.GetCompilingClass().IsCompilingConstructor() ){
557 // コンストラクタをコンパイルしていたとき
558
559 // コンストラクタのコンパイルが完了したことを通知
560 compiler.GetCompilingClass().NotifyFinishConstructorCompile();
561 }
562 else if( pUserProc->IsDestructor() ){
563 ////////////////////////////////////
564 //デストラクタをコンパイルしたとき
565 ////////////////////////////////////
566
567 // デストラクタのコンパイルが完了したことを通知
568 compiler.GetCompilingClass().NotifyFinishDestructorCompile();
569
570 if( compiler.GetCompilingClass().HasSuperClass() ){
571 /* サブクラスのデストラクタをコンパイルしているときは、
572 基底クラスのデストラクタを呼び出す */
573
574 const CMethod *method = compiler.GetCompilingClass().GetSuperClass().GetDestructorMethod();
575 if( method ){
576 Opcode_CallProc("",
577 &method->GetUserProc(),
578 PROCFLAG_PERMIT_DESTRUCTOR,
579 "");
580 }
581 }
582 }
583 }
584
585 // Tryスコープの検証
586 Exception::InspectTryScope();
587
588 //ローカルオブジェクト(レキシカルスコープレベル=0)の解放処理
589 compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
590
591 //プロシージャ抜け出しスケジュール(Exit Sub/Function)
592 compiler.codeGenerator.ResolveExitSubSchedule();
593
594 if( compiler.IsDebug() && bDebugSupportProc == 0 )
595 {
596 //call _DebugSys_EndProc
597 extern const UserProc *pSub_DebugSys_EndProc;
598 compiler.codeGenerator.op_call(pSub_DebugSys_EndProc);
599 }
600
601 if( !pUserProc->ReturnType().IsNull() ){
602 //////////////////////////////////
603 // 戻り値をraxまたはxmm0に設定
604 //////////////////////////////////
605
606 RELATIVE_VAR RelativeVar;
607
608 const char *temp = pUserProc->GetName().c_str();
609 if( temp[0]==1 && temp[1]==ESC_OPERATOR ){
610 temp="_System_ReturnValue";
611 }
612 GetVarOffsetReadWrite(temp,&RelativeVar,Type());
613
614 const Type &returnType = pUserProc->ReturnType();
615 if( returnType.IsObject() || returnType.IsStruct() )
616 {
617 SetVarPtrToReg(REG_RAX,&RelativeVar);
618 if( returnType.IsObject() )
619 {
620 //mov rax,qword ptr[rax]
621 compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_RAX, REG_RAX, 0, MOD_BASE );
622 }
623 }
624 else if( returnType.IsDouble() )
625 {
626 //64ビット実数型
627 SetXmmReg_DoubleVariable(&RelativeVar,REG_XMM0);
628 }
629 else if( returnType.IsSingle() )
630 {
631 //32ビット実数型
632 SetXmmReg_SingleVariable(&RelativeVar,REG_XMM0);
633 }
634 else if( returnType.IsWhole() )
635 {
636 //整数型
637 SetReg_WholeVariable(returnType,&RelativeVar,REG_RAX);
638 }
639 else compiler.errorMessenger.Output(300,NULL,cp);
640 }
641
642 //ローカル変数領域のサイズをスタックフレームに通知
643 int localParmSize = AllLocalVarSize - BaseLocalVar;
644 int stackFrameSize = pobj_sf->GetFrameSize( localParmSize );
645
646 //ローカル変数アドレススケジュール
647 BOOST_FOREACH( const PertialSchedule *pPertialSchedule, compiler.codeGenerator.localVarPertialSchedules )
648 {
649 compiler.codeGenerator.opfix_offset( pPertialSchedule, AllLocalVarSize + stackFrameSize );
650 }
651 compiler.codeGenerator.localVarPertialSchedules.clear();
652 BOOST_FOREACH( Variable *pVar, pUserProc->GetLocalVars() ){
653 //後にデバッグで利用する
654 pVar->SetOffsetAddress(
655 AllLocalVarSize + stackFrameSize - pVar->GetOffsetAddress()
656 );
657 }
658
659 //mov reg,qword ptr[rsp+offset] ※スタックフレームを利用
660 pobj_sf->pop(REG_R15);
661 pobj_sf->pop(REG_R14);
662 pobj_sf->pop(REG_R13);
663 pobj_sf->pop(REG_R12);
664 pobj_sf->pop(REG_RDI);
665 pobj_sf->pop(REG_RSI);
666 pobj_sf->pop(REG_RBX);
667
668 int stackFrameAndLocalParamSize = localParmSize + stackFrameSize;
669
670 //add rsp,スタックフレームサイズ
671 compiler.codeGenerator.op_add_rsp(stackFrameAndLocalParamSize);
672
673 //ret
674 compiler.codeGenerator.op_ret();
675
676
677 //デバッグ用
678 if( pRspOffsetPertialSchedule1 ){
679 compiler.codeGenerator.opfix( pRspOffsetPertialSchedule1, stackFrameAndLocalParamSize );
680 compiler.codeGenerator.opfix( pRspOffsetPertialSchedule2, stackFrameAndLocalParamSize + sizeof(_int64) );
681 }
682
683
684 //スタックフレームスケジュール(subコマンド)
685 compiler.codeGenerator.opfix( pStackFramePertialSchedule, stackFrameAndLocalParamSize );
686
687 //スタックフレームスケジュールを実行
688 pobj_sf->RunningSchedule( stackFrameSize );
689 delete pobj_sf;
690 pobj_sf=0;
691
692
693 compiler.FinishProcedureCompile();
694
695
696 //ローカル変数のネーム情報は後に解放する
697}
Note: See TracBrowser for help on using the repository browser.