[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[248] | 3 | #include <LexicalScope.h>
|
---|
[206] | 4 | #include <Compiler.h>
|
---|
[184] | 5 |
|
---|
| 6 | #include "../common.h"
|
---|
| 7 |
|
---|
| 8 | #ifdef _AMD64_
|
---|
| 9 | #include "../../BasicCompiler64/opcode.h"
|
---|
| 10 | #else
|
---|
| 11 | #include "../../BasicCompiler32/opcode.h"
|
---|
| 12 | #endif
|
---|
| 13 |
|
---|
| 14 |
|
---|
[248] | 15 | void LexicalScope::Break(){
|
---|
[184] | 16 | //未解放のローカルオブジェクトを解放する
|
---|
[248] | 17 | compiler.codeGenerator.lexicalScopes.CallDestructorsOfReturn( level );
|
---|
[184] | 18 |
|
---|
| 19 | //jmp ...(Next addr)
|
---|
[248] | 20 | breakPertialSchedules.push_back(
|
---|
| 21 | compiler.codeGenerator.op_jmp( 0, sizeof(long), true )
|
---|
| 22 | );
|
---|
| 23 | }
|
---|
| 24 | void LexicalScope::RunScheduleOfBreak(){
|
---|
| 25 | BOOST_FOREACH( const PertialSchedule *pBreakPertialSchedule, breakPertialSchedules )
|
---|
| 26 | {
|
---|
| 27 | compiler.codeGenerator.opfix_JmpPertialSchedule( pBreakPertialSchedule );
|
---|
| 28 | }
|
---|
| 29 | }
|
---|
[184] | 30 |
|
---|
| 31 |
|
---|
[248] | 32 |
|
---|
| 33 | LexicalScope *LexicalScopes::SearchScope( LexicalScope::SCOPE_TYPE TypeOfStatement ){
|
---|
| 34 | for( int i = level; i>=0; i-- ){
|
---|
| 35 | if( ppScopes[i]->GetTypeOfStatement() == TypeOfStatement ){
|
---|
| 36 | return ppScopes[i];
|
---|
| 37 | }
|
---|
[184] | 38 | }
|
---|
[248] | 39 | return NULL;
|
---|
[184] | 40 | }
|
---|
| 41 |
|
---|
[248] | 42 | void LexicalScopes::Init(int addr){
|
---|
| 43 | // TODO: エラーチェック
|
---|
| 44 |
|
---|
| 45 | level = -1;
|
---|
| 46 | Start( addr, LexicalScope::SCOPE_TYPE_BASE );
|
---|
| 47 | }
|
---|
| 48 | void LexicalScopes::Start( int addr, LexicalScope::SCOPE_TYPE TypeOfStatement ){
|
---|
| 49 | level++;
|
---|
| 50 | ppScopes = (LexicalScope **)realloc( ppScopes, ( level + 1 ) * sizeof( LexicalScope * ) );
|
---|
| 51 | ppScopes[level] = new LexicalScope( level, addr, TypeOfStatement );
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | int LexicalScopes::GetNowLevel(){
|
---|
| 55 | return level;
|
---|
| 56 | }
|
---|
| 57 | void LexicalScopes::SetNowLevel( int level ){
|
---|
| 58 | this->level = level;
|
---|
| 59 | }
|
---|
| 60 | int LexicalScopes::GetStartAddress(){
|
---|
| 61 | return ppScopes[level]->GetStartAddress();
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | void LexicalScopes::End(){
|
---|
[206] | 65 | if( level <= 0 ){
|
---|
| 66 | SetError();
|
---|
| 67 | return;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | //デストラクタを呼ぶ
|
---|
| 71 | CallDestructorsOfScopeEnd();
|
---|
| 72 |
|
---|
| 73 | Variables &vars = UserProc::IsGlobalAreaCompiling() ?
|
---|
[265] | 74 | compiler.GetObjectModule().meta.GetGlobalVars() :
|
---|
[206] | 75 | UserProc::CompilingUserProc().GetLocalVars();
|
---|
| 76 |
|
---|
| 77 | //使用済みローカル変数の生存チェックを外す
|
---|
| 78 | BOOST_FOREACH( Variable *pVar, vars ){
|
---|
| 79 | if(pVar->bLiving&&pVar->GetScopeLevel()==level){
|
---|
| 80 | pVar->bLiving=0;
|
---|
| 81 | extern int obp;
|
---|
| 82 | pVar->SetScopeEndAddress( obp );
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 |
|
---|
| 87 | //スコープ抜け出しスケジュール
|
---|
| 88 | ppScopes[level]->RunScheduleOfBreak();
|
---|
| 89 |
|
---|
| 90 |
|
---|
| 91 | //スコープレベルを下げる
|
---|
| 92 | delete ppScopes[level];
|
---|
| 93 | level--;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[184] | 96 | // スコープ終了時のデストラクタ呼び出し
|
---|
[248] | 97 | void LexicalScopes::CallDestructorsOfScopeEnd(){
|
---|
[184] | 98 |
|
---|
[206] | 99 | Variables &vars = UserProc::IsGlobalAreaCompiling() ?
|
---|
[265] | 100 | compiler.GetObjectModule().meta.GetGlobalVars() :
|
---|
[206] | 101 | UserProc::CompilingUserProc().GetLocalVars();
|
---|
[184] | 102 |
|
---|
| 103 |
|
---|
| 104 | int i3;
|
---|
| 105 | int indexSystemGC=-1;
|
---|
| 106 | for( i3 = (int)vars.size() - 1; i3 >= 0; i3-- ){ //確保したのと逆順序で解放するため、バックサーチにする
|
---|
| 107 |
|
---|
| 108 | Variable *pVar = vars[i3];
|
---|
| 109 |
|
---|
| 110 | if( UserProc::IsGlobalAreaCompiling() && GetNowLevel() == 0 ){
|
---|
| 111 | if( pVar->GetName() == "_System_GC" ){
|
---|
| 112 | indexSystemGC=i3;
|
---|
| 113 | continue;
|
---|
| 114 | }
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | //同一レベルのレキシカルスコープのみを検知
|
---|
| 118 | if(!pVar->bLiving) continue;
|
---|
[206] | 119 | if( pVar->GetScopeLevel() != GetNowLevel() ) continue;
|
---|
[184] | 120 |
|
---|
[206] | 121 | if( pVar->GetType().IsStruct() && pVar->IsParameter() ){
|
---|
[184] | 122 | //構造体パラメータを持つとき
|
---|
| 123 |
|
---|
| 124 | //メモリを解放する
|
---|
| 125 |
|
---|
| 126 | #ifdef _AMD64_
|
---|
| 127 | //x64ビットコード
|
---|
| 128 |
|
---|
| 129 | //mov rcx,qword ptr[rsp+offset]
|
---|
[254] | 130 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
[226] | 131 | compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RCX,REG_RSP,
|
---|
[206] | 132 | -pVar->GetOffsetAddress(),
|
---|
[234] | 133 | MOD_BASE_DISP32,
|
---|
[254] | 134 | Schedule::None, true)
|
---|
| 135 | );
|
---|
[184] | 136 | #else
|
---|
| 137 | //x86コード
|
---|
| 138 |
|
---|
| 139 | //mov ecx,dword ptr[ebp+offset]
|
---|
[253] | 140 | compiler.codeGenerator.localVarPertialSchedules.push_back(
|
---|
| 141 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_ECX,REG_EBP,-pVar->GetOffsetAddress(),MOD_BASE_DISP32, Schedule::None, true )
|
---|
| 142 | );
|
---|
[184] | 143 |
|
---|
| 144 | //push ecx
|
---|
[225] | 145 | compiler.codeGenerator.op_push(REG_ECX);
|
---|
[184] | 146 | #endif
|
---|
| 147 |
|
---|
| 148 | //call free
|
---|
[206] | 149 | extern const UserProc *pSub_free;
|
---|
[225] | 150 | compiler.codeGenerator.op_call(pSub_free);
|
---|
[184] | 151 |
|
---|
| 152 |
|
---|
| 153 | if( UserProc::IsGlobalAreaCompiling() ){
|
---|
| 154 | //ここには来ないハズ
|
---|
| 155 | SetError(300,NULL,cp);
|
---|
| 156 | }
|
---|
| 157 | }
|
---|
| 158 | }
|
---|
| 159 |
|
---|
| 160 | if(indexSystemGC!=-1){
|
---|
| 161 | //_System_GCオブジェクトのデストラクタの呼び出し処理
|
---|
[206] | 162 | const CMethod *method = vars[indexSystemGC]->GetType().GetClass().GetDestructorMethod();
|
---|
[184] | 163 | if( method ){
|
---|
[206] | 164 | Opcode_CallProc("",&method->GetUserProc(),0,vars[indexSystemGC]->GetName().c_str(),DEF_OBJECT);
|
---|
[184] | 165 | }
|
---|
| 166 | }
|
---|
| 167 | }
|
---|
| 168 |
|
---|
| 169 | // Returnステートメントで発行されるデストラクタを生成
|
---|
[248] | 170 | void LexicalScopes::CallDestructorsOfReturn( int BaseLevel ){
|
---|
[184] | 171 | //現在のスコープレベルを退避
|
---|
| 172 | int backupScopeLevel = GetNowLevel();
|
---|
| 173 |
|
---|
| 174 | for( int i = GetNowLevel(); i >= BaseLevel; i-- ){
|
---|
| 175 | SetNowLevel( i );
|
---|
| 176 |
|
---|
| 177 | CallDestructorsOfScopeEnd();
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | //現在のスコープレベルを復元
|
---|
| 181 | SetNowLevel( backupScopeLevel );
|
---|
| 182 | }
|
---|