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