[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[183] | 3 | #include <jenga/include/smoothie/Smoothie.h>
|
---|
| 4 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
---|
| 5 |
|
---|
[169] | 6 | #include <Program.h>
|
---|
[198] | 7 | #include <Compiler.h>
|
---|
[206] | 8 | #include <Class.h>
|
---|
[169] | 9 |
|
---|
[3] | 10 | #include "../BasicCompiler_Common/common.h"
|
---|
| 11 | #include "Opcode.h"
|
---|
| 12 |
|
---|
[86] | 13 | void SystemProc( const UserProc &userProc ){
|
---|
| 14 | if( userProc.GetName() == "_System_GetEip" ){
|
---|
[3] | 15 | //mov rax,qword ptr[rsp]
|
---|
[226] | 16 | compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RAX,REG_RSP,0,MOD_BASE);
|
---|
[3] | 17 |
|
---|
| 18 | //ret
|
---|
[226] | 19 | compiler.codeGenerator.op_ret();
|
---|
[3] | 20 | }
|
---|
[86] | 21 | else if( userProc.GetName() == "_System_InitDllGlobalVariables" ){
|
---|
[3] | 22 | ////////////////////////////////////////
|
---|
| 23 | // DLLのグローバル領域をコンパイル
|
---|
| 24 | ////////////////////////////////////////
|
---|
[266] | 25 | if(!compiler.IsDll()){
|
---|
[3] | 26 | //ret
|
---|
[226] | 27 | compiler.codeGenerator.op_ret();
|
---|
[3] | 28 |
|
---|
| 29 | return;
|
---|
| 30 | }
|
---|
| 31 |
|
---|
[206] | 32 | const UserProc *pBackUserProc = &UserProc::CompilingUserProc();
|
---|
[75] | 33 | UserProc::CompileStartForGlobalArea();
|
---|
[3] | 34 |
|
---|
| 35 | int BackCp;
|
---|
| 36 | BackCp=cp;
|
---|
| 37 | cp=-1;
|
---|
| 38 |
|
---|
| 39 | //sub rsp,スタックフレームサイズ
|
---|
[255] | 40 | const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
|
---|
[3] | 41 |
|
---|
| 42 | extern BOOL bDebugCompile;
|
---|
| 43 | if(bDebugCompile){
|
---|
| 44 | //デバッグ用の変数を定義
|
---|
| 45 | DebugVariable();
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | //GC用の変数を定義
|
---|
| 49 | InitGCVariables();
|
---|
| 50 |
|
---|
[129] | 51 | //_System_StartupProgramの呼び出し
|
---|
[206] | 52 | extern const UserProc *pSub_System_StartupProgram;
|
---|
[226] | 53 | compiler.codeGenerator.op_call(pSub_System_StartupProgram);
|
---|
[129] | 54 |
|
---|
[42] | 55 | //クラスに属する静的メンバを定義
|
---|
[266] | 56 | compiler.GetObjectModule().meta.GetClasses().InitStaticMember();
|
---|
[42] | 57 |
|
---|
[3] | 58 | GetGlobalDataForDll();
|
---|
| 59 |
|
---|
| 60 | //add rsp,スタックフレームサイズ
|
---|
[226] | 61 | compiler.codeGenerator.op_add_RV(REG_RSP,pobj_sf->GetFrameSize(0));
|
---|
[3] | 62 |
|
---|
| 63 | //スタックフレームスケジュール(subコマンドに渡す値)
|
---|
[255] | 64 | compiler.codeGenerator.opfix( pStackFramePertialSchedule, pobj_sf->GetFrameSize(0) );
|
---|
[3] | 65 |
|
---|
[75] | 66 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
[3] | 67 | cp=BackCp;
|
---|
| 68 |
|
---|
| 69 | //ret
|
---|
[226] | 70 | compiler.codeGenerator.op_ret();
|
---|
[3] | 71 | }
|
---|
[86] | 72 | else if( userProc.GetName() == "_System_InitStaticLocalVariables" ){
|
---|
[3] | 73 | //静的ローカルオブジェクトのコンストラクタ呼び出し
|
---|
| 74 |
|
---|
| 75 | //sub rsp,スタックフレームサイズ
|
---|
[255] | 76 | const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
|
---|
[3] | 77 |
|
---|
[266] | 78 | BOOST_FOREACH( Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
|
---|
[75] | 79 | if(memicmp(pVar->GetName().c_str(),"Static%",7)==0){
|
---|
[3] | 80 | //コンストラクタ呼び出し
|
---|
[206] | 81 | if( pVar->GetType().IsObject() ){
|
---|
[3] | 82 |
|
---|
| 83 | //エラー用
|
---|
[75] | 84 | cp=pVar->source_code_address;
|
---|
[3] | 85 |
|
---|
[50] | 86 | CallConstructor(
|
---|
[75] | 87 | pVar->GetName().c_str(),
|
---|
[206] | 88 | pVar->GetSubscripts(),
|
---|
| 89 | pVar->GetType(),
|
---|
| 90 | pVar->GetParamStrForConstructor().c_str());
|
---|
[3] | 91 | }
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | //add rsp,スタックフレームサイズ
|
---|
[226] | 96 | compiler.codeGenerator.op_add_RV(REG_RSP,pobj_sf->GetFrameSize(0));
|
---|
[3] | 97 |
|
---|
| 98 | //スタックフレームスケジュール(subコマンドに渡す値)
|
---|
[255] | 99 | compiler.codeGenerator.opfix( pStackFramePertialSchedule, pobj_sf->GetFrameSize(0) );
|
---|
[3] | 100 |
|
---|
| 101 | //ret
|
---|
[226] | 102 | compiler.codeGenerator.op_ret();
|
---|
[3] | 103 | }
|
---|
[86] | 104 | else if( userProc.GetName() == "_System_Call_Destructor_of_GlobalObject" ){
|
---|
[3] | 105 | //sub rsp,8(※RSPを16バイト境界にあわせるため)
|
---|
[226] | 106 | compiler.codeGenerator.op_sub_rsp(0x8);
|
---|
[3] | 107 |
|
---|
| 108 |
|
---|
[206] | 109 | const UserProc *pBackUserProc = &UserProc::CompilingUserProc();
|
---|
[75] | 110 | UserProc::CompileStartForGlobalArea();
|
---|
[3] | 111 |
|
---|
[254] | 112 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
[3] | 113 |
|
---|
[75] | 114 | UserProc::CompileStartForUserProc( pBackUserProc );
|
---|
[3] | 115 |
|
---|
| 116 |
|
---|
| 117 | //add rsp,8
|
---|
[226] | 118 | compiler.codeGenerator.op_add_RV(REG_RSP,0x8);
|
---|
[3] | 119 |
|
---|
| 120 | //ret
|
---|
[226] | 121 | compiler.codeGenerator.op_ret();
|
---|
[3] | 122 | }
|
---|
[86] | 123 | else if( userProc.GetName() == "_System_GetSp" ){
|
---|
[3] | 124 | //mov rax,rsp
|
---|
[226] | 125 | compiler.codeGenerator.op_mov_RR(REG_RAX,REG_RSP);
|
---|
[3] | 126 |
|
---|
| 127 | //add rax,PTR_SIZE
|
---|
[226] | 128 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
[3] | 129 |
|
---|
| 130 | //ret
|
---|
[226] | 131 | compiler.codeGenerator.op_ret();
|
---|
[3] | 132 | }
|
---|
[90] | 133 | else{
|
---|
| 134 | SetError();
|
---|
| 135 | }
|
---|
| 136 | }
|
---|
[206] | 137 | void AutoGeneration(const UserProc &userProc){
|
---|
[90] | 138 | if( userProc.GetName() == "InitializeUserTypes"
|
---|
[89] | 139 | && userProc.HasParentClass()
|
---|
[131] | 140 | && userProc.GetParentClass().GetName() == "_System_TypeBase" ){
|
---|
[266] | 141 | compiler.GetObjectModule().meta.GetClasses().Compile_System_InitializeUserTypes();
|
---|
[86] | 142 | }
|
---|
[95] | 143 | else if( userProc.GetName() == "RegisterGlobalRoots"
|
---|
| 144 | && userProc.HasParentClass()
|
---|
[131] | 145 | && userProc.GetParentClass().GetName() == "_System_CGarbageCollection" ){
|
---|
[95] | 146 |
|
---|
| 147 | Compile_AddGlobalRootsForGc();
|
---|
| 148 | }
|
---|
[86] | 149 | else{
|
---|
| 150 | SetError();
|
---|
| 151 | }
|
---|
[3] | 152 | }
|
---|
[206] | 153 | void _compile_proc(const UserProc *pUserProc){
|
---|
[3] | 154 | extern char *basbuf;
|
---|
| 155 | extern HANDLE hHeap;
|
---|
| 156 | extern BOOL bDebugCompile;
|
---|
[76] | 157 | int i3,i4;
|
---|
[3] | 158 | char temporary[VN_SIZE];
|
---|
| 159 |
|
---|
[75] | 160 | if( pUserProc->IsUsing() == false || pUserProc->IsCompiled() ) return;
|
---|
[3] | 161 |
|
---|
[206] | 162 | if( pUserProc->GetLocalVars().size() ){
|
---|
[76] | 163 | SetError();
|
---|
| 164 | return;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[206] | 167 | trace_for_sourcecodestep( "★★★ " << pUserProc->GetFullName() << "のコンパイルを開始" );
|
---|
| 168 |
|
---|
[75] | 169 | pUserProc->CompleteCompile();
|
---|
[3] | 170 |
|
---|
| 171 | extern BOOL bSystemProc;
|
---|
[75] | 172 | if(memcmp(pUserProc->GetName().c_str(),"_System_",8)==0) bSystemProc=1;
|
---|
[3] | 173 | else bSystemProc=0;
|
---|
| 174 |
|
---|
| 175 | extern BOOL bDebugSupportProc;
|
---|
[75] | 176 | if(memcmp(pUserProc->GetName().c_str(),"_DebugSys_",10)==0){
|
---|
[3] | 177 | if(!bDebugCompile){
|
---|
| 178 | return;
|
---|
| 179 | }
|
---|
| 180 | bDebugSupportProc=1;
|
---|
| 181 | }
|
---|
| 182 | else bDebugSupportProc=0;
|
---|
| 183 |
|
---|
[259] | 184 | pUserProc->_beginOpAddressOld = obp;
|
---|
[3] | 185 |
|
---|
[89] | 186 | //コンパイル中の関数が属するクラス
|
---|
[206] | 187 | compiler.pCompilingClass=pUserProc->GetParentClassPtr();
|
---|
[89] | 188 |
|
---|
| 189 | //コンパイルスタートをクラス管理クラスに追加
|
---|
[266] | 190 | compiler.GetObjectModule().meta.GetClasses().StartCompile( pUserProc );
|
---|
[89] | 191 |
|
---|
| 192 | //コンパイル中の関数
|
---|
| 193 | UserProc::CompileStartForUserProc( pUserProc );
|
---|
| 194 |
|
---|
[101] | 195 | // コンパイル中の関数が属する名前空間
|
---|
[202] | 196 | compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
|
---|
[101] | 197 |
|
---|
[108] | 198 | // コンパイル中の関数でImportsされている名前空間
|
---|
[202] | 199 | compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
|
---|
[108] | 200 |
|
---|
[226] | 201 | // コード生成対象を選択
|
---|
| 202 | compiler.codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
|
---|
| 203 |
|
---|
[75] | 204 | if(pUserProc->IsSystem()){
|
---|
[3] | 205 | ////////////////////
|
---|
| 206 | // 特殊関数
|
---|
| 207 | ////////////////////
|
---|
| 208 |
|
---|
| 209 | extern int AllLocalVarSize;
|
---|
| 210 | AllLocalVarSize=0;
|
---|
| 211 |
|
---|
| 212 | //スタックフレーム管理用オブジェクトを初期化
|
---|
| 213 | extern CStackFrame *pobj_sf;
|
---|
| 214 | pobj_sf=new CStackFrame();
|
---|
| 215 |
|
---|
[86] | 216 | SystemProc(*pUserProc);
|
---|
[3] | 217 |
|
---|
| 218 | //スタックフレーム管理用オブジェクトを破棄
|
---|
| 219 | delete pobj_sf;
|
---|
| 220 | pobj_sf=0;
|
---|
| 221 |
|
---|
[259] | 222 | pUserProc->_endOpAddressOld = obp;
|
---|
[3] | 223 | return;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
[75] | 226 | cp=pUserProc->GetCodePos();
|
---|
[3] | 227 | for(;;cp++){
|
---|
| 228 | if(IsCommandDelimitation(basbuf[cp])) break;
|
---|
| 229 | }
|
---|
| 230 | cp--;
|
---|
| 231 |
|
---|
| 232 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
[254] | 233 | compiler.codeGenerator.exitSubCodePositions.clear();
|
---|
| 234 | compiler.codeGenerator._exitSubCodePositions_ObpOld.clear();
|
---|
[3] | 235 |
|
---|
| 236 | //ラベル用のメモリを確保
|
---|
[262] | 237 | compiler.codeGenerator.gotoLabels.clear();
|
---|
[3] | 238 |
|
---|
| 239 | //Gotoラベルスケジュール
|
---|
[254] | 240 | compiler.codeGenerator.gotoLabelSchedules.clear();
|
---|
[3] | 241 |
|
---|
| 242 | //With情報のメモリを確保
|
---|
| 243 | extern WITHINFO WithInfo;
|
---|
| 244 | WithInfo.ppName=(char **)HeapAlloc(hHeap,0,1);
|
---|
| 245 | WithInfo.pWithCp=(int *)HeapAlloc(hHeap,0,1);
|
---|
| 246 | WithInfo.num=0;
|
---|
| 247 |
|
---|
| 248 | //重複エラー情報管理のメモリを確保
|
---|
| 249 | extern char **SynonymErrorWords;
|
---|
| 250 | extern int SynonymErrorNum;
|
---|
| 251 | SynonymErrorNum=0;
|
---|
| 252 | SynonymErrorWords=(char **)HeapAlloc(hHeap,0,1);
|
---|
| 253 |
|
---|
| 254 | //Continueアドレスを初期化
|
---|
[242] | 255 | compiler.codeGenerator.ClearContinueArea();
|
---|
[3] | 256 |
|
---|
| 257 | //ローカル変数に関する情報
|
---|
| 258 | extern int AllLocalVarSize;
|
---|
| 259 | AllLocalVarSize=0;
|
---|
| 260 |
|
---|
| 261 | //レキシカルスコープ情報を初期化
|
---|
[254] | 262 | compiler.codeGenerator.lexicalScopes.Init(obp);
|
---|
[3] | 263 |
|
---|
| 264 |
|
---|
| 265 | /////////////////////////////////////
|
---|
| 266 | // パラメータ用の変数データを考慮
|
---|
| 267 | /////////////////////////////////////
|
---|
| 268 |
|
---|
[75] | 269 | //パラメータ用の変数データを考慮
|
---|
| 270 | for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
|
---|
| 271 | Parameter ¶m = *pUserProc->RealParams()[i3];
|
---|
[3] | 272 |
|
---|
[206] | 273 | Variable *pVar = new Variable( param.GetVarName(), param, false, param.IsRef(), "" );
|
---|
[3] | 274 |
|
---|
[75] | 275 | if( param.IsArray() ){
|
---|
[206] | 276 | pVar->SetArray( param.GetSubscripts() );
|
---|
[3] | 277 | }
|
---|
| 278 |
|
---|
[75] | 279 | int varSize;
|
---|
| 280 | if( param.IsRef() == false && param.IsStruct() ){
|
---|
[64] | 281 | //構造体のByValパラメータ
|
---|
[75] | 282 | pVar->ThisIsParameter();
|
---|
| 283 | varSize=PTR_SIZE;
|
---|
[3] | 284 | }
|
---|
| 285 | else{
|
---|
[75] | 286 | if( param.IsArray() == false ){
|
---|
| 287 | varSize = pVar->GetMemorySize();
|
---|
[3] | 288 | }
|
---|
| 289 | else{
|
---|
[75] | 290 | varSize=PTR_SIZE;
|
---|
[3] | 291 | }
|
---|
| 292 | }
|
---|
[75] | 293 | AllLocalVarSize+=varSize;
|
---|
[206] | 294 | pVar->SetOffsetAddress( AllLocalVarSize );
|
---|
[3] | 295 |
|
---|
| 296 | //レキシカルスコープ情報
|
---|
[254] | 297 | pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
|
---|
| 298 | pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
|
---|
[75] | 299 | pVar->bLiving=TRUE;
|
---|
[3] | 300 |
|
---|
[206] | 301 | pUserProc->GetLocalVars().push_back( pVar );
|
---|
[3] | 302 | }
|
---|
| 303 |
|
---|
| 304 | //Thisポインタを示すローカルオフセット値をセット
|
---|
| 305 | extern int LocalVar_ThisPtrOffset;
|
---|
| 306 | LocalVar_ThisPtrOffset=AllLocalVarSize;
|
---|
| 307 |
|
---|
| 308 | //スタックフレーム管理用クラスを初期化
|
---|
| 309 | extern CStackFrame *pobj_sf;
|
---|
| 310 | pobj_sf=new CStackFrame();
|
---|
| 311 |
|
---|
| 312 |
|
---|
| 313 | ///////////////////////
|
---|
| 314 | // ここからコード生成
|
---|
| 315 |
|
---|
[75] | 316 | for(i3=(int)pUserProc->RealParams().size()-1;i3>=0;i3--){
|
---|
| 317 | Parameter ¶m = *pUserProc->RealParams()[i3];
|
---|
[3] | 318 | if(i3==3){
|
---|
[75] | 319 | if(param.IsReal()&¶m.IsRef() == false){
|
---|
[3] | 320 | //movsd qword ptr[rsp+0x20],xmm3
|
---|
[226] | 321 | compiler.codeGenerator.op_movsd_MR(REG_XMM3,REG_RSP,0x20,MOD_BASE_DISP32);
|
---|
[3] | 322 | }
|
---|
| 323 | else{
|
---|
| 324 | //mov qword ptr[rsp+0x20],r9
|
---|
[226] | 325 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_R9,REG_RSP,0x20,MOD_BASE_DISP32);
|
---|
[3] | 326 | }
|
---|
| 327 | }
|
---|
| 328 | if(i3==2){
|
---|
[75] | 329 | if(param.IsReal()&¶m.IsRef() == false){
|
---|
[3] | 330 | //movsd qword ptr[rsp+0x18],xmm2
|
---|
[226] | 331 | compiler.codeGenerator.op_movsd_MR(REG_XMM2,REG_RSP,0x18,MOD_BASE_DISP32);
|
---|
[3] | 332 | }
|
---|
| 333 | else{
|
---|
| 334 | //mov qword ptr[rsp+0x18],r8
|
---|
[226] | 335 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_R8,REG_RSP,0x18,MOD_BASE_DISP32);
|
---|
[3] | 336 | }
|
---|
| 337 | }
|
---|
| 338 | if(i3==1){
|
---|
[75] | 339 | if(param.IsReal()&¶m.IsRef() == false){
|
---|
[3] | 340 | //movsd qword ptr[rsp+0x10],xmm1
|
---|
[226] | 341 | compiler.codeGenerator.op_movsd_MR(REG_XMM1,REG_RSP,0x10,MOD_BASE_DISP32);
|
---|
[3] | 342 | }
|
---|
| 343 | else{
|
---|
| 344 | //mov qword ptr[rsp+0x10],rdx
|
---|
[226] | 345 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RDX,REG_RSP,0x10,MOD_BASE_DISP32);
|
---|
[3] | 346 | }
|
---|
| 347 | }
|
---|
| 348 | if(i3==0){
|
---|
[75] | 349 | if(param.IsReal()&¶m.IsRef() == false){
|
---|
[3] | 350 | //movsd qword ptr[rsp+0x8],xmm0
|
---|
[226] | 351 | compiler.codeGenerator.op_movsd_MR(REG_XMM0,REG_RSP,0x8,MOD_BASE_DISP32);
|
---|
[3] | 352 | }
|
---|
| 353 | else{
|
---|
| 354 | //mov qword ptr[rsp+0x8],rcx
|
---|
[226] | 355 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RCX,REG_RSP,0x8,MOD_BASE_DISP32);
|
---|
[3] | 356 | }
|
---|
| 357 | }
|
---|
| 358 | }
|
---|
| 359 |
|
---|
| 360 | //ret用のアドレスを考慮
|
---|
| 361 | AllLocalVarSize+=sizeof(_int64);
|
---|
| 362 |
|
---|
| 363 | //sub rsp,スタックフレームサイズ
|
---|
[255] | 364 | const PertialSchedule *pStackFramePertialSchedule = compiler.codeGenerator.op_sub_rsp( 0, true );
|
---|
[3] | 365 |
|
---|
| 366 | //mov qword ptr[rsp+offset],reg ※スタックフレームを利用
|
---|
| 367 | pobj_sf->push(REG_RBX);
|
---|
| 368 | pobj_sf->push(REG_RSI);
|
---|
| 369 | pobj_sf->push(REG_RDI);
|
---|
| 370 | pobj_sf->push(REG_R12);
|
---|
| 371 | pobj_sf->push(REG_R13);
|
---|
| 372 | pobj_sf->push(REG_R14);
|
---|
| 373 | pobj_sf->push(REG_R15);
|
---|
| 374 |
|
---|
| 375 | //ローカル変数のベース値
|
---|
| 376 | int BaseLocalVar;
|
---|
| 377 | BaseLocalVar=AllLocalVarSize;
|
---|
| 378 |
|
---|
[75] | 379 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 380 | //戻り値が存在するとき
|
---|
| 381 |
|
---|
[75] | 382 | const char *temp = pUserProc->GetName().c_str();
|
---|
| 383 | if( temp[0]==1&&temp[1]==ESC_OPERATOR ){
|
---|
| 384 | temp = "_System_ReturnValue";
|
---|
| 385 | }
|
---|
[3] | 386 |
|
---|
[75] | 387 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[64] | 388 | //戻り値用の構造体(値型)はパラメータで引き渡される
|
---|
[3] | 389 | }
|
---|
| 390 | else{
|
---|
[89] | 391 | if( pUserProc->ReturnType().IsObject() ){
|
---|
[198] | 392 | sprintf(temporary,"%s=Nothing%c%c%s",temp,1,ESC_AS, Compiler::TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
[89] | 393 | }
|
---|
| 394 | else{
|
---|
| 395 | //戻り値用の変数の定義
|
---|
[198] | 396 | sprintf(temporary,"%s%c%c%s",temp,1,ESC_AS, Compiler::TypeToString( pUserProc->ReturnType() ).c_str() );
|
---|
[89] | 397 | }
|
---|
[40] | 398 |
|
---|
[3] | 399 | OpcodeDim(temporary,0);
|
---|
| 400 | }
|
---|
| 401 | }
|
---|
| 402 |
|
---|
[255] | 403 | const PertialSchedule *pRspOffsetPertialSchedule1 = NULL;
|
---|
| 404 | const PertialSchedule *pRspOffsetPertialSchedule2 = NULL;
|
---|
[3] | 405 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
| 406 | //mov rdx, qword ptr[rsp+スタックフレームサイズ]
|
---|
[255] | 407 | pRspOffsetPertialSchedule1 = compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RDX,REG_RSP,0,MOD_BASE_DISP32, Schedule::None, true );
|
---|
[3] | 408 |
|
---|
| 409 | //mov rcx,rsp
|
---|
[226] | 410 | compiler.codeGenerator.op_mov_RR(REG_RCX,REG_RSP);
|
---|
[3] | 411 |
|
---|
| 412 | //add rcx,スタックフレームサイズ+sizeof(_int64) ※ret用のサイズを考慮
|
---|
[255] | 413 | pRspOffsetPertialSchedule2 = compiler.codeGenerator.op_add_RV(REG_RCX,0, Schedule::None, true );
|
---|
[3] | 414 |
|
---|
| 415 | //call _DebugSys_StartProc
|
---|
[206] | 416 | extern const UserProc *pSub_DebugSys_StartProc;
|
---|
[226] | 417 | compiler.codeGenerator.op_call(pSub_DebugSys_StartProc);
|
---|
[3] | 418 | }
|
---|
| 419 |
|
---|
[206] | 420 | if(compiler.pCompilingClass){
|
---|
| 421 | if( pUserProc->GetName() == compiler.pCompilingClass->GetName() ){
|
---|
[3] | 422 | ////////////////////////////////////
|
---|
| 423 | // コンストラクタをコンパイルするとき
|
---|
| 424 | ////////////////////////////////////
|
---|
| 425 |
|
---|
[17] | 426 | //コンストラクタのコンパイル開始を通知
|
---|
[206] | 427 | compiler.pCompilingClass->NotifyStartConstructorCompile();
|
---|
[17] | 428 |
|
---|
[27] | 429 | //基底クラスかどうかの識別
|
---|
| 430 | //(継承元がインターフェイスの場合も基底クラスと見なす)
|
---|
[3] | 431 | BOOL bThisIsSuperClass;
|
---|
[206] | 432 | if( !compiler.pCompilingClass->HasSuperClass() ) bThisIsSuperClass=1;
|
---|
| 433 | else if( compiler.pCompilingClass->GetSuperClass().GetConstructorMethod() == NULL ){
|
---|
[3] | 434 | //インターフェイスを継承したときはコンストラクタを持たない
|
---|
| 435 | bThisIsSuperClass=1;
|
---|
| 436 | }
|
---|
| 437 | else bThisIsSuperClass=0;
|
---|
| 438 |
|
---|
| 439 | if(!bThisIsSuperClass){
|
---|
| 440 | /* サブクラスコンストラクタをコンパイルしているときは、
|
---|
[27] | 441 | 基底クラスのコンストラクタを呼び出す */
|
---|
[3] | 442 |
|
---|
| 443 | i3=cp+1;
|
---|
| 444 | while(IsCommandDelimitation(basbuf[i3])) i3++;
|
---|
| 445 | for(i4=0;;i3++,i4++){
|
---|
| 446 | if(!IsVariableChar(basbuf[i3])){
|
---|
| 447 | temporary[i4]=0;
|
---|
| 448 | break;
|
---|
| 449 | }
|
---|
| 450 | temporary[i4]=basbuf[i3];
|
---|
| 451 | }
|
---|
[206] | 452 | if( compiler.pCompilingClass->GetSuperClass().GetName() == temporary ){
|
---|
[27] | 453 | //基底クラスのコンストラクタを呼び出す
|
---|
[3] | 454 | cp=i3;
|
---|
| 455 | for(i4=0;;cp++,i4++){
|
---|
| 456 | if(IsCommandDelimitation(basbuf[cp])){
|
---|
| 457 | temporary[i4]=0;
|
---|
| 458 | break;
|
---|
| 459 | }
|
---|
| 460 | temporary[i4]=basbuf[cp];
|
---|
| 461 | }
|
---|
| 462 | if(!(temporary[0]=='('&&temporary[lstrlen(temporary)-1]==')')){
|
---|
| 463 | SetError(1,NULL,cp);
|
---|
| 464 | }
|
---|
| 465 | RemoveStringPare(temporary);
|
---|
| 466 |
|
---|
[89] | 467 | Type dummyType;
|
---|
| 468 | CallProc( PROC_DEFAULT
|
---|
[206] | 469 | , &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc()
|
---|
| 470 | , compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc().GetName().c_str()
|
---|
[89] | 471 | , temporary
|
---|
| 472 | , dummyType );
|
---|
[3] | 473 | }
|
---|
| 474 | else{
|
---|
[27] | 475 | //基底クラスのコンストラクタを暗黙的に呼び出す
|
---|
[3] | 476 | Opcode_CallProc("",
|
---|
[206] | 477 | &compiler.pCompilingClass->GetSuperClass().GetConstructorMethod()->GetUserProc(),
|
---|
[3] | 478 | 0,
|
---|
| 479 | "",
|
---|
| 480 | 0);
|
---|
| 481 | }
|
---|
| 482 | }
|
---|
| 483 |
|
---|
| 484 | //仮想関数テーブルを初期化
|
---|
[206] | 485 | if( compiler.pCompilingClass->IsExistVirtualFunctions()
|
---|
| 486 | && !compiler.pCompilingClass->IsAbstract() ){
|
---|
[28] | 487 | //関数テーブルに値をセット
|
---|
[206] | 488 | int offset = (int)compiler.pCompilingClass->GetVtblGlobalOffset();
|
---|
[3] | 489 |
|
---|
[28] | 490 | //mov rax,offset
|
---|
[242] | 491 | compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RAX,offset, Schedule::DataTable );
|
---|
[3] | 492 |
|
---|
[28] | 493 | //Thisポインタをrcxにコピー
|
---|
| 494 | SetThisPtrToReg(REG_RCX);
|
---|
[3] | 495 |
|
---|
[28] | 496 | //mov qword ptr[rcx],rax
|
---|
[226] | 497 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RAX,REG_RCX,0,MOD_BASE);
|
---|
[3] | 498 | }
|
---|
| 499 | }
|
---|
[75] | 500 | else if( pUserProc->IsDestructor() ){
|
---|
[18] | 501 | //デストラクタをコンパイルしたとき
|
---|
| 502 |
|
---|
| 503 | //デストラクタのコンパイル開始を通知
|
---|
[206] | 504 | compiler.pCompilingClass->NotifyStartDestructorCompile();
|
---|
[18] | 505 | }
|
---|
[3] | 506 | }
|
---|
| 507 |
|
---|
| 508 | //////////////////////////////////////////
|
---|
| 509 | //////////////////////////////////////////
|
---|
| 510 | ////// プロシージャ内をコンパイル ////////
|
---|
[90] | 511 | if( pUserProc->IsAutoGeneration() ){
|
---|
| 512 | AutoGeneration( *pUserProc );
|
---|
| 513 | }
|
---|
[75] | 514 | else{
|
---|
[90] | 515 | if(pUserProc->IsMacro()){
|
---|
| 516 | CompileBuffer(ESC_ENDMACRO,0);
|
---|
| 517 | }
|
---|
| 518 | else{
|
---|
| 519 | if(pUserProc->IsSub()){
|
---|
| 520 | CompileBuffer(ESC_ENDSUB,0);
|
---|
| 521 | }
|
---|
| 522 | else if(pUserProc->IsFunction()){
|
---|
| 523 | CompileBuffer(ESC_ENDFUNCTION,0);
|
---|
| 524 | }
|
---|
| 525 | }
|
---|
[75] | 526 | }
|
---|
[3] | 527 | //////////////////////////////////////////
|
---|
| 528 | //////////////////////////////////////////
|
---|
| 529 |
|
---|
[206] | 530 | if( compiler.pCompilingClass ){
|
---|
[17] | 531 |
|
---|
[206] | 532 | if( compiler.pCompilingClass->IsCompilingConstructor() ){
|
---|
[17] | 533 | // コンストラクタをコンパイルしていたとき
|
---|
[18] | 534 |
|
---|
[17] | 535 | // コンストラクタのコンパイルが完了したことを通知
|
---|
[206] | 536 | compiler.pCompilingClass->NotifyFinishConstructorCompile();
|
---|
[17] | 537 | }
|
---|
[75] | 538 | else if( pUserProc->IsDestructor() ){
|
---|
[3] | 539 | ////////////////////////////////////
|
---|
| 540 | //デストラクタをコンパイルしたとき
|
---|
| 541 | ////////////////////////////////////
|
---|
| 542 |
|
---|
[18] | 543 | // デストラクタのコンパイルが完了したことを通知
|
---|
[206] | 544 | compiler.pCompilingClass->NotifyFinishDestructorCompile();
|
---|
[18] | 545 |
|
---|
[206] | 546 | if( compiler.pCompilingClass->HasSuperClass() ){
|
---|
[3] | 547 | /* サブクラスのデストラクタをコンパイルしているときは、
|
---|
[27] | 548 | 基底クラスのデストラクタを呼び出す */
|
---|
[3] | 549 |
|
---|
[206] | 550 | const CMethod *method = compiler.pCompilingClass->GetSuperClass().GetDestructorMethod();
|
---|
[51] | 551 | if( method ){
|
---|
[3] | 552 | Opcode_CallProc("",
|
---|
[206] | 553 | &method->GetUserProc(),
|
---|
[3] | 554 | 0,
|
---|
| 555 | "",
|
---|
| 556 | 0);
|
---|
| 557 | }
|
---|
| 558 | }
|
---|
| 559 | }
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 | //With情報のメモリを解放
|
---|
| 563 | for(i3=0;i3<WithInfo.num;i3++){
|
---|
| 564 | SetError(22,"With",WithInfo.pWithCp[i3]);
|
---|
| 565 | HeapDefaultFree(WithInfo.ppName[i3]);
|
---|
| 566 | }
|
---|
| 567 | HeapDefaultFree(WithInfo.ppName);
|
---|
| 568 | HeapDefaultFree(WithInfo.pWithCp);
|
---|
| 569 |
|
---|
| 570 | //ローカルオブジェクト(レキシカルスコープレベル=0)の解放処理
|
---|
[254] | 571 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd();
|
---|
[3] | 572 |
|
---|
[34] | 573 | //プロシージャ抜け出しスケジュール(Exit Sub/Function)
|
---|
[254] | 574 | compiler.codeGenerator.ResolveExitSubSchedule();
|
---|
[34] | 575 |
|
---|
| 576 | if(bDebugCompile&&bDebugSupportProc==0){
|
---|
| 577 | //call _DebugSys_EndProc
|
---|
[206] | 578 | extern const UserProc *pSub_DebugSys_EndProc;
|
---|
[226] | 579 | compiler.codeGenerator.op_call(pSub_DebugSys_EndProc);
|
---|
[34] | 580 | }
|
---|
| 581 |
|
---|
[75] | 582 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 583 | //////////////////////////////////
|
---|
| 584 | // 戻り値をraxまたはxmm0に設定
|
---|
| 585 | //////////////////////////////////
|
---|
| 586 |
|
---|
| 587 | RELATIVE_VAR RelativeVar;
|
---|
| 588 |
|
---|
[75] | 589 | const char *temp = pUserProc->GetName().c_str();
|
---|
| 590 | if( temp[0]==1 && temp[1]==ESC_OPERATOR ){
|
---|
[3] | 591 | temp="_System_ReturnValue";
|
---|
[75] | 592 | }
|
---|
| 593 | GetVarOffsetReadWrite(temp,&RelativeVar,Type());
|
---|
[3] | 594 |
|
---|
[75] | 595 | i3=pUserProc->ReturnType().GetBasicType();
|
---|
[3] | 596 |
|
---|
[64] | 597 | if(i3==DEF_OBJECT || i3==DEF_STRUCT){
|
---|
[3] | 598 | SetVarPtrToReg(REG_RAX,&RelativeVar);
|
---|
[64] | 599 | if( i3==DEF_OBJECT ){
|
---|
| 600 | //mov rax,qword ptr[rax]
|
---|
[226] | 601 | compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_RAX, REG_RAX, 0, MOD_BASE );
|
---|
[64] | 602 | }
|
---|
[3] | 603 | }
|
---|
| 604 | else if(i3==DEF_DOUBLE){
|
---|
| 605 | //64ビット実数型
|
---|
| 606 | SetXmmReg_DoubleVariable(&RelativeVar,REG_XMM0);
|
---|
| 607 | }
|
---|
| 608 | else if(i3==DEF_SINGLE){
|
---|
| 609 | //32ビット実数型
|
---|
| 610 | SetXmmReg_SingleVariable(&RelativeVar,REG_XMM0);
|
---|
| 611 | }
|
---|
| 612 | else if(IsWholeNumberType(i3)){
|
---|
| 613 | //整数型
|
---|
| 614 | SetReg_WholeVariable(i3,&RelativeVar,REG_RAX);
|
---|
| 615 | }
|
---|
| 616 | else SetError(300,NULL,cp);
|
---|
| 617 | }
|
---|
| 618 |
|
---|
| 619 | //ローカル変数領域のサイズをスタックフレームに通知
|
---|
[220] | 620 | int localParmSize = AllLocalVarSize - BaseLocalVar;
|
---|
[232] | 621 | int stackFrameSize = pobj_sf->GetFrameSize( localParmSize );
|
---|
[3] | 622 |
|
---|
| 623 | //ローカル変数アドレススケジュール
|
---|
[254] | 624 | BOOST_FOREACH( const PertialSchedule *pPertialSchedule, compiler.codeGenerator.localVarPertialSchedules )
|
---|
| 625 | {
|
---|
[255] | 626 | compiler.codeGenerator.opfix_offset( pPertialSchedule, AllLocalVarSize + stackFrameSize );
|
---|
[3] | 627 | }
|
---|
[254] | 628 | compiler.codeGenerator.localVarPertialSchedules.clear();
|
---|
[206] | 629 | BOOST_FOREACH( Variable *pVar, pUserProc->GetLocalVars() ){
|
---|
[3] | 630 | //後にデバッグで利用する
|
---|
[206] | 631 | pVar->SetOffsetAddress(
|
---|
[220] | 632 | AllLocalVarSize + stackFrameSize - pVar->GetOffsetAddress()
|
---|
[206] | 633 | );
|
---|
[3] | 634 | }
|
---|
| 635 |
|
---|
| 636 | //mov reg,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 637 | pobj_sf->pop(REG_R15);
|
---|
| 638 | pobj_sf->pop(REG_R14);
|
---|
| 639 | pobj_sf->pop(REG_R13);
|
---|
| 640 | pobj_sf->pop(REG_R12);
|
---|
| 641 | pobj_sf->pop(REG_RDI);
|
---|
| 642 | pobj_sf->pop(REG_RSI);
|
---|
| 643 | pobj_sf->pop(REG_RBX);
|
---|
| 644 |
|
---|
[220] | 645 | int stackFrameAndLocalParamSize = localParmSize + stackFrameSize;
|
---|
[3] | 646 |
|
---|
| 647 | //add rsp,スタックフレームサイズ
|
---|
[226] | 648 | compiler.codeGenerator.op_add_rsp(stackFrameAndLocalParamSize);
|
---|
[3] | 649 |
|
---|
[142] | 650 | //ret
|
---|
[226] | 651 | compiler.codeGenerator.op_ret();
|
---|
[3] | 652 |
|
---|
| 653 |
|
---|
| 654 | //デバッグ用
|
---|
[255] | 655 | if( pRspOffsetPertialSchedule1 ){
|
---|
| 656 | compiler.codeGenerator.opfix( pRspOffsetPertialSchedule1, stackFrameAndLocalParamSize );
|
---|
| 657 | compiler.codeGenerator.opfix( pRspOffsetPertialSchedule2, stackFrameAndLocalParamSize + sizeof(_int64) );
|
---|
[3] | 658 | }
|
---|
| 659 |
|
---|
| 660 |
|
---|
| 661 | //スタックフレームスケジュール(subコマンド)
|
---|
[255] | 662 | compiler.codeGenerator.opfix( pStackFramePertialSchedule, stackFrameAndLocalParamSize );
|
---|
[3] | 663 |
|
---|
| 664 | //スタックフレームスケジュールを実行
|
---|
[220] | 665 | pobj_sf->RunningSchedule( stackFrameSize );
|
---|
[3] | 666 | delete pobj_sf;
|
---|
| 667 | pobj_sf=0;
|
---|
| 668 |
|
---|
| 669 |
|
---|
[263] | 670 | pUserProc->_endOpAddressOld = obp;
|
---|
[3] | 671 |
|
---|
[75] | 672 |
|
---|
| 673 | //重複エラー情報管理のメモリを解放
|
---|
| 674 | for(i3=0;i3<SynonymErrorNum;i3++) HeapDefaultFree(SynonymErrorWords[i3]);
|
---|
| 675 | HeapDefaultFree(SynonymErrorWords);
|
---|
[3] | 676 | }
|
---|
[91] | 677 |
|
---|
[206] | 678 | void CompileBufferInProcedure( const UserProc &userProc ){
|
---|
[91] | 679 | if( userProc.IsUsing() == false || userProc.IsCompiled() ) return;
|
---|
| 680 |
|
---|
| 681 | _compile_proc( &userProc );
|
---|
| 682 |
|
---|
| 683 | // ログを履く
|
---|
| 684 | char temporary[8192];
|
---|
| 685 | temporary[0]=0;
|
---|
| 686 | lstrcat( temporary, "------------------------------------------------------------------\n" );
|
---|
[100] | 687 | sprintf( temporary + lstrlen(temporary), "【 %s のコード情報】\n", userProc.GetName().c_str() );
|
---|
[91] | 688 | sprintf( temporary + lstrlen(temporary), "code size: %d bytes\n", userProc.GetCodeSize() );
|
---|
| 689 | lstrcat( temporary, "------------------------------------------------------------------\n" );
|
---|
| 690 | lstrcat( temporary, "\n" );
|
---|
[169] | 691 | trace_for_size( temporary );
|
---|
[91] | 692 | }
|
---|
[3] | 693 | void CompileLocal(){
|
---|
[266] | 694 | if( compiler.IsDll() ){
|
---|
[3] | 695 | //DLLの場合はグローバル変数を初期化するための関数を一番初めにコンパイルする
|
---|
[206] | 696 | const UserProc *pUserProc = GetSubHash("_System_InitDllGlobalVariables");
|
---|
[75] | 697 | if(pUserProc){
|
---|
[91] | 698 | CompileBufferInProcedure( *pUserProc );
|
---|
[3] | 699 | }
|
---|
| 700 | else SetError(300,NULL,cp);
|
---|
| 701 | }
|
---|
| 702 |
|
---|
[94] | 703 | //_System_TypeBase_InitializeUserTypesは一番最後にコンパイル
|
---|
[206] | 704 | extern const UserProc *pSubStaticMethod_System_TypeBase_InitializeUserTypes;
|
---|
[94] | 705 | pSubStaticMethod_System_TypeBase_InitializeUserTypes->CompleteCompile();
|
---|
| 706 |
|
---|
[3] | 707 | //_System_InitStaticLocalVariablesは一番最後にコンパイル
|
---|
| 708 | //※一般関数内の静的変数オブジェクトをすべて収集しなければならない
|
---|
[206] | 709 | extern const UserProc *pSub_System_InitStaticLocalVariables;
|
---|
[75] | 710 | pSub_System_InitStaticLocalVariables->CompleteCompile();
|
---|
[3] | 711 |
|
---|
| 712 | //_System_Call_Destructor_of_GlobalObjectは一番最後にコンパイル
|
---|
[206] | 713 | extern const UserProc *pSub_System_Call_Destructor_of_GlobalObject;
|
---|
[75] | 714 | pSub_System_Call_Destructor_of_GlobalObject->CompleteCompile();
|
---|
[3] | 715 |
|
---|
[94] | 716 | repeat:
|
---|
[266] | 717 | compiler.GetObjectModule().meta.GetUserProcs().Iterator_Reset();
|
---|
| 718 | while( compiler.GetObjectModule().meta.GetUserProcs().Iterator_HasNext() )
|
---|
[206] | 719 | {
|
---|
[266] | 720 | UserProc *pUserProc = compiler.GetObjectModule().meta.GetUserProcs().Iterator_GetNext();
|
---|
[206] | 721 | CompileBufferInProcedure( *pUserProc );
|
---|
[3] | 722 | }
|
---|
| 723 |
|
---|
[94] | 724 | if( IsNeedProcCompile() ){
|
---|
| 725 | //プロシージャコンパイルによって、プロシージャコンパイルが必要になる場合
|
---|
| 726 | goto repeat;
|
---|
| 727 | }
|
---|
| 728 |
|
---|
| 729 | //_System_TypeBase_InitializeUserTypesは最後のほうでコンパイル
|
---|
| 730 | pSubStaticMethod_System_TypeBase_InitializeUserTypes->KillCompileStatus();
|
---|
| 731 | CompileBufferInProcedure( *pSubStaticMethod_System_TypeBase_InitializeUserTypes );
|
---|
| 732 |
|
---|
| 733 | if( IsNeedProcCompile() ){
|
---|
| 734 | //プロシージャコンパイルによって、プロシージャコンパイルが必要になる場合
|
---|
[206] | 735 |
|
---|
[266] | 736 | compiler.GetObjectModule().meta.GetUserProcs().Iterator_Reset();
|
---|
| 737 | while( compiler.GetObjectModule().meta.GetUserProcs().Iterator_HasNext() )
|
---|
[206] | 738 | {
|
---|
[266] | 739 | UserProc *pUserProc = compiler.GetObjectModule().meta.GetUserProcs().Iterator_GetNext();
|
---|
[206] | 740 | CompileBufferInProcedure( *pUserProc );
|
---|
[3] | 741 | }
|
---|
| 742 | }
|
---|
| 743 |
|
---|
| 744 | //_System_InitStaticLocalVariablesは一番最後にコンパイル
|
---|
[75] | 745 | pSub_System_InitStaticLocalVariables->KillCompileStatus();
|
---|
[91] | 746 | CompileBufferInProcedure( *pSub_System_InitStaticLocalVariables );
|
---|
[3] | 747 |
|
---|
| 748 | //_System_Call_Destructor_of_GlobalObjectは一番最後にコンパイル
|
---|
[75] | 749 | pSub_System_Call_Destructor_of_GlobalObject->KillCompileStatus();
|
---|
[91] | 750 | CompileBufferInProcedure( *pSub_System_Call_Destructor_of_GlobalObject );
|
---|
[3] | 751 | }
|
---|