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

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

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

File size: 19.5 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 //基底クラスかどうかの識別
448 //(継承元がインターフェイスの場合も基底クラスと見なす)
449 BOOL bThisIsSuperClass;
450 if( !compiler.GetCompilingClass().HasSuperClass() ) bThisIsSuperClass=1;
451 else if( compiler.GetCompilingClass().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.GetCompilingClass().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 compiler.errorMessenger.Output(1,NULL,cp);
482 }
483 RemoveStringPare(temporary);
484
485 Type dummyType;
486 CallProc( PROC_DEFAULT
487 , &compiler.GetCompilingClass().GetSuperClass().GetConstructorMethod()->GetUserProc()
488 , compiler.GetCompilingClass().GetSuperClass().GetConstructorMethod()->GetUserProc().GetName().c_str()
489 , temporary
490 , Type() // baseTypeはなし
491 , dummyType
492 );
493 }
494 else{
495 //基底クラスのコンストラクタを暗黙的に呼び出す
496 Opcode_CallProc("",
497 &compiler.GetCompilingClass().GetSuperClass().GetConstructorMethod()->GetUserProc(),
498 0,
499 "");
500 }
501 }
502 }
503 else if( pUserProc->IsDestructor() ){
504 //デストラクタをコンパイルしたとき
505
506 //デストラクタのコンパイル開始を通知
507 compiler.GetCompilingClass().NotifyStartDestructorCompile();
508 }
509 }
510
511 //////////////////////////////////////////
512 //////////////////////////////////////////
513 ////// プロシージャ内をコンパイル ////////
514 if( pUserProc->IsAutoGeneration() ){
515 AutoGeneration( *pUserProc );
516 }
517 else{
518 if(pUserProc->IsMacro()){
519 CompileBuffer(ESC_ENDMACRO,0);
520 }
521 else{
522 if(pUserProc->IsSub()){
523 CompileBuffer(ESC_ENDSUB,0);
524 }
525 else if(pUserProc->IsFunction()){
526 CompileBuffer(ESC_ENDFUNCTION,0);
527 }
528 }
529 }
530 //////////////////////////////////////////
531 //////////////////////////////////////////
532
533 if( compiler.IsCompilingClass() ){
534
535 if( compiler.GetCompilingClass().IsCompilingConstructor() ){
536 // コンストラクタをコンパイルしていたとき
537
538 // コンストラクタのコンパイルが完了したことを通知
539 compiler.GetCompilingClass().NotifyFinishConstructorCompile();
540 }
541 else if( pUserProc->IsDestructor() ){
542 ////////////////////////////////////
543 //デストラクタをコンパイルしたとき
544 ////////////////////////////////////
545
546 // デストラクタのコンパイルが完了したことを通知
547 compiler.GetCompilingClass().NotifyFinishDestructorCompile();
548
549 if( compiler.GetCompilingClass().HasSuperClass() ){
550 /* サブクラスのデストラクタをコンパイルしているときは、
551 基底クラスのデストラクタを呼び出す */
552
553 const CMethod *method = compiler.GetCompilingClass().GetSuperClass().GetDestructorMethod();
554 if( method ){
555 Opcode_CallProc("",
556 &method->GetUserProc(),
557 0,
558 "");
559 }
560 }
561 }
562 }
563
564 // Tryスコープの検証
565 Exception::InspectTryScope();
566
567 //ローカルオブジェクト(レキシカルスコープレベル=0)の解放処理
568 compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
569
570 //プロシージャ抜け出しスケジュール(Exit Sub/Function)
571 compiler.codeGenerator.ResolveExitSubSchedule();
572
573 if( compiler.IsDebug() && bDebugSupportProc == 0 )
574 {
575 //call _DebugSys_EndProc
576 extern const UserProc *pSub_DebugSys_EndProc;
577 compiler.codeGenerator.op_call(pSub_DebugSys_EndProc);
578 }
579
580 if( !pUserProc->ReturnType().IsNull() ){
581 //////////////////////////////////
582 // 戻り値をraxまたはxmm0に設定
583 //////////////////////////////////
584
585 RELATIVE_VAR RelativeVar;
586
587 const char *temp = pUserProc->GetName().c_str();
588 if( temp[0]==1 && temp[1]==ESC_OPERATOR ){
589 temp="_System_ReturnValue";
590 }
591 GetVarOffsetReadWrite(temp,&RelativeVar,Type());
592
593 const Type &returnType = pUserProc->ReturnType();
594 if( returnType.IsObject() || returnType.IsStruct() )
595 {
596 SetVarPtrToReg(REG_RAX,&RelativeVar);
597 if( returnType.IsObject() )
598 {
599 //mov rax,qword ptr[rax]
600 compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_RAX, REG_RAX, 0, MOD_BASE );
601 }
602 }
603 else if( returnType.IsDouble() )
604 {
605 //64ビット実数型
606 SetXmmReg_DoubleVariable(&RelativeVar,REG_XMM0);
607 }
608 else if( returnType.IsSingle() )
609 {
610 //32ビット実数型
611 SetXmmReg_SingleVariable(&RelativeVar,REG_XMM0);
612 }
613 else if( returnType.IsWhole() )
614 {
615 //整数型
616 SetReg_WholeVariable(returnType,&RelativeVar,REG_RAX);
617 }
618 else compiler.errorMessenger.Output(300,NULL,cp);
619 }
620
621 //ローカル変数領域のサイズをスタックフレームに通知
622 int localParmSize = AllLocalVarSize - BaseLocalVar;
623 int stackFrameSize = pobj_sf->GetFrameSize( localParmSize );
624
625 //ローカル変数アドレススケジュール
626 BOOST_FOREACH( const PertialSchedule *pPertialSchedule, compiler.codeGenerator.localVarPertialSchedules )
627 {
628 compiler.codeGenerator.opfix_offset( pPertialSchedule, AllLocalVarSize + stackFrameSize );
629 }
630 compiler.codeGenerator.localVarPertialSchedules.clear();
631 BOOST_FOREACH( Variable *pVar, pUserProc->GetLocalVars() ){
632 //後にデバッグで利用する
633 pVar->SetOffsetAddress(
634 AllLocalVarSize + stackFrameSize - pVar->GetOffsetAddress()
635 );
636 }
637
638 //mov reg,qword ptr[rsp+offset] ※スタックフレームを利用
639 pobj_sf->pop(REG_R15);
640 pobj_sf->pop(REG_R14);
641 pobj_sf->pop(REG_R13);
642 pobj_sf->pop(REG_R12);
643 pobj_sf->pop(REG_RDI);
644 pobj_sf->pop(REG_RSI);
645 pobj_sf->pop(REG_RBX);
646
647 int stackFrameAndLocalParamSize = localParmSize + stackFrameSize;
648
649 //add rsp,スタックフレームサイズ
650 compiler.codeGenerator.op_add_rsp(stackFrameAndLocalParamSize);
651
652 //ret
653 compiler.codeGenerator.op_ret();
654
655
656 //デバッグ用
657 if( pRspOffsetPertialSchedule1 ){
658 compiler.codeGenerator.opfix( pRspOffsetPertialSchedule1, stackFrameAndLocalParamSize );
659 compiler.codeGenerator.opfix( pRspOffsetPertialSchedule2, stackFrameAndLocalParamSize + sizeof(_int64) );
660 }
661
662
663 //スタックフレームスケジュール(subコマンド)
664 compiler.codeGenerator.opfix( pStackFramePertialSchedule, stackFrameAndLocalParamSize );
665
666 //スタックフレームスケジュールを実行
667 pobj_sf->RunningSchedule( stackFrameSize );
668 delete pobj_sf;
669 pobj_sf=0;
670
671
672 compiler.FinishProcedureCompile();
673
674
675 //ローカル変数のネーム情報は後に解放する
676}
Note: See TracBrowser for help on using the repository browser.