| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | #include <Source.h>
|
|---|
| 4 | #include <Class.h>
|
|---|
| 5 | #include <Compiler.h>
|
|---|
| 6 |
|
|---|
| 7 | #include "../common.h"
|
|---|
| 8 | #ifdef _AMD64_
|
|---|
| 9 | #include "../../compiler_x64/opcode.h"
|
|---|
| 10 | #else
|
|---|
| 11 | #include "../../compiler_x86/opcode.h"
|
|---|
| 12 | #endif
|
|---|
| 13 |
|
|---|
| 14 | using namespace ActiveBasic::Compiler;
|
|---|
| 15 |
|
|---|
| 16 | void CClass::Using() const
|
|---|
| 17 | {
|
|---|
| 18 | if( this->IsUsing() )
|
|---|
| 19 | {
|
|---|
| 20 | // 既に使用することになっている
|
|---|
| 21 | return;
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | Prototype::Using();
|
|---|
| 25 |
|
|---|
| 26 | // 仮想関数になるメソッドに使用チェックをつける
|
|---|
| 27 | const CClass &objThis = *this;
|
|---|
| 28 | BOOST_FOREACH( const CMethod *pMethod, objThis.GetDynamicMethods() )
|
|---|
| 29 | {
|
|---|
| 30 | if( pMethod->IsVirtual() )
|
|---|
| 31 | {
|
|---|
| 32 | pMethod->GetUserProc().Using();
|
|---|
| 33 | }
|
|---|
| 34 | }
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | bool CClass::IsClass() const
|
|---|
| 38 | {
|
|---|
| 39 | return classType == CClass::Class;
|
|---|
| 40 | }
|
|---|
| 41 | bool CClass::IsInterface() const
|
|---|
| 42 | {
|
|---|
| 43 | return classType == CClass::Interface;
|
|---|
| 44 | }
|
|---|
| 45 | bool CClass::IsComInterface() const
|
|---|
| 46 | {
|
|---|
| 47 | return classType == CClass::ComInterface;
|
|---|
| 48 | }
|
|---|
| 49 | bool CClass::IsEnum() const
|
|---|
| 50 | {
|
|---|
| 51 | return classType == CClass::Enum;
|
|---|
| 52 | }
|
|---|
| 53 | bool CClass::IsDelegate() const
|
|---|
| 54 | {
|
|---|
| 55 | return classType == CClass::Delegate;
|
|---|
| 56 | }
|
|---|
| 57 | bool CClass::IsStructure() const
|
|---|
| 58 | {
|
|---|
| 59 | return classType == CClass::Structure;
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 | // コンストラクタのコンパイルを開始
|
|---|
| 64 | void CClass::NotifyStartConstructorCompile() const
|
|---|
| 65 | {
|
|---|
| 66 | isCompilingConstructor = true;
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | //コンストラクタのコンパイルを終了
|
|---|
| 70 | void CClass::NotifyFinishConstructorCompile() const
|
|---|
| 71 | {
|
|---|
| 72 | isCompilingConstructor = false;
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | //コンストラクタをコンパイル中かどうかを判別
|
|---|
| 76 | bool CClass::IsCompilingConstructor() const
|
|---|
| 77 | {
|
|---|
| 78 | return isCompilingConstructor;
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | //デストラクタのコンパイルを開始
|
|---|
| 82 | void CClass::NotifyStartDestructorCompile() const{
|
|---|
| 83 | isCompilingDestructor = true;
|
|---|
| 84 | }
|
|---|
| 85 |
|
|---|
| 86 | //デストラクタのコンパイルを終了
|
|---|
| 87 | void CClass::NotifyFinishDestructorCompile() const{
|
|---|
| 88 | isCompilingDestructor = false;
|
|---|
| 89 | }
|
|---|
| 90 |
|
|---|
| 91 | //デストラクタをコンパイル中かどうかを判別
|
|---|
| 92 | bool CClass::IsCompilingDestructor() const
|
|---|
| 93 | {
|
|---|
| 94 | return isCompilingDestructor;
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | //自身の派生クラスかどうかを確認
|
|---|
| 98 | bool CClass::IsSubClass( const CClass *pSubClass ) const
|
|---|
| 99 | {
|
|---|
| 100 | if( !pSubClass->HasSuperClass() )
|
|---|
| 101 | {
|
|---|
| 102 | return false;
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | const CClass *pTempClass = &pSubClass->GetSuperClass();
|
|---|
| 106 | while( pTempClass ){
|
|---|
| 107 | if( this == pTempClass ) return true;
|
|---|
| 108 | pTempClass = &pTempClass->GetSuperClass();
|
|---|
| 109 | }
|
|---|
| 110 | return false;
|
|---|
| 111 | }
|
|---|
| 112 |
|
|---|
| 113 | //自身と等しいまたは派生クラスかどうかを確認
|
|---|
| 114 | bool CClass::IsEqualsOrSubClass( const CClass *pSubClass ) const
|
|---|
| 115 | {
|
|---|
| 116 | if( IsEquals( pSubClass ) ) return true;
|
|---|
| 117 | return IsSubClass( pSubClass );
|
|---|
| 118 | }
|
|---|
| 119 |
|
|---|
| 120 | // 自身と等しいまたは派生クラス、基底クラスかどうかを確認
|
|---|
| 121 | bool CClass::IsEqualsOrSubClassOrSuperClass( const CClass &objClass ) const
|
|---|
| 122 | {
|
|---|
| 123 | if( IsEquals( &objClass ) ) return true;
|
|---|
| 124 | if( IsSubClass( &objClass ) ) return true;
|
|---|
| 125 | if( objClass.IsSubClass( this ) ) return true;
|
|---|
| 126 | return false;
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| 129 | bool CClass::IsInheritsInterface( const CClass *pInterfaceClass ) const
|
|---|
| 130 | {
|
|---|
| 131 | BOOST_FOREACH( const ::Interface *pInterface, interfaces ){
|
|---|
| 132 | if( pInterfaceClass == &pInterface->GetClass() ){
|
|---|
| 133 | return true;
|
|---|
| 134 | }
|
|---|
| 135 | }
|
|---|
| 136 | return false;
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | bool CClass::InheritsClass( const CClass &inheritsClass, const Types &actualTypeParameters, int nowLine )
|
|---|
| 140 | {
|
|---|
| 141 | //メソッドをコピー
|
|---|
| 142 | BOOST_FOREACH( const CMethod *pBaseMethod, inheritsClass.GetDynamicMethods() ){
|
|---|
| 143 | CMethod *pMethod = new DynamicMethod( *pBaseMethod );
|
|---|
| 144 |
|
|---|
| 145 | // アクセシビリティ
|
|---|
| 146 | if(pBaseMethod->GetAccessibility() == Prototype::Private){
|
|---|
| 147 | pMethod->SetAccessibility( Prototype::None );
|
|---|
| 148 | }
|
|---|
| 149 | else{
|
|---|
| 150 | pMethod->SetAccessibility( pBaseMethod->GetAccessibility() );
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 | //pobj_Inherits
|
|---|
| 154 | // ※継承元のClassIndexをセット(入れ子継承を考慮する)
|
|---|
| 155 | if(pBaseMethod->GetInheritsClassPtr()==0){
|
|---|
| 156 | pMethod->SetInheritsClassPtr( &inheritsClass );
|
|---|
| 157 | }
|
|---|
| 158 | else{
|
|---|
| 159 | pMethod->SetInheritsClassPtr( pBaseMethod->GetInheritsClassPtr() );
|
|---|
| 160 | }
|
|---|
| 161 |
|
|---|
| 162 | GetDynamicMethods().push_back( pMethod );
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | //仮想関数の数
|
|---|
| 166 | AddVtblNum( inheritsClass.GetVtblNum() );
|
|---|
| 167 |
|
|---|
| 168 | //継承先のクラスをメンバとして保持する
|
|---|
| 169 | SetSuperClass( &inheritsClass );
|
|---|
| 170 | SetSuperClassActualTypeParameters( actualTypeParameters );
|
|---|
| 171 |
|
|---|
| 172 | // インターフェイスを引き継ぐ
|
|---|
| 173 | BOOST_FOREACH( ::Interface *pInterface, inheritsClass.GetInterfaces() )
|
|---|
| 174 | {
|
|---|
| 175 | interfaces.push_back( new ::Interface( *pInterface ) );
|
|---|
| 176 | }
|
|---|
| 177 |
|
|---|
| 178 | if( this->IsInterface() && inheritsClass.IsComInterface() )
|
|---|
| 179 | {
|
|---|
| 180 | // COMインターフェイスを継承した場合はCOMインターフェイスにする
|
|---|
| 181 | this->SetClassType( CClass::ComInterface );
|
|---|
| 182 | }
|
|---|
| 183 |
|
|---|
| 184 | return true;
|
|---|
| 185 | }
|
|---|
| 186 |
|
|---|
| 187 | void CClass::AddDynamicMember( Member *pMember )
|
|---|
| 188 | {
|
|---|
| 189 | dynamicMembers.push_back( pMember );
|
|---|
| 190 | }
|
|---|
| 191 | void CClass::AddStaticMember( Member *pMember )
|
|---|
| 192 | {
|
|---|
| 193 | staticMembers.push_back( pMember );
|
|---|
| 194 | }
|
|---|
| 195 |
|
|---|
| 196 | bool CClass::DupliCheckAll(const char *name) const
|
|---|
| 197 | {
|
|---|
| 198 | //重複チェック
|
|---|
| 199 |
|
|---|
| 200 | //メンバ
|
|---|
| 201 | if(DupliCheckMember(name)) return 1;
|
|---|
| 202 |
|
|---|
| 203 | //メソッド
|
|---|
| 204 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
|---|
| 205 | if( lstrcmp( name, pMethod->GetUserProc().GetName().c_str() ) == 0 ){
|
|---|
| 206 | return 1;
|
|---|
| 207 | }
|
|---|
| 208 | }
|
|---|
| 209 |
|
|---|
| 210 | return 0;
|
|---|
| 211 | }
|
|---|
| 212 | bool CClass::DupliCheckMember(const char *name) const
|
|---|
| 213 | {
|
|---|
| 214 | //重複チェック
|
|---|
| 215 |
|
|---|
| 216 | if( this->HasSuperClass() )
|
|---|
| 217 | {
|
|---|
| 218 | if( this->GetSuperClass().DupliCheckMember( name ) )
|
|---|
| 219 | {
|
|---|
| 220 | // 基底クラスで重複が発見された
|
|---|
| 221 | return true;
|
|---|
| 222 | }
|
|---|
| 223 | }
|
|---|
| 224 |
|
|---|
| 225 | // 動的メンバ
|
|---|
| 226 | BOOST_FOREACH( Member *pMember, dynamicMembers )
|
|---|
| 227 | {
|
|---|
| 228 | if( GetName() == pMember->GetName() )
|
|---|
| 229 | {
|
|---|
| 230 | return true;
|
|---|
| 231 | }
|
|---|
| 232 | }
|
|---|
| 233 |
|
|---|
| 234 | // 静的メンバ
|
|---|
| 235 | BOOST_FOREACH( Member *pMember, staticMembers ){
|
|---|
| 236 | if( GetName() == pMember->GetName() ){
|
|---|
| 237 | return true;
|
|---|
| 238 | }
|
|---|
| 239 | }
|
|---|
| 240 |
|
|---|
| 241 | return false;
|
|---|
| 242 | }
|
|---|
| 243 |
|
|---|
| 244 | const Member *CClass::FindDynamicMember( const char *memberName ) const
|
|---|
| 245 | {
|
|---|
| 246 | if( this->HasSuperClass() )
|
|---|
| 247 | {
|
|---|
| 248 | // 基底クラスで検索
|
|---|
| 249 | const Member *result = this->GetSuperClass().FindDynamicMember( memberName );
|
|---|
| 250 | if( result )
|
|---|
| 251 | {
|
|---|
| 252 | return result;
|
|---|
| 253 | }
|
|---|
| 254 | }
|
|---|
| 255 |
|
|---|
| 256 | BOOST_FOREACH( Member *pMember, GetDynamicMembers() )
|
|---|
| 257 | {
|
|---|
| 258 | if( pMember->GetName() == memberName )
|
|---|
| 259 | {
|
|---|
| 260 | return pMember;
|
|---|
| 261 | }
|
|---|
| 262 | }
|
|---|
| 263 | return NULL;
|
|---|
| 264 | }
|
|---|
| 265 |
|
|---|
| 266 | void CClass::EnumDynamicMethodsOrInterfaceMethods( const char *methodName, std::vector<const UserProc *> &subs ) const
|
|---|
| 267 | {
|
|---|
| 268 | // 動的メソッド
|
|---|
| 269 | GetDynamicMethods().Enum( methodName, subs );
|
|---|
| 270 |
|
|---|
| 271 | // インターフェイス メソッド
|
|---|
| 272 | BOOST_FOREACH( ::Interface *pInterface, GetInterfaces() )
|
|---|
| 273 | {
|
|---|
| 274 | pInterface->GetDynamicMethods().Enum( methodName, subs );
|
|---|
| 275 | }
|
|---|
| 276 | }
|
|---|
| 277 | const CMethod *CClass::GetDynamicMethodOrInterfaceMethod( const UserProc *pUserProc ) const
|
|---|
| 278 | {
|
|---|
| 279 | // 動的メソッド
|
|---|
| 280 | const CMethod *result = GetDynamicMethods().GetMethodPtr( pUserProc );
|
|---|
| 281 |
|
|---|
| 282 | if( !result )
|
|---|
| 283 | {
|
|---|
| 284 | // インターフェイス メソッド
|
|---|
| 285 | BOOST_FOREACH( ::Interface *pInterface, GetInterfaces() )
|
|---|
| 286 | {
|
|---|
| 287 | result = pInterface->GetDynamicMethods().GetMethodPtr( pUserProc );
|
|---|
| 288 | if( result )
|
|---|
| 289 | {
|
|---|
| 290 | return result;
|
|---|
| 291 | }
|
|---|
| 292 | }
|
|---|
| 293 | }
|
|---|
| 294 |
|
|---|
| 295 | return result;
|
|---|
| 296 | }
|
|---|
| 297 |
|
|---|
| 298 | //サイズを取得
|
|---|
| 299 | int CClass::GetSize() const
|
|---|
| 300 | {
|
|---|
| 301 | int resultSize = 0;
|
|---|
| 302 |
|
|---|
| 303 | int alignment = 1;
|
|---|
| 304 | if( this->IsStructure() )
|
|---|
| 305 | {
|
|---|
| 306 | // 構造体のとき
|
|---|
| 307 |
|
|---|
| 308 | if( this->GetFixedAlignment() )
|
|---|
| 309 | {
|
|---|
| 310 | // アラインメントの固定値が指定されていた場合はそれを取得
|
|---|
| 311 | alignment = this->GetFixedAlignment();
|
|---|
| 312 | }
|
|---|
| 313 | }
|
|---|
| 314 | else
|
|---|
| 315 | {
|
|---|
| 316 | // それ以外
|
|---|
| 317 |
|
|---|
| 318 | if( this->HasSuperClass() )
|
|---|
| 319 | {
|
|---|
| 320 | // 基底クラスのサイズを追加
|
|---|
| 321 | resultSize += this->GetSuperClass().GetSize();
|
|---|
| 322 |
|
|---|
| 323 | // 基底クラスのアラインメントを取得
|
|---|
| 324 | alignment = this->GetSuperClass().GetAlignment();
|
|---|
| 325 | }
|
|---|
| 326 | else
|
|---|
| 327 | {
|
|---|
| 328 | // 基底クラスが存在しないとき
|
|---|
| 329 |
|
|---|
| 330 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
|---|
| 331 | resultSize += IsExistVirtualFunctions() ? PTR_SIZE*2 : 0;
|
|---|
| 332 | }
|
|---|
| 333 | }
|
|---|
| 334 |
|
|---|
| 335 | BOOST_FOREACH( Member *pMember, dynamicMembers )
|
|---|
| 336 | {
|
|---|
| 337 | // メンバサイズ
|
|---|
| 338 | int tempMemberSize = pMember->GetType().GetSize();
|
|---|
| 339 |
|
|---|
| 340 | // 一時アラインメントを算出
|
|---|
| 341 | int tempAlignment = tempMemberSize;
|
|---|
| 342 | if( pMember->GetType().IsStruct() )
|
|---|
| 343 | {
|
|---|
| 344 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
|---|
| 345 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
|---|
| 346 | }
|
|---|
| 347 |
|
|---|
| 348 | // アラインメントを考慮してパディングを追加
|
|---|
| 349 | if( GetFixedAlignment() && alignment < tempAlignment )
|
|---|
| 350 | {
|
|---|
| 351 | if( resultSize % alignment )
|
|---|
| 352 | {
|
|---|
| 353 | resultSize += alignment - ( resultSize % alignment );
|
|---|
| 354 | }
|
|---|
| 355 | }
|
|---|
| 356 | else
|
|---|
| 357 | {
|
|---|
| 358 | if( alignment < tempAlignment )
|
|---|
| 359 | {
|
|---|
| 360 | // 最大アラインメントを更新
|
|---|
| 361 | alignment = tempAlignment;
|
|---|
| 362 | }
|
|---|
| 363 |
|
|---|
| 364 | if( tempMemberSize == 0 )
|
|---|
| 365 | {
|
|---|
| 366 | if( !pMember->GetType().IsStruct() )
|
|---|
| 367 | {
|
|---|
| 368 | throw;
|
|---|
| 369 | }
|
|---|
| 370 |
|
|---|
| 371 | //メンバを持たない構造体
|
|---|
| 372 | //※何もしない(オフセットの計算をしない)
|
|---|
| 373 | }
|
|---|
| 374 | else{
|
|---|
| 375 | if( resultSize % tempAlignment )
|
|---|
| 376 | {
|
|---|
| 377 | resultSize += tempAlignment - ( resultSize % tempAlignment );
|
|---|
| 378 | }
|
|---|
| 379 | }
|
|---|
| 380 | }
|
|---|
| 381 |
|
|---|
| 382 | // メンバサイズを加算(配列を考慮)
|
|---|
| 383 | resultSize += tempMemberSize * Variable::GetSubScriptCounts( pMember->GetSubscripts() );
|
|---|
| 384 | }
|
|---|
| 385 |
|
|---|
| 386 | if( alignment )
|
|---|
| 387 | {
|
|---|
| 388 | // 末尾アラインメントを考慮してパディングを追加
|
|---|
| 389 | if( resultSize % alignment )
|
|---|
| 390 | {
|
|---|
| 391 | resultSize += alignment - ( resultSize % alignment );
|
|---|
| 392 | }
|
|---|
| 393 | }
|
|---|
| 394 |
|
|---|
| 395 | return resultSize;
|
|---|
| 396 | }
|
|---|
| 397 |
|
|---|
| 398 | //メンバのオフセットを取得
|
|---|
| 399 | int CClass::GetMemberOffset( const char *memberName ) const
|
|---|
| 400 | {
|
|---|
| 401 | int resultSize = 0;
|
|---|
| 402 |
|
|---|
| 403 | int alignment = 1;
|
|---|
| 404 | if( this->IsStructure() )
|
|---|
| 405 | {
|
|---|
| 406 | // 構造体のとき
|
|---|
| 407 |
|
|---|
| 408 | if( this->GetFixedAlignment() )
|
|---|
| 409 | {
|
|---|
| 410 | // アラインメントの固定値が指定されていた場合はそれを取得
|
|---|
| 411 | alignment = this->GetFixedAlignment();
|
|---|
| 412 | }
|
|---|
| 413 | }
|
|---|
| 414 | else
|
|---|
| 415 | {
|
|---|
| 416 | // それ以外
|
|---|
| 417 |
|
|---|
| 418 | if( this->HasSuperClass() )
|
|---|
| 419 | {
|
|---|
| 420 | if( this->GetSuperClass().HasDynamicMember( memberName ) )
|
|---|
| 421 | {
|
|---|
| 422 | // 基底クラスのメンバを取得
|
|---|
| 423 | return this->GetSuperClass().GetMemberOffset( memberName );
|
|---|
| 424 | }
|
|---|
| 425 |
|
|---|
| 426 | // 基底クラスのサイズを追加
|
|---|
| 427 | resultSize += this->GetSuperClass().GetSize();
|
|---|
| 428 |
|
|---|
| 429 | // 基底クラスのアラインメントを取得
|
|---|
| 430 | alignment = this->GetSuperClass().GetAlignment();
|
|---|
| 431 | }
|
|---|
| 432 | else
|
|---|
| 433 | {
|
|---|
| 434 | // 基底クラスが存在しないとき
|
|---|
| 435 |
|
|---|
| 436 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
|---|
| 437 | resultSize += IsExistVirtualFunctions() ? PTR_SIZE*2 : 0;
|
|---|
| 438 | }
|
|---|
| 439 | }
|
|---|
| 440 |
|
|---|
| 441 | BOOST_FOREACH( Member *pMember, dynamicMembers )
|
|---|
| 442 | {
|
|---|
| 443 | // メンバサイズ
|
|---|
| 444 | int tempMemberSize = pMember->GetType().GetSize();
|
|---|
| 445 |
|
|---|
| 446 | // 一時アラインメントを算出
|
|---|
| 447 | int tempAlignment = tempMemberSize;
|
|---|
| 448 | if( pMember->GetType().IsStruct() )
|
|---|
| 449 | {
|
|---|
| 450 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
|---|
| 451 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
|---|
| 452 | }
|
|---|
| 453 |
|
|---|
| 454 | // アラインメントを考慮してパディングを追加
|
|---|
| 455 | if( GetFixedAlignment() && alignment < tempAlignment )
|
|---|
| 456 | {
|
|---|
| 457 | if( resultSize % alignment )
|
|---|
| 458 | {
|
|---|
| 459 | resultSize += alignment - ( resultSize % alignment );
|
|---|
| 460 | }
|
|---|
| 461 | }
|
|---|
| 462 | else
|
|---|
| 463 | {
|
|---|
| 464 | if( alignment < tempAlignment )
|
|---|
| 465 | {
|
|---|
| 466 | // 最大アラインメントを更新
|
|---|
| 467 | alignment = tempAlignment;
|
|---|
| 468 | }
|
|---|
| 469 |
|
|---|
| 470 | if( tempMemberSize == 0 )
|
|---|
| 471 | {
|
|---|
| 472 | if( !pMember->GetType().IsStruct() )
|
|---|
| 473 | {
|
|---|
| 474 | throw;
|
|---|
| 475 | }
|
|---|
| 476 |
|
|---|
| 477 | //メンバを持たない構造体
|
|---|
| 478 | //※何もしない(オフセットの計算をしない)
|
|---|
| 479 | }
|
|---|
| 480 | else{
|
|---|
| 481 | if( resultSize % tempAlignment )
|
|---|
| 482 | {
|
|---|
| 483 | resultSize += tempAlignment - ( resultSize % tempAlignment );
|
|---|
| 484 | }
|
|---|
| 485 | }
|
|---|
| 486 | }
|
|---|
| 487 |
|
|---|
| 488 | if(memberName){
|
|---|
| 489 | //メンバ指定がある場合は、オフセットを返す
|
|---|
| 490 | if( pMember->GetName() == memberName )
|
|---|
| 491 | {
|
|---|
| 492 | return resultSize;
|
|---|
| 493 | }
|
|---|
| 494 | }
|
|---|
| 495 |
|
|---|
| 496 | // メンバサイズを加算(配列を考慮)
|
|---|
| 497 | resultSize += tempMemberSize * Variable::GetSubScriptCounts( pMember->GetSubscripts() );
|
|---|
| 498 | }
|
|---|
| 499 |
|
|---|
| 500 | if( alignment )
|
|---|
| 501 | {
|
|---|
| 502 | // 末尾アラインメントを考慮してパディングを追加
|
|---|
| 503 | if( resultSize % alignment )
|
|---|
| 504 | {
|
|---|
| 505 | resultSize += alignment - ( resultSize % alignment );
|
|---|
| 506 | }
|
|---|
| 507 | }
|
|---|
| 508 |
|
|---|
| 509 | return resultSize;
|
|---|
| 510 | }
|
|---|
| 511 | int CClass::GetAlignment() const
|
|---|
| 512 | {
|
|---|
| 513 | int alignment = 1;
|
|---|
| 514 | if( this->IsStructure() )
|
|---|
| 515 | {
|
|---|
| 516 | // 構造体のとき
|
|---|
| 517 |
|
|---|
| 518 | if( this->GetFixedAlignment() )
|
|---|
| 519 | {
|
|---|
| 520 | // アラインメントの固定値が指定されていた場合はそれを取得
|
|---|
| 521 | return this->GetFixedAlignment();
|
|---|
| 522 | }
|
|---|
| 523 | }
|
|---|
| 524 | else
|
|---|
| 525 | {
|
|---|
| 526 | // それ以外
|
|---|
| 527 |
|
|---|
| 528 | if( this->HasSuperClass() )
|
|---|
| 529 | {
|
|---|
| 530 | // 基底クラスのアラインメントを取得
|
|---|
| 531 | alignment = this->GetSuperClass().GetAlignment();
|
|---|
| 532 | }
|
|---|
| 533 | else
|
|---|
| 534 | {
|
|---|
| 535 | // 基底クラスが存在しないとき
|
|---|
| 536 |
|
|---|
| 537 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
|---|
| 538 | alignment = PTR_SIZE;
|
|---|
| 539 | }
|
|---|
| 540 | }
|
|---|
| 541 |
|
|---|
| 542 | BOOST_FOREACH( Member *pMember, dynamicMembers )
|
|---|
| 543 | {
|
|---|
| 544 | int tempAlignment = pMember->GetType().GetSize();
|
|---|
| 545 | if( pMember->GetType().IsStruct() )
|
|---|
| 546 | {
|
|---|
| 547 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
|---|
| 548 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
|---|
| 549 | }
|
|---|
| 550 |
|
|---|
| 551 | if( alignment < tempAlignment )
|
|---|
| 552 | {
|
|---|
| 553 | // 最大アラインメントを更新
|
|---|
| 554 | alignment = tempAlignment;
|
|---|
| 555 | }
|
|---|
| 556 | }
|
|---|
| 557 |
|
|---|
| 558 | return alignment;
|
|---|
| 559 | }
|
|---|
| 560 |
|
|---|
| 561 | void CClass::GetVtblMasterListIndexAndVtblIndex( const UserProc *pUserProc, int &vtblMasterListIndex, int &vtblIndex ) const
|
|---|
| 562 | {
|
|---|
| 563 | vtblMasterListIndex = 0;
|
|---|
| 564 |
|
|---|
| 565 | vtblIndex = 0;
|
|---|
| 566 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
|---|
| 567 | if( &pMethod->GetUserProc() == pUserProc )
|
|---|
| 568 | {
|
|---|
| 569 | return;
|
|---|
| 570 | }
|
|---|
| 571 |
|
|---|
| 572 | if( pMethod->IsVirtual() )
|
|---|
| 573 | {
|
|---|
| 574 | vtblIndex++;
|
|---|
| 575 | }
|
|---|
| 576 | }
|
|---|
| 577 |
|
|---|
| 578 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
|---|
| 579 | {
|
|---|
| 580 | vtblMasterListIndex++;
|
|---|
| 581 |
|
|---|
| 582 | vtblIndex = 0;
|
|---|
| 583 | BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
|
|---|
| 584 | if( &pMethod->GetUserProc() == pUserProc )
|
|---|
| 585 | {
|
|---|
| 586 | return;
|
|---|
| 587 | }
|
|---|
| 588 |
|
|---|
| 589 | if( pMethod->IsVirtual() )
|
|---|
| 590 | {
|
|---|
| 591 | vtblIndex++;
|
|---|
| 592 | }
|
|---|
| 593 | }
|
|---|
| 594 | }
|
|---|
| 595 |
|
|---|
| 596 | throw;
|
|---|
| 597 | }
|
|---|
| 598 | int CClass::GetVtblMasterListIndex( const CClass *pClass ) const
|
|---|
| 599 | {
|
|---|
| 600 | int result = 0;
|
|---|
| 601 |
|
|---|
| 602 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
|---|
| 603 | {
|
|---|
| 604 | result++;
|
|---|
| 605 |
|
|---|
| 606 | if( &pInterface->GetClass() == pClass )
|
|---|
| 607 | {
|
|---|
| 608 | return result;
|
|---|
| 609 | }
|
|---|
| 610 | }
|
|---|
| 611 |
|
|---|
| 612 | throw;
|
|---|
| 613 | }
|
|---|
| 614 | long CClass::GetVtblMasterListOffset() const
|
|---|
| 615 | {
|
|---|
| 616 | if( vtblMasterListOffset == -1 )
|
|---|
| 617 | {
|
|---|
| 618 | throw;
|
|---|
| 619 | }
|
|---|
| 620 |
|
|---|
| 621 | return vtblMasterListOffset;
|
|---|
| 622 | }
|
|---|
| 623 | bool CClass::IsAbstract() const
|
|---|
| 624 | {
|
|---|
| 625 | // 未実装(abstract)の仮想関数を持つ場合はtrueを返す
|
|---|
| 626 |
|
|---|
| 627 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
|---|
| 628 | if(pMethod->IsVirtual()){
|
|---|
| 629 | if(pMethod->IsAbstract()){
|
|---|
| 630 | return true;
|
|---|
| 631 | }
|
|---|
| 632 | }
|
|---|
| 633 | }
|
|---|
| 634 |
|
|---|
| 635 | // インターフェイスのvtbl
|
|---|
| 636 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
|---|
| 637 | {
|
|---|
| 638 | BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
|
|---|
| 639 | if(pMethod->IsVirtual()){
|
|---|
| 640 | if(pMethod->IsAbstract()){
|
|---|
| 641 | return true;
|
|---|
| 642 | }
|
|---|
| 643 | }
|
|---|
| 644 | }
|
|---|
| 645 | }
|
|---|
| 646 |
|
|---|
| 647 | return false;
|
|---|
| 648 | }
|
|---|
| 649 |
|
|---|
| 650 | const CClass *Classes::FindEx( const NamespaceScopes &namespaceScopes, const std::string &name ) const
|
|---|
| 651 | {
|
|---|
| 652 | if( namespaceScopes.size() == 0 && name == "Object" )
|
|---|
| 653 | {
|
|---|
| 654 | return GetObjectClassPtr();
|
|---|
| 655 | }
|
|---|
| 656 | else if( namespaceScopes.size() == 0 && name == "String" )
|
|---|
| 657 | {
|
|---|
| 658 | return GetStringClassPtr();
|
|---|
| 659 | }
|
|---|
| 660 |
|
|---|
| 661 | std::vector<const CClass *> classes;
|
|---|
| 662 | const CClass *pClass = GetHashArrayElement( name.c_str() );
|
|---|
| 663 | while( pClass )
|
|---|
| 664 | {
|
|---|
| 665 | if( pClass->IsEqualSymbol( namespaceScopes, name ) ){
|
|---|
| 666 | //名前空間とクラス名が一致した
|
|---|
| 667 | classes.push_back( pClass );
|
|---|
| 668 | }
|
|---|
| 669 | pClass = pClass->GetChainNext();
|
|---|
| 670 | }
|
|---|
| 671 | if( classes.size() > 0 )
|
|---|
| 672 | {
|
|---|
| 673 | // 複数の名前空間の中に同一のクラス名が存在する場合があるので、アクセス可能で尚且つ階層が一番深いものをチョイスする
|
|---|
| 674 | pClass = classes.front();
|
|---|
| 675 |
|
|---|
| 676 | BOOST_FOREACH( const CClass *pTempClass, classes )
|
|---|
| 677 | {
|
|---|
| 678 | if( pClass->GetNamespaceScopes().size() < pTempClass->GetNamespaceScopes().size() )
|
|---|
| 679 | {
|
|---|
| 680 | pClass = pTempClass;
|
|---|
| 681 | }
|
|---|
| 682 | }
|
|---|
| 683 |
|
|---|
| 684 | return pClass;
|
|---|
| 685 | }
|
|---|
| 686 |
|
|---|
| 687 | return NULL;
|
|---|
| 688 | }
|
|---|
| 689 | const CClass *Classes::FindEx( const std::string &fullName ) const
|
|---|
| 690 | {
|
|---|
| 691 | char AreaName[VN_SIZE] = ""; //オブジェクト変数
|
|---|
| 692 | char NestName[VN_SIZE] = ""; //入れ子メンバ
|
|---|
| 693 | bool isNest = SplitMemberName( fullName.c_str(), AreaName, NestName );
|
|---|
| 694 |
|
|---|
| 695 | return FindEx( NamespaceScopes( AreaName ), NestName );
|
|---|
| 696 | }
|
|---|
| 697 |
|
|---|
| 698 | const CClass *Classes::GetStringClassPtr() const
|
|---|
| 699 | {
|
|---|
| 700 | if( !pStringClass ){
|
|---|
| 701 | // キャッシュしておく
|
|---|
| 702 | pStringClass = this->FindEx( NamespaceScopes( "System" ), "String" );
|
|---|
| 703 |
|
|---|
| 704 | if( !pStringClass )
|
|---|
| 705 | {
|
|---|
| 706 | compiler.errorMessenger.Output(400, "System.String", cp);
|
|---|
| 707 | static CClass dummy;
|
|---|
| 708 | return &dummy;
|
|---|
| 709 | }
|
|---|
| 710 | return pStringClass;
|
|---|
| 711 | }
|
|---|
| 712 | return pStringClass;
|
|---|
| 713 | }
|
|---|
| 714 | const CClass *Classes::GetObjectClassPtr() const
|
|---|
| 715 | {
|
|---|
| 716 | if( !pObjectClass ){
|
|---|
| 717 | // キャッシュしておく
|
|---|
| 718 | pObjectClass = this->FindEx( NamespaceScopes( "System" ), "Object" );
|
|---|
| 719 |
|
|---|
| 720 | if( !pObjectClass )
|
|---|
| 721 | {
|
|---|
| 722 | compiler.errorMessenger.Output(400, "System.Object", cp);
|
|---|
| 723 | static CClass dummy;
|
|---|
| 724 | return &dummy;
|
|---|
| 725 | }
|
|---|
| 726 | return pObjectClass;
|
|---|
| 727 | }
|
|---|
| 728 | return pObjectClass;
|
|---|
| 729 | }
|
|---|
| 730 | const CClass *Classes::GetInterfaceInfoClassPtr() const
|
|---|
| 731 | {
|
|---|
| 732 | if( !pInterfaceInfo ){
|
|---|
| 733 | // キャッシュしておく
|
|---|
| 734 | pInterfaceInfo = this->FindEx( "ActiveBasic.Core.InterfaceInfo" );
|
|---|
| 735 |
|
|---|
| 736 | if( !pInterfaceInfo )
|
|---|
| 737 | {
|
|---|
| 738 | compiler.errorMessenger.Output(400, "ActiveBasic.Core.InterfaceInfo", cp);
|
|---|
| 739 | static CClass dummy;
|
|---|
| 740 | return &dummy;
|
|---|
| 741 | }
|
|---|
| 742 | return pInterfaceInfo;
|
|---|
| 743 | }
|
|---|
| 744 | return pInterfaceInfo;
|
|---|
| 745 | }
|
|---|
| 746 |
|
|---|
| 747 | std::string CClass::GetStaticDefiningStringAsMemberNames() const
|
|---|
| 748 | {
|
|---|
| 749 | std::string result;
|
|---|
| 750 |
|
|---|
| 751 | BOOST_FOREACH( const Member *pMember, dynamicMembers )
|
|---|
| 752 | {
|
|---|
| 753 | if( result.size() )
|
|---|
| 754 | {
|
|---|
| 755 | result += ",";
|
|---|
| 756 | }
|
|---|
| 757 |
|
|---|
| 758 | result += "\"" + pMember->GetName() + "\"";
|
|---|
| 759 | }
|
|---|
| 760 |
|
|---|
| 761 | return result;
|
|---|
| 762 | }
|
|---|
| 763 | std::string CClass::GetStaticDefiningStringAsMemberTypeInfoNames() const
|
|---|
| 764 | {
|
|---|
| 765 | std::string result;
|
|---|
| 766 |
|
|---|
| 767 | BOOST_FOREACH( const Member *pMember, dynamicMembers )
|
|---|
| 768 | {
|
|---|
| 769 | if( result.size() )
|
|---|
| 770 | {
|
|---|
| 771 | result += ",";
|
|---|
| 772 | }
|
|---|
| 773 |
|
|---|
| 774 | result += "\"" + compiler.TypeToString( pMember->GetType() ) + "\"";
|
|---|
| 775 | }
|
|---|
| 776 |
|
|---|
| 777 | return result;
|
|---|
| 778 | }
|
|---|
| 779 | std::string CClass::GetStaticDefiningStringAsMemberOffsets() const
|
|---|
| 780 | {
|
|---|
| 781 | std::string result;
|
|---|
| 782 |
|
|---|
| 783 | BOOST_FOREACH( const Member *pMember, dynamicMembers )
|
|---|
| 784 | {
|
|---|
| 785 | if( result.size() )
|
|---|
| 786 | {
|
|---|
| 787 | result += ",";
|
|---|
| 788 | }
|
|---|
| 789 |
|
|---|
| 790 | int offset = this->GetMemberOffset( pMember->GetName().c_str() );
|
|---|
| 791 |
|
|---|
| 792 | char temporary[255];
|
|---|
| 793 | itoa( offset, temporary, 16 );
|
|---|
| 794 |
|
|---|
| 795 | result += (std::string)"&H" + temporary;
|
|---|
| 796 | }
|
|---|
| 797 |
|
|---|
| 798 | return result;
|
|---|
| 799 | }
|
|---|
| 800 |
|
|---|
| 801 | void CClass::GetReferenceOffsetsInitializeBuffer( std::string &referenceOffsetsBuffer, int &numOfReference, int baseOffset ) const
|
|---|
| 802 | {
|
|---|
| 803 | const CClass &thisClass = *this;
|
|---|
| 804 | BOOST_FOREACH( const Member *pMember, thisClass.GetDynamicMembers() )
|
|---|
| 805 | {
|
|---|
| 806 | if( pMember->GetType().IsObject() || pMember->GetType().IsPointer() )
|
|---|
| 807 | {
|
|---|
| 808 | if( referenceOffsetsBuffer.size() )
|
|---|
| 809 | {
|
|---|
| 810 | referenceOffsetsBuffer += ",";
|
|---|
| 811 | }
|
|---|
| 812 |
|
|---|
| 813 | char temp[255];
|
|---|
| 814 | sprintf( temp, "%d", baseOffset + thisClass.GetMemberOffset( pMember->GetName().c_str() ) );
|
|---|
| 815 | referenceOffsetsBuffer += temp;
|
|---|
| 816 |
|
|---|
| 817 | numOfReference++;
|
|---|
| 818 | }
|
|---|
| 819 | if( pMember->GetType().IsStruct() && !pMember->GetType().IsPointer() )
|
|---|
| 820 | {
|
|---|
| 821 | // 構造体の実体をメンバに持つとき
|
|---|
| 822 | int baseOffset = thisClass.GetMemberOffset( pMember->GetName().c_str() );
|
|---|
| 823 |
|
|---|
| 824 | // 構造体メンバでGCによるチェックが必要な参照位置を追加
|
|---|
| 825 | pMember->GetType().GetClass().GetReferenceOffsetsInitializeBuffer( referenceOffsetsBuffer, numOfReference, baseOffset );
|
|---|
| 826 | }
|
|---|
| 827 | }
|
|---|
| 828 | }
|
|---|