Changeset 359 in dev for trunk/abdev/BasicCompiler_Common/src/Exception.cpp
- Timestamp:
- Nov 9, 2007, 8:52:07 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Exception.cpp
r358 r359 13 13 class TryScope 14 14 { 15 bool isCatched; 16 bool isDefinedFinally; 17 18 std::vector<const PertialSchedule *> finallySchedules; 19 void JmpFinally() 20 { 21 finallySchedules.push_back( 22 compiler.codeGenerator.op_jmp( 0, sizeof(long), true ) 23 ); 24 } 25 void ResolveJmpFinally() 26 { 27 BOOST_FOREACH( const PertialSchedule *pPertialSchedule, finallySchedules ) 28 { 29 compiler.codeGenerator.opfix_JmpPertialSchedule( pPertialSchedule ); 30 } 31 } 32 33 const PertialSchedule *pPertialScheduleForFinallyAddress; 34 15 35 public: 16 36 const PertialSchedule *pPertialScheduleForCatchAddress; 17 37 TryScope() 38 : isCatched( false ) 39 , isDefinedFinally( false ) 18 40 { 19 41 } … … 22 44 } 23 45 46 bool IsCatched() const 47 { 48 return isCatched; 49 } 50 bool IsDefinedFinally() const 51 { 52 return isDefinedFinally; 53 } 54 24 55 void RegistPertialScheduleForCatchAddress( const PertialSchedule *pPertialScheduleForCatchAddress ) 25 56 { 26 57 this->pPertialScheduleForCatchAddress = pPertialScheduleForCatchAddress; 27 58 } 28 29 void AddCatch() 30 { 59 void RegistPertialScheduleForFinallyAddress( const PertialSchedule *pPertialScheduleForFinallyAddress ) 60 { 61 this->pPertialScheduleForFinallyAddress = pPertialScheduleForFinallyAddress; 62 } 63 const PertialSchedule *GetPertialScheduleForFinallyAddress() const 64 { 65 return pPertialScheduleForFinallyAddress; 66 } 67 68 69 70 void Try() 71 { 72 } 73 74 void Catch() 75 { 76 if( isDefinedFinally ) 77 { 78 SetError(71,NULL,cp); 79 return; 80 } 81 82 isCatched = true; 83 84 JmpFinally(); 85 } 86 void Finally() 87 { 88 if( isDefinedFinally ) 89 { 90 SetError(70,NULL,cp); 91 return; 92 } 93 94 isDefinedFinally = true; 95 96 ResolveJmpFinally(); 31 97 } 32 98 33 99 void EndTry() 34 100 { 101 if( !isDefinedFinally ) 102 { 103 Finally(); 104 } 35 105 } 36 106 }; … … 47 117 48 118 tryScopes.push_back( TryScope() ); 49 50 int backCp = cp; 51 52 char temporary[1024]; 53 lstrcpy( temporary, "ExceptionService.BeginTryScope( _System_GetNowScopeCatchAddresses() As VoidPtr, _System_GetBp() As LONG_PTR, _System_GetSp() As LONG_PTR )" ); 54 MakeMiddleCode( temporary ); 55 ChangeOpcode( temporary ); 56 57 cp = backCp; 58 } 59 void CatchCommand() 60 { 61 if( tryScopes.size() == 0 ) 62 { 63 SetError(1,NULL,cp); 64 return; 65 } 66 119 tryScopes.back().Try(); 120 121 int backCp = cp; 122 123 char temporary[1024]; 124 lstrcpy( temporary, "ExceptionService.BeginTryScope( _System_GetNowScopeCatchAddresses() As VoidPtr, _System_GetNowScopeFinallyAddresses() As VoidPtr, _System_GetBp() As LONG_PTR, _System_GetSp() As LONG_PTR )" ); 125 MakeMiddleCode( temporary ); 126 ChangeOpcode( temporary ); 127 128 cp = backCp; 129 } 130 void CatchCommand( const char *parameter ) 131 { 132 if( tryScopes.size() == 0 ) 133 { 134 SetError(1,NULL,cp); 135 return; 136 } 137 138 Type paramType; 139 if( parameter[0] ) 140 { 141 char varName[VN_SIZE], typeName[VN_SIZE]; 142 SplitSyntacticForAs( parameter, varName, typeName ); 143 if( !typeName[0] ) 144 { 145 SetError(72,NULL,cp); 146 } 147 else 148 { 149 if( !compiler.StringToType( typeName, paramType ) ) 150 { 151 SetError(73,NULL,cp); 152 } 153 } 154 } 155 156 // パラメータの扱いが未完成 157 158 tryScopes.back().Catch(); 159 160 // _System_GetNowScopeCatchAddressesを解決 67 161 compiler.codeGenerator.opfix( tryScopes.back().pPertialScheduleForCatchAddress, compiler.codeGenerator.GetNativeCodeSize() ); 68 162 } 69 163 void FinallyCommand() 70 164 { 165 tryScopes.back().Finally(); 166 167 int backCp = cp; 168 169 char temporary[1024]; 170 lstrcpy( temporary, "_System_pobj_AllThreads->GetCurrentException()->FinishFinally()" ); 171 MakeMiddleCode( temporary ); 172 ChangeOpcode( temporary ); 173 174 cp = backCp; 175 176 //Tryスコープに入るときに引き渡されるパラメータ値を解決 177 compiler.codeGenerator.opfix( tryScopes.back().GetPertialScheduleForFinallyAddress(), compiler.codeGenerator.GetNativeCodeSize() ); 71 178 } 72 179 void EndTryCommand() … … 80 187 int backCp = cp; 81 188 189 if( !tryScopes.back().IsCatched() ) 190 { 191 // _System_GetNowScopeCatchAddressesを解決 192 compiler.codeGenerator.opfix( tryScopes.back().pPertialScheduleForCatchAddress, 0 ); 193 } 194 195 if( !tryScopes.back().IsDefinedFinally() ) 196 { 197 // Finallyが定義されていないときは空のFinallyを定義しておく 198 FinallyCommand(); 199 } 200 82 201 char temporary[1024]; 83 202 lstrcpy( temporary, "_System_pobj_AllThreads->GetCurrentException()->EndTryScope()" ); … … 87 206 cp = backCp; 88 207 208 tryScopes.back().EndTry(); 89 209 tryScopes.pop_back(); 90 210 } … … 133 253 } 134 254 255 void Opcode_Func_System_GetNowScopeFinallyAddress() 256 { 257 if( tryScopes.size() == 0 ) 258 { 259 SetError(1,NULL,cp); 260 return; 261 } 262 263 #ifdef _WIN64 264 //mov rax,finallyAddress 265 const PertialSchedule *pPertialSchedule = compiler.codeGenerator.op_mov_RV( sizeof(long), REG_RAX, 0, Schedule::CatchAddress, true ); 266 #else 267 //mov eax,finallyAddress 268 const PertialSchedule *pPertialSchedule = compiler.codeGenerator.op_mov_RV( REG_EAX, 0, Schedule::CatchAddress, true ); 269 #endif 270 271 tryScopes.back().RegistPertialScheduleForFinallyAddress( pPertialSchedule ); 272 273 /* 274 int dataTableOffset = compiler.GetObjectModule().dataTable.Add( static_cast<LONG_PTR>(0) ); 275 276 #ifdef _WIN64 277 //mov rax,dataTableOffset 278 compiler.codeGenerator.op_mov_RV( sizeof(_int64), REG_RAX, dataTableOffset, Schedule::DataTable); 279 #else 280 //mov eax,dataTableOffset 281 compiler.codeGenerator.op_mov_RV( REG_EAX, dataTableOffset, Schedule::DataTable); 282 #endif 283 */ 284 } 285 135 286 136 287 } // Exception
Note:
See TracChangeset
for help on using the changeset viewer.