[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[184] | 3 | #include <jenga/include/smoothie/Smoothie.h>
|
---|
| 4 | #include <jenga/include/smoothie/SmoothieException.h>
|
---|
| 5 |
|
---|
[266] | 6 | #include <Source.h>
|
---|
[206] | 7 | #include <Class.h>
|
---|
[184] | 8 | #include <Compiler.h>
|
---|
[195] | 9 | #include <NamespaceSupporter.h>
|
---|
[184] | 10 |
|
---|
| 11 | #include "../common.h"
|
---|
| 12 | #ifdef _AMD64_
|
---|
| 13 | #include "../../BasicCompiler64/opcode.h"
|
---|
| 14 | #else
|
---|
| 15 | #include "../../BasicCompiler32/opcode.h"
|
---|
| 16 | #endif
|
---|
| 17 |
|
---|
| 18 |
|
---|
[376] | 19 | Interface::Interface( const CClass *pInterfaceClass, const Types &actualTypeParameters )
|
---|
[344] | 20 | : DynamicMethodsPrototype()
|
---|
| 21 | , pInterfaceClass( pInterfaceClass )
|
---|
[343] | 22 | , vtblOffset( -1 )
|
---|
[376] | 23 | , actualTypeParameters( actualTypeParameters )
|
---|
[343] | 24 | {
|
---|
| 25 | //メソッドをコピー
|
---|
| 26 | BOOST_FOREACH( const CMethod *pBaseMethod, pInterfaceClass->GetDynamicMethods() )
|
---|
| 27 | {
|
---|
| 28 | CMethod *pMethod = new DynamicMethod( *pBaseMethod );
|
---|
| 29 |
|
---|
| 30 | // アクセシビリティ
|
---|
| 31 | if(pBaseMethod->GetAccessibility() == Prototype::Private){
|
---|
| 32 | pMethod->SetAccessibility( Prototype::None );
|
---|
| 33 | }
|
---|
| 34 | else{
|
---|
| 35 | pMethod->SetAccessibility( pBaseMethod->GetAccessibility() );
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | //pobj_Inherits
|
---|
| 39 | // ※継承元のClassIndexをセット(入れ子継承を考慮する)
|
---|
| 40 | if(pBaseMethod->GetInheritsClassPtr()==0){
|
---|
| 41 | pMethod->SetInheritsClassPtr( pInterfaceClass );
|
---|
| 42 | }
|
---|
| 43 | else{
|
---|
| 44 | pMethod->SetInheritsClassPtr( pBaseMethod->GetInheritsClassPtr() );
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[344] | 47 | AddDynamicMethods( pMethod );
|
---|
[343] | 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[378] | 51 | std::string Interface::GetFullNameWithActualGenericTypeParameters() const
|
---|
| 52 | {
|
---|
| 53 | std::string interfaceName = this->GetClass().GetFullName();
|
---|
| 54 | if( actualTypeParameters.size() )
|
---|
| 55 | {
|
---|
| 56 | std::string actualGenericTypesName;
|
---|
| 57 | BOOST_FOREACH( const Type &typeParameter, actualTypeParameters )
|
---|
| 58 | {
|
---|
| 59 | if( actualGenericTypesName.size() )
|
---|
| 60 | {
|
---|
| 61 | actualGenericTypesName += ",";
|
---|
| 62 | }
|
---|
| 63 | actualGenericTypesName += typeParameter.ToString();
|
---|
| 64 | }
|
---|
[343] | 65 |
|
---|
[378] | 66 | interfaceName += "<" + actualGenericTypesName + ">";
|
---|
| 67 | }
|
---|
| 68 | return interfaceName;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[206] | 71 | bool CClass::IsClass() const
|
---|
[193] | 72 | {
|
---|
[206] | 73 | return classType == CClass::Class;
|
---|
| 74 | }
|
---|
| 75 | bool CClass::IsInterface() const
|
---|
| 76 | {
|
---|
| 77 | return classType == CClass::Interface;
|
---|
| 78 | }
|
---|
[370] | 79 | bool CClass::IsComInterface() const
|
---|
| 80 | {
|
---|
| 81 | return classType == CClass::ComInterface;
|
---|
| 82 | }
|
---|
[206] | 83 | bool CClass::IsEnum() const
|
---|
| 84 | {
|
---|
| 85 | return classType == CClass::Enum;
|
---|
| 86 | }
|
---|
| 87 | bool CClass::IsDelegate() const
|
---|
| 88 | {
|
---|
| 89 | return classType == CClass::Delegate;
|
---|
| 90 | }
|
---|
| 91 | bool CClass::IsStructure() const
|
---|
| 92 | {
|
---|
| 93 | return classType == CClass::Structure;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 |
|
---|
| 97 | // コンストラクタのコンパイルを開始
|
---|
| 98 | void CClass::NotifyStartConstructorCompile() const
|
---|
| 99 | {
|
---|
| 100 | isCompilingConstructor = true;
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | //コンストラクタのコンパイルを終了
|
---|
| 104 | void CClass::NotifyFinishConstructorCompile() const
|
---|
| 105 | {
|
---|
| 106 | isCompilingConstructor = false;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | //コンストラクタをコンパイル中かどうかを判別
|
---|
| 110 | bool CClass::IsCompilingConstructor() const
|
---|
| 111 | {
|
---|
| 112 | return isCompilingConstructor;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | //デストラクタのコンパイルを開始
|
---|
| 116 | void CClass::NotifyStartDestructorCompile() const{
|
---|
| 117 | isCompilingDestructor = true;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | //デストラクタのコンパイルを終了
|
---|
| 121 | void CClass::NotifyFinishDestructorCompile() const{
|
---|
| 122 | isCompilingDestructor = false;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | //デストラクタをコンパイル中かどうかを判別
|
---|
| 126 | bool CClass::IsCompilingDestructor() const
|
---|
| 127 | {
|
---|
| 128 | return isCompilingDestructor;
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | //自身の派生クラスかどうかを確認
|
---|
| 132 | bool CClass::IsSubClass( const CClass *pClass ) const
|
---|
| 133 | {
|
---|
| 134 | if( !pClass->HasSuperClass() )
|
---|
| 135 | {
|
---|
[193] | 136 | return false;
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[206] | 139 | const CClass *pTempClass = &pClass->GetSuperClass();
|
---|
| 140 | while( pTempClass ){
|
---|
| 141 | if( this == pTempClass ) return true;
|
---|
| 142 | pTempClass = &pTempClass->GetSuperClass();
|
---|
| 143 | }
|
---|
| 144 | return false;
|
---|
[193] | 145 | }
|
---|
| 146 |
|
---|
[206] | 147 | //自身と等しいまたは派生クラスかどうかを確認
|
---|
| 148 | bool CClass::IsEqualsOrSubClass( const CClass *pClass ) const
|
---|
| 149 | {
|
---|
| 150 | if( IsEquals( pClass ) ) return true;
|
---|
| 151 | return IsSubClass( pClass );
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | // 自身と等しいまたは派生クラス、基底クラスかどうかを確認
|
---|
| 155 | bool CClass::IsEqualsOrSubClassOrSuperClass( const CClass &objClass ) const
|
---|
| 156 | {
|
---|
| 157 | if( IsEquals( &objClass ) ) return true;
|
---|
| 158 | if( IsSubClass( &objClass ) ) return true;
|
---|
| 159 | if( objClass.IsSubClass( this ) ) return true;
|
---|
| 160 | return false;
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | bool CClass::IsInheritsInterface( const CClass *pInterfaceClass ) const
|
---|
| 164 | {
|
---|
[346] | 165 | BOOST_FOREACH( const ::Interface *pInterface, interfaces ){
|
---|
| 166 | if( pInterfaceClass == &pInterface->GetClass() ){
|
---|
[206] | 167 | return true;
|
---|
| 168 | }
|
---|
| 169 | }
|
---|
| 170 | return false;
|
---|
| 171 | }
|
---|
| 172 |
|
---|
| 173 | bool CClass::Inherits( const char *inheritNames, int nowLine ){
|
---|
[184] | 174 | int i = 0;
|
---|
| 175 | bool isInheritsClass = false;
|
---|
| 176 | while( true ){
|
---|
| 177 |
|
---|
| 178 | char temporary[VN_SIZE];
|
---|
| 179 | for( int i2=0;; i++, i2++ ){
|
---|
| 180 | if( inheritNames[i] == '\0' || inheritNames[i] == ',' ){
|
---|
| 181 | temporary[i2] = 0;
|
---|
| 182 | break;
|
---|
| 183 | }
|
---|
| 184 | temporary[i2] = inheritNames[i];
|
---|
| 185 | }
|
---|
| 186 |
|
---|
[299] | 187 | // ジェネリクス構文を分解
|
---|
[297] | 188 | char className[VN_SIZE];
|
---|
[299] | 189 | Jenga::Common::Strings typeParameterStrings;
|
---|
| 190 | SplitGenericClassInstance( temporary, className, typeParameterStrings );
|
---|
[297] | 191 |
|
---|
[299] | 192 | // 型パラメータ文字列から型データを取得
|
---|
[376] | 193 | Types actualTypeParameters;
|
---|
[299] | 194 | BOOST_FOREACH( const std::string &typeParameterStr, typeParameterStrings )
|
---|
| 195 | {
|
---|
| 196 | Type type;
|
---|
| 197 | compiler.StringToType( typeParameterStr, type );
|
---|
| 198 | actualTypeParameters.push_back( type );
|
---|
| 199 | }
|
---|
| 200 |
|
---|
[184] | 201 | //継承元クラスを取得
|
---|
[297] | 202 | const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find(className);
|
---|
[184] | 203 | if( !pInheritsClass ){
|
---|
[297] | 204 | SmoothieException::Throw(106,className,nowLine);
|
---|
[184] | 205 | return false;
|
---|
| 206 | }
|
---|
| 207 |
|
---|
[370] | 208 | if( pInheritsClass->IsClass() ){
|
---|
[184] | 209 | // クラスを継承する
|
---|
| 210 | isInheritsClass = true;
|
---|
| 211 |
|
---|
[299] | 212 | if( !InheritsClass( *pInheritsClass, actualTypeParameters, nowLine ) ){
|
---|
[184] | 213 | return false;
|
---|
| 214 | }
|
---|
| 215 | }
|
---|
| 216 | else{
|
---|
[370] | 217 | SetError(135,pInheritsClass->GetFullName().c_str(),nowLine);
|
---|
[184] | 218 | return false;
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | if( inheritNames[i] == '\0' ){
|
---|
| 222 | break;
|
---|
| 223 | }
|
---|
| 224 | i++;
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | if( !isInheritsClass ){
|
---|
| 228 | // クラスを一つも継承していないとき
|
---|
[299] | 229 | if( !InheritsClass( *compiler.GetObjectModule().meta.GetClasses().GetObjectClassPtr(), Types(), nowLine ) ){
|
---|
[184] | 230 | return false;
|
---|
| 231 | }
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | return true;
|
---|
| 235 | }
|
---|
[376] | 236 | bool CClass::InheritsClass( const CClass &inheritsClass, const Types &actualTypeParameters, int nowLine )
|
---|
| 237 | {
|
---|
[184] | 238 | //ループ継承でないかをチェック
|
---|
[376] | 239 | if( !compiler.GetObjectModule().meta.GetClasses().LoopRefCheck(inheritsClass) )
|
---|
| 240 | {
|
---|
[185] | 241 | SmoothieException::Throw(123,inheritsClass.GetName(),nowLine);
|
---|
[184] | 242 | return false;
|
---|
| 243 | }
|
---|
| 244 |
|
---|
| 245 | if( !inheritsClass.IsReady() ){
|
---|
| 246 | //継承先が読み取られていないとき
|
---|
[376] | 247 | compiler.GetObjectModule().meta.GetClasses().LookaheadClass(inheritsClass.GetName().c_str());
|
---|
[184] | 248 | }
|
---|
| 249 |
|
---|
| 250 | //メソッドをコピー
|
---|
[342] | 251 | BOOST_FOREACH( const CMethod *pBaseMethod, inheritsClass.GetDynamicMethods() ){
|
---|
[184] | 252 | CMethod *pMethod = new DynamicMethod( *pBaseMethod );
|
---|
| 253 |
|
---|
| 254 | // アクセシビリティ
|
---|
| 255 | if(pBaseMethod->GetAccessibility() == Prototype::Private){
|
---|
| 256 | pMethod->SetAccessibility( Prototype::None );
|
---|
| 257 | }
|
---|
| 258 | else{
|
---|
| 259 | pMethod->SetAccessibility( pBaseMethod->GetAccessibility() );
|
---|
| 260 | }
|
---|
| 261 |
|
---|
| 262 | //pobj_Inherits
|
---|
| 263 | // ※継承元のClassIndexをセット(入れ子継承を考慮する)
|
---|
| 264 | if(pBaseMethod->GetInheritsClassPtr()==0){
|
---|
| 265 | pMethod->SetInheritsClassPtr( &inheritsClass );
|
---|
| 266 | }
|
---|
| 267 | else{
|
---|
| 268 | pMethod->SetInheritsClassPtr( pBaseMethod->GetInheritsClassPtr() );
|
---|
| 269 | }
|
---|
| 270 |
|
---|
[342] | 271 | GetDynamicMethods().push_back( pMethod );
|
---|
[184] | 272 | }
|
---|
| 273 |
|
---|
| 274 | //仮想関数の数
|
---|
| 275 | AddVtblNum( inheritsClass.GetVtblNum() );
|
---|
| 276 |
|
---|
| 277 | //継承先のクラスをメンバとして保持する
|
---|
[204] | 278 | SetSuperClass( &inheritsClass );
|
---|
[299] | 279 | SetSuperClassActualTypeParameters( actualTypeParameters );
|
---|
[184] | 280 |
|
---|
[351] | 281 | // インターフェイスを引き継ぐ
|
---|
| 282 | BOOST_FOREACH( ::Interface *pInterface, inheritsClass.GetInterfaces() )
|
---|
| 283 | {
|
---|
| 284 | interfaces.push_back( new ::Interface( *pInterface ) );
|
---|
| 285 | }
|
---|
| 286 |
|
---|
[370] | 287 | if( this->IsInterface() && inheritsClass.IsComInterface() )
|
---|
| 288 | {
|
---|
| 289 | // COMインターフェイスを継承した場合はCOMインターフェイスにする
|
---|
| 290 | this->SetClassType( CClass::ComInterface );
|
---|
[184] | 291 | }
|
---|
| 292 |
|
---|
| 293 | return true;
|
---|
| 294 | }
|
---|
[340] | 295 |
|
---|
[376] | 296 | bool CClass::Implements( const CClass &interfaceClass, const Types &actualTypeParameters, int nowLine )
|
---|
[342] | 297 | {
|
---|
[370] | 298 | if( !interfaceClass.IsInterface() && !interfaceClass.IsComInterface() )
|
---|
[342] | 299 | {
|
---|
| 300 | // インターフェイスではないとき
|
---|
| 301 | SetError(138,interfaceClass.GetName().c_str(),nowLine );
|
---|
| 302 | return false;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
| 305 | if( !interfaceClass.IsReady() ){
|
---|
| 306 | // インターフェイスが未解析のとき
|
---|
[376] | 307 | compiler.GetObjectModule().meta.GetClasses().LookaheadClass( interfaceClass.GetName().c_str() );
|
---|
[342] | 308 | }
|
---|
| 309 |
|
---|
[376] | 310 | ::Interface *pDestInterface = new ::Interface( &interfaceClass, actualTypeParameters );
|
---|
[342] | 311 |
|
---|
[351] | 312 | interfaces.push_back( pDestInterface );
|
---|
| 313 |
|
---|
| 314 |
|
---|
| 315 | /////////////////////////////////////////////////////////////////
|
---|
[352] | 316 | // 基底クラスのメソッドからインターフェイスメソッドを再実装する
|
---|
[351] | 317 | /////////////////////////////////////////////////////////////////
|
---|
| 318 | BOOST_FOREACH( CMethod *pMethod, GetDynamicMethods() )
|
---|
| 319 | {
|
---|
[382] | 320 | CMethod *pMethodForOverride = pDestInterface->GetDynamicMethods().FindForOverride( pDestInterface->GetActualTypeParameters(), &pMethod->GetUserProc() );
|
---|
[351] | 321 | if( pMethodForOverride )
|
---|
| 322 | {
|
---|
| 323 | pMethodForOverride->Override( &pMethod->GetUserProc(), pMethod->GetAccessibility(), false );
|
---|
[352] | 324 |
|
---|
| 325 | // 実装元になるメソッドは呼び出し不可にしておく(オーバーロードの解決から除外する)
|
---|
| 326 | pMethod->SetNotUseMark( true );
|
---|
[351] | 327 | }
|
---|
| 328 | }
|
---|
| 329 |
|
---|
| 330 |
|
---|
| 331 | /////////////////////////////////////////////////////////////////
|
---|
[350] | 332 | // キャストメソッドを追加(内部コードは自動生成すること)
|
---|
[351] | 333 | /////////////////////////////////////////////////////////////////
|
---|
[370] | 334 | if( interfaceClass.IsInterface() )
|
---|
[350] | 335 | {
|
---|
| 336 | // Function Operator() As ITest
|
---|
| 337 |
|
---|
| 338 | char temporary[1024];
|
---|
| 339 | sprintf(temporary,"%c%c%c%c()%c%c%s",
|
---|
| 340 | 1, ESC_FUNCTION,
|
---|
| 341 | 1, ESC_OPERATOR,
|
---|
| 342 | 1, ESC_AS,
|
---|
[378] | 343 | pDestInterface->GetFullNameWithActualGenericTypeParameters().c_str()
|
---|
[350] | 344 | );
|
---|
| 345 |
|
---|
| 346 | this->AddMethod(this,
|
---|
| 347 | Prototype::Public,
|
---|
| 348 | 0,
|
---|
| 349 | false, // isConst
|
---|
| 350 | false, // isAbstract
|
---|
| 351 | false, // isVirtual
|
---|
| 352 | false, // isOverride
|
---|
| 353 | true, // isAutoGeneration
|
---|
| 354 | temporary,
|
---|
| 355 | -1
|
---|
| 356 | );
|
---|
| 357 | }
|
---|
| 358 |
|
---|
[351] | 359 |
|
---|
[342] | 360 | return true;
|
---|
| 361 | }
|
---|
[340] | 362 | bool CClass::Implements( const char *interfaceNames, int nowLine )
|
---|
| 363 | {
|
---|
| 364 | Jenga::Common::Strings paramStrs;
|
---|
| 365 | SplitParameter( interfaceNames, paramStrs );
|
---|
[342] | 366 |
|
---|
| 367 | BOOST_FOREACH( const std::string ¶mStr, paramStrs )
|
---|
| 368 | {
|
---|
[375] | 369 | char className[VN_SIZE];
|
---|
[376] | 370 | Jenga::Common::Strings typeParameterStrings;
|
---|
| 371 | SplitGenericClassInstance( paramStr.c_str(), className, typeParameterStrings );
|
---|
[375] | 372 |
|
---|
[376] | 373 | Types actualTypeParameters;
|
---|
| 374 | BOOST_FOREACH( const std::string &typeParameterStr, typeParameterStrings )
|
---|
| 375 | {
|
---|
| 376 | Type type;
|
---|
| 377 | compiler.StringToType( typeParameterStr, type );
|
---|
| 378 | actualTypeParameters.push_back( type );
|
---|
| 379 | }
|
---|
| 380 |
|
---|
[342] | 381 | //継承元クラスを取得
|
---|
[375] | 382 | const CClass *pInterfaceClass = compiler.GetObjectModule().meta.GetClasses().Find( className );
|
---|
[342] | 383 | if( !pInterfaceClass ){
|
---|
| 384 | SetError(106,paramStr.c_str(),nowLine);
|
---|
| 385 | continue;
|
---|
| 386 | }
|
---|
[340] | 387 |
|
---|
[342] | 388 | // インターフェイスを継承する
|
---|
[376] | 389 | Implements( *pInterfaceClass, actualTypeParameters, nowLine );
|
---|
[342] | 390 | }
|
---|
| 391 |
|
---|
[340] | 392 | return true;
|
---|
| 393 | }
|
---|
| 394 |
|
---|
[206] | 395 | CMember *CClass::CreateMember( Prototype::Accessibility accessibility, bool isConst, bool isRef, char *buffer, int nowLine )
|
---|
[184] | 396 | {
|
---|
| 397 | extern int cp;
|
---|
| 398 |
|
---|
| 399 | //構文を解析
|
---|
| 400 | char VarName[VN_SIZE];
|
---|
| 401 | char initBuffer[VN_SIZE];
|
---|
| 402 | char lpszConstructParameter[VN_SIZE];
|
---|
[206] | 403 | Subscripts subscripts;
|
---|
[184] | 404 | Type type;
|
---|
[206] | 405 | GetDimentionFormat(buffer,VarName,subscripts,type,initBuffer,lpszConstructParameter);
|
---|
[184] | 406 |
|
---|
| 407 | //重複チェック
|
---|
| 408 | if(this->DupliCheckAll(VarName)){
|
---|
| 409 | SetError(15,VarName,cp);
|
---|
| 410 | }
|
---|
| 411 |
|
---|
[206] | 412 | CMember *pMember = new CMember( accessibility, VarName, type, isConst, subscripts, initBuffer, lpszConstructParameter );
|
---|
[184] | 413 | pMember->source_code_address = nowLine;
|
---|
| 414 | return pMember;
|
---|
| 415 | }
|
---|
[206] | 416 | void CClass::AddMember( Prototype::Accessibility accessibility, bool isConst, bool isRef, char *buffer, int nowLine ){
|
---|
[184] | 417 | dynamicMembers.push_back(
|
---|
| 418 | CreateMember( accessibility, isConst, isRef, buffer, nowLine )
|
---|
| 419 | );
|
---|
| 420 | }
|
---|
[206] | 421 | void CClass::AddStaticMember( Prototype::Accessibility accessibility, bool isConst, bool isRef, char *buffer, int nowLine ){
|
---|
[184] | 422 | staticMembers.push_back(
|
---|
| 423 | CreateMember( accessibility, isConst, isRef, buffer, nowLine )
|
---|
| 424 | );
|
---|
| 425 | }
|
---|
| 426 |
|
---|
[206] | 427 | void CClass::AddMethod(CClass *pobj_c, Prototype::Accessibility accessibility, BOOL bStatic, bool isConst, bool isAbstract,
|
---|
[350] | 428 | bool isVirtual, bool isOverride, bool isAutoGeneration, char *buffer, int nowLine){
|
---|
[184] | 429 | int i,i2;
|
---|
| 430 | char temporary[VN_SIZE];
|
---|
| 431 |
|
---|
| 432 | i=2;
|
---|
| 433 | for(i2=0;;i++,i2++){
|
---|
| 434 | if(buffer[i]=='('||buffer[i]=='\0'){
|
---|
| 435 | temporary[i2]=0;
|
---|
| 436 | break;
|
---|
| 437 | }
|
---|
| 438 | temporary[i2]=buffer[i];
|
---|
| 439 | }
|
---|
| 440 |
|
---|
| 441 |
|
---|
| 442 | //関数ハッシュへ登録
|
---|
[353] | 443 | char interfaceName[VN_SIZE] = "";
|
---|
| 444 | UserProc *pUserProc = compiler.GetObjectModule().meta.GetUserProcs().AddUserProc( NamespaceScopes(), NamespaceScopesCollection(), buffer,nowLine,isVirtual,pobj_c, (bStatic!=0), interfaceName );
|
---|
[184] | 445 | if(!pUserProc) return;
|
---|
| 446 |
|
---|
[350] | 447 | if( isAutoGeneration )
|
---|
| 448 | {
|
---|
| 449 | // コード自動生成
|
---|
| 450 | pUserProc->ThisIsAutoGenerationProc();
|
---|
| 451 | }
|
---|
[184] | 452 |
|
---|
[350] | 453 |
|
---|
[184] | 454 | ////////////////////////////////////////////////////////////
|
---|
| 455 | // コンストラクタ、デストラクタの場合の処理
|
---|
| 456 | ////////////////////////////////////////////////////////////
|
---|
| 457 | BOOL fConstructor=0,bDestructor=0;
|
---|
| 458 |
|
---|
| 459 | if(lstrcmp(temporary,pobj_c->GetName().c_str())==0){
|
---|
| 460 | //コンストラクタの場合
|
---|
| 461 |
|
---|
| 462 | //標準コンストラクタ(引数なし)
|
---|
| 463 | if(pUserProc->Params().size()==0) fConstructor=1;
|
---|
| 464 |
|
---|
| 465 | //強制的にConst修飾子をつける
|
---|
| 466 | isConst = true;
|
---|
| 467 | }
|
---|
| 468 | else if(temporary[0]=='~'){
|
---|
| 469 | //デストラクタの場合はその名前が正しいかチェックを行う
|
---|
| 470 | if(lstrcmp(temporary+1,pobj_c->GetName().c_str())!=0)
|
---|
| 471 | SetError(117,NULL,nowLine);
|
---|
| 472 | else
|
---|
| 473 | bDestructor=1;
|
---|
| 474 | }
|
---|
| 475 | if(fConstructor||bDestructor){
|
---|
| 476 | // コンストラクタ、デストラクタのアクセシビリティをチェック
|
---|
| 477 |
|
---|
| 478 | //強制的にConst修飾子をつける
|
---|
| 479 | isConst = true;
|
---|
| 480 | }
|
---|
| 481 |
|
---|
| 482 | if( fConstructor == 1 )
|
---|
[342] | 483 | pobj_c->SetConstructorMemberSubIndex( (int)pobj_c->GetDynamicMethods().size() );
|
---|
[184] | 484 | else if( bDestructor )
|
---|
[342] | 485 | pobj_c->SetDestructorMemberSubIndex( (int)pobj_c->GetDynamicMethods().size() );
|
---|
[184] | 486 |
|
---|
| 487 |
|
---|
| 488 |
|
---|
| 489 | //////////////////
|
---|
| 490 | // 重複チェック
|
---|
| 491 | //////////////////
|
---|
| 492 |
|
---|
| 493 | if(pobj_c->DupliCheckMember(temporary)){
|
---|
| 494 | SetError(15,temporary,nowLine);
|
---|
| 495 | return;
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 | //メソッド
|
---|
[351] | 499 | BOOST_FOREACH( const CMethod *pMethod, pobj_c->GetDynamicMethods() )
|
---|
| 500 | {
|
---|
[184] | 501 | //基底クラスと重複する場合はオーバーライドを行う
|
---|
| 502 | if( pMethod->GetInheritsClassPtr() ) continue;
|
---|
| 503 |
|
---|
[382] | 504 | if( pMethod->GetUserProc().IsEqualForOverride( pobj_c->GetSuperClassActualTypeParameters(), pUserProc ) )
|
---|
[351] | 505 | {
|
---|
| 506 | //関数名、パラメータ、戻り値が合致したとき
|
---|
| 507 | SetError(15,pUserProc->GetName().c_str(),nowLine);
|
---|
| 508 | return;
|
---|
[184] | 509 | }
|
---|
| 510 | }
|
---|
| 511 |
|
---|
| 512 | //仮想関数の場合
|
---|
| 513 | if( isAbstract ) pUserProc->CompleteCompile();
|
---|
| 514 |
|
---|
[346] | 515 | // メソッドのオーバーライド
|
---|
[382] | 516 | CMethod *pMethodForOverride = pobj_c->GetDynamicMethods().FindForOverride( pobj_c->GetSuperClassActualTypeParameters(), pUserProc );
|
---|
[351] | 517 | if( pMethodForOverride )
|
---|
[346] | 518 | {
|
---|
[351] | 519 | pMethodForOverride->Override( pUserProc, accessibility, isOverride );
|
---|
| 520 | pUserProc->SetMethod( pMethodForOverride );
|
---|
[346] | 521 | return;
|
---|
| 522 | }
|
---|
| 523 | else
|
---|
| 524 | {
|
---|
| 525 | // インターフェイス メソッドのオーバーライド
|
---|
| 526 | BOOST_FOREACH( ::Interface *pInterface, pobj_c->GetInterfaces() )
|
---|
| 527 | {
|
---|
[353] | 528 | if( interfaceName[0] )
|
---|
| 529 | {
|
---|
| 530 | if( pInterface->GetClass().GetName() != interfaceName )
|
---|
| 531 | {
|
---|
| 532 | // 指定されたインターフェイス名と整合しないとき
|
---|
| 533 | continue;
|
---|
| 534 | }
|
---|
| 535 | }
|
---|
| 536 |
|
---|
[378] | 537 | if( !pInterface->GetClass().IsReady() ){
|
---|
| 538 | // インターフェイスが未解析のとき
|
---|
| 539 | compiler.GetObjectModule().meta.GetClasses().LookaheadClass( pInterface->GetClass().GetName().c_str() );
|
---|
| 540 | }
|
---|
| 541 |
|
---|
[382] | 542 | CMethod *pMethodForOverride = pInterface->GetDynamicMethods().FindForOverride( pInterface->GetActualTypeParameters(), pUserProc );
|
---|
[351] | 543 | if( pMethodForOverride )
|
---|
[305] | 544 | {
|
---|
[351] | 545 | pMethodForOverride->Override( pUserProc, accessibility, isOverride );
|
---|
| 546 | pUserProc->SetMethod( pMethodForOverride );
|
---|
[305] | 547 | return;
|
---|
[184] | 548 | }
|
---|
| 549 | }
|
---|
| 550 | }
|
---|
| 551 |
|
---|
[353] | 552 | if( interfaceName[0] )
|
---|
| 553 | {
|
---|
| 554 | SetError(139,interfaceName,nowLine);
|
---|
| 555 | }
|
---|
| 556 |
|
---|
[184] | 557 | if( isVirtual ){
|
---|
| 558 | pobj_c->AddVtblNum( 1 );
|
---|
| 559 | }
|
---|
| 560 |
|
---|
| 561 | if( isOverride ){
|
---|
| 562 | SetError(12,"Override",nowLine);
|
---|
| 563 | }
|
---|
| 564 |
|
---|
| 565 | if(bStatic){
|
---|
| 566 | pobj_c->GetStaticMethods().AddStatic( pUserProc, accessibility );
|
---|
| 567 | }
|
---|
| 568 | else{
|
---|
[342] | 569 | pobj_c->GetDynamicMethods().Add(pUserProc, accessibility, isConst, isAbstract, isVirtual);
|
---|
[184] | 570 | }
|
---|
| 571 | }
|
---|
| 572 |
|
---|
[409] | 573 | bool CClass::DupliCheckAll(const char *name) const
|
---|
| 574 | {
|
---|
[206] | 575 | //重複チェック
|
---|
| 576 |
|
---|
| 577 | //メンバ
|
---|
| 578 | if(DupliCheckMember(name)) return 1;
|
---|
| 579 |
|
---|
| 580 | //メソッド
|
---|
[342] | 581 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
---|
[206] | 582 | if( lstrcmp( name, pMethod->GetUserProc().GetName().c_str() ) == 0 ){
|
---|
| 583 | return 1;
|
---|
| 584 | }
|
---|
| 585 | }
|
---|
| 586 |
|
---|
| 587 | return 0;
|
---|
| 588 | }
|
---|
[409] | 589 | bool CClass::DupliCheckMember(const char *name) const
|
---|
| 590 | {
|
---|
[206] | 591 | //重複チェック
|
---|
| 592 |
|
---|
[409] | 593 | if( this->HasSuperClass() )
|
---|
| 594 | {
|
---|
| 595 | if( this->GetSuperClass().DupliCheckMember( name ) )
|
---|
| 596 | {
|
---|
| 597 | // 基底クラスで重複が発見された
|
---|
| 598 | return true;
|
---|
| 599 | }
|
---|
| 600 | }
|
---|
| 601 |
|
---|
[206] | 602 | // 動的メンバ
|
---|
[409] | 603 | BOOST_FOREACH( CMember *pMember, dynamicMembers )
|
---|
| 604 | {
|
---|
| 605 | if( GetName() == pMember->GetName() )
|
---|
| 606 | {
|
---|
| 607 | return true;
|
---|
[206] | 608 | }
|
---|
| 609 | }
|
---|
| 610 |
|
---|
| 611 | // 静的メンバ
|
---|
| 612 | BOOST_FOREACH( CMember *pMember, staticMembers ){
|
---|
| 613 | if( GetName() == pMember->GetName() ){
|
---|
[409] | 614 | return true;
|
---|
[206] | 615 | }
|
---|
| 616 | }
|
---|
| 617 |
|
---|
[409] | 618 | return false;
|
---|
[206] | 619 | }
|
---|
| 620 |
|
---|
[409] | 621 | const CMember *CClass::FindDynamicMember( const char *memberName ) const
|
---|
| 622 | {
|
---|
| 623 | if( this->HasSuperClass() )
|
---|
| 624 | {
|
---|
| 625 | // 基底クラスで検索
|
---|
| 626 | const CMember *result = this->GetSuperClass().FindDynamicMember( memberName );
|
---|
| 627 | if( result )
|
---|
| 628 | {
|
---|
| 629 | return result;
|
---|
| 630 | }
|
---|
| 631 | }
|
---|
| 632 |
|
---|
| 633 | BOOST_FOREACH( CMember *pMember, GetDynamicMembers() )
|
---|
| 634 | {
|
---|
| 635 | if( pMember->GetName() == memberName )
|
---|
| 636 | {
|
---|
| 637 | return pMember;
|
---|
| 638 | }
|
---|
| 639 | }
|
---|
| 640 | return NULL;
|
---|
| 641 | }
|
---|
| 642 |
|
---|
[350] | 643 | void CClass::EnumDynamicMethodsOrInterfaceMethods( const char *methodName, std::vector<const UserProc *> &subs ) const
|
---|
[347] | 644 | {
|
---|
| 645 | // 動的メソッド
|
---|
| 646 | GetDynamicMethods().Enum( methodName, subs );
|
---|
| 647 |
|
---|
| 648 | // インターフェイス メソッド
|
---|
| 649 | BOOST_FOREACH( ::Interface *pInterface, GetInterfaces() )
|
---|
| 650 | {
|
---|
| 651 | pInterface->GetDynamicMethods().Enum( methodName, subs );
|
---|
| 652 | }
|
---|
| 653 | }
|
---|
[350] | 654 | const CMethod *CClass::GetDynamicMethodOrInterfaceMethod( const UserProc *pUserProc ) const
|
---|
[347] | 655 | {
|
---|
| 656 | // 動的メソッド
|
---|
| 657 | const CMethod *result = GetDynamicMethods().GetMethodPtr( pUserProc );
|
---|
| 658 |
|
---|
| 659 | if( !result )
|
---|
| 660 | {
|
---|
| 661 | // インターフェイス メソッド
|
---|
| 662 | BOOST_FOREACH( ::Interface *pInterface, GetInterfaces() )
|
---|
| 663 | {
|
---|
| 664 | result = pInterface->GetDynamicMethods().GetMethodPtr( pUserProc );
|
---|
[350] | 665 | if( result )
|
---|
| 666 | {
|
---|
| 667 | return result;
|
---|
| 668 | }
|
---|
[347] | 669 | }
|
---|
| 670 | }
|
---|
| 671 |
|
---|
| 672 | return result;
|
---|
| 673 | }
|
---|
| 674 |
|
---|
[325] | 675 | const ::Delegate &CClass::GetDelegate() const
|
---|
| 676 | {
|
---|
| 677 | const ::Delegate *dg = compiler.GetObjectModule().meta.GetDelegates().GetHashArrayElement( GetName().c_str() );
|
---|
| 678 | while( dg )
|
---|
| 679 | {
|
---|
| 680 | if( dg->IsEqualSymbol( GetNamespaceScopes(), GetName() ) ){
|
---|
| 681 | //名前空間とクラス名が一致した
|
---|
| 682 | return *dg;
|
---|
| 683 | }
|
---|
| 684 | dg = dg->GetChainNext();
|
---|
| 685 | }
|
---|
| 686 |
|
---|
| 687 | Jenga::Throw( "CClass::GetDelegateメソッドに失敗" );
|
---|
| 688 | static ::Delegate dummy;
|
---|
| 689 | return dummy;
|
---|
| 690 | }
|
---|
| 691 |
|
---|
[206] | 692 | //サイズを取得
|
---|
| 693 | int CClass::GetSize() const
|
---|
[184] | 694 | {
|
---|
[409] | 695 | int resultSize = 0;
|
---|
| 696 |
|
---|
| 697 | int alignment = 1;
|
---|
| 698 | if( this->IsStructure() )
|
---|
| 699 | {
|
---|
| 700 | // 構造体のとき
|
---|
| 701 |
|
---|
| 702 | if( this->GetFixedAlignment() )
|
---|
| 703 | {
|
---|
| 704 | // アラインメントの固定値が指定されていた場合はそれを取得
|
---|
| 705 | alignment = this->GetFixedAlignment();
|
---|
| 706 | }
|
---|
| 707 | }
|
---|
| 708 | else
|
---|
| 709 | {
|
---|
| 710 | // それ以外
|
---|
| 711 |
|
---|
| 712 | if( this->HasSuperClass() )
|
---|
| 713 | {
|
---|
| 714 | // 基底クラスのサイズを追加
|
---|
| 715 | resultSize += this->GetSuperClass().GetSize();
|
---|
| 716 |
|
---|
| 717 | // 基底クラスのアラインメントを取得
|
---|
| 718 | alignment = this->GetSuperClass().GetAlignment();
|
---|
| 719 | }
|
---|
| 720 | else
|
---|
| 721 | {
|
---|
| 722 | // 基底クラスが存在しないとき
|
---|
| 723 |
|
---|
| 724 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
---|
| 725 | resultSize += IsExistVirtualFunctions() ? PTR_SIZE*2 : 0;
|
---|
| 726 | }
|
---|
| 727 | }
|
---|
| 728 |
|
---|
| 729 | BOOST_FOREACH( CMember *pMember, dynamicMembers )
|
---|
| 730 | {
|
---|
| 731 | // メンバサイズ
|
---|
| 732 | int tempMemberSize = pMember->GetType().GetSize();
|
---|
| 733 |
|
---|
| 734 | // 一時アラインメントを算出
|
---|
| 735 | int tempAlignment = tempMemberSize;
|
---|
| 736 | if( pMember->GetType().IsStruct() )
|
---|
| 737 | {
|
---|
| 738 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
---|
| 739 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
---|
| 740 | }
|
---|
| 741 |
|
---|
| 742 | // アラインメントを考慮してパディングを追加
|
---|
| 743 | if( GetFixedAlignment() && alignment < tempAlignment )
|
---|
| 744 | {
|
---|
| 745 | if( resultSize % alignment )
|
---|
| 746 | {
|
---|
| 747 | resultSize += alignment - ( resultSize % alignment );
|
---|
| 748 | }
|
---|
| 749 | }
|
---|
| 750 | else
|
---|
| 751 | {
|
---|
| 752 | if( alignment < tempAlignment )
|
---|
| 753 | {
|
---|
| 754 | // 最大アラインメントを更新
|
---|
| 755 | alignment = tempAlignment;
|
---|
| 756 | }
|
---|
| 757 |
|
---|
| 758 | if( tempMemberSize == 0 )
|
---|
| 759 | {
|
---|
| 760 | if( !pMember->GetType().IsStruct() )
|
---|
| 761 | {
|
---|
| 762 | SetError();
|
---|
| 763 | }
|
---|
| 764 |
|
---|
| 765 | //メンバを持たない構造体
|
---|
| 766 | //※何もしない(オフセットの計算をしない)
|
---|
| 767 | }
|
---|
| 768 | else{
|
---|
| 769 | if( resultSize % tempAlignment )
|
---|
| 770 | {
|
---|
| 771 | resultSize += tempAlignment - ( resultSize % tempAlignment );
|
---|
| 772 | }
|
---|
| 773 | }
|
---|
| 774 | }
|
---|
| 775 |
|
---|
| 776 | // メンバサイズを加算(配列を考慮)
|
---|
| 777 | resultSize += tempMemberSize * Variable::GetSubScriptCounts( pMember->GetSubscripts() );
|
---|
| 778 | }
|
---|
| 779 |
|
---|
| 780 | if( alignment )
|
---|
| 781 | {
|
---|
| 782 | // 末尾アラインメントを考慮してパディングを追加
|
---|
| 783 | if( resultSize % alignment )
|
---|
| 784 | {
|
---|
| 785 | resultSize += alignment - ( resultSize % alignment );
|
---|
| 786 | }
|
---|
| 787 | }
|
---|
| 788 |
|
---|
| 789 | return resultSize;
|
---|
[206] | 790 | }
|
---|
[184] | 791 |
|
---|
[206] | 792 | //メンバのオフセットを取得
|
---|
[409] | 793 | int CClass::GetMemberOffset( const char *memberName ) const
|
---|
[206] | 794 | {
|
---|
[409] | 795 | int resultSize = 0;
|
---|
[206] | 796 |
|
---|
[232] | 797 | int alignment = 1;
|
---|
[409] | 798 | if( this->IsStructure() )
|
---|
[232] | 799 | {
|
---|
[409] | 800 | // 構造体のとき
|
---|
| 801 |
|
---|
| 802 | if( this->GetFixedAlignment() )
|
---|
| 803 | {
|
---|
| 804 | // アラインメントの固定値が指定されていた場合はそれを取得
|
---|
| 805 | alignment = this->GetFixedAlignment();
|
---|
| 806 | }
|
---|
[232] | 807 | }
|
---|
[409] | 808 | else
|
---|
| 809 | {
|
---|
| 810 | // それ以外
|
---|
[206] | 811 |
|
---|
[409] | 812 | if( this->HasSuperClass() )
|
---|
| 813 | {
|
---|
| 814 | if( this->GetSuperClass().HasDynamicMember( memberName ) )
|
---|
| 815 | {
|
---|
| 816 | // 基底クラスのメンバを取得
|
---|
| 817 | return this->GetSuperClass().GetMemberOffset( memberName );
|
---|
| 818 | }
|
---|
[206] | 819 |
|
---|
[409] | 820 | // 基底クラスのサイズを追加
|
---|
| 821 | resultSize += this->GetSuperClass().GetSize();
|
---|
[206] | 822 |
|
---|
[409] | 823 | // 基底クラスのアラインメントを取得
|
---|
| 824 | alignment = this->GetSuperClass().GetAlignment();
|
---|
[206] | 825 | }
|
---|
[409] | 826 | else
|
---|
| 827 | {
|
---|
| 828 | // 基底クラスが存在しないとき
|
---|
| 829 |
|
---|
| 830 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
---|
| 831 | resultSize += IsExistVirtualFunctions() ? PTR_SIZE*2 : 0;
|
---|
[206] | 832 | }
|
---|
[409] | 833 | }
|
---|
[206] | 834 |
|
---|
[409] | 835 | BOOST_FOREACH( CMember *pMember, dynamicMembers )
|
---|
| 836 | {
|
---|
| 837 | // メンバサイズ
|
---|
| 838 | int tempMemberSize = pMember->GetType().GetSize();
|
---|
| 839 |
|
---|
| 840 | // 一時アラインメントを算出
|
---|
| 841 | int tempAlignment = tempMemberSize;
|
---|
| 842 | if( pMember->GetType().IsStruct() )
|
---|
| 843 | {
|
---|
| 844 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
---|
| 845 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
---|
[206] | 846 | }
|
---|
| 847 |
|
---|
[409] | 848 | // アラインメントを考慮してパディングを追加
|
---|
| 849 | if( GetFixedAlignment() && alignment < tempAlignment )
|
---|
| 850 | {
|
---|
| 851 | if( resultSize % alignment )
|
---|
| 852 | {
|
---|
| 853 | resultSize += alignment - ( resultSize % alignment );
|
---|
| 854 | }
|
---|
| 855 | }
|
---|
| 856 | else
|
---|
| 857 | {
|
---|
| 858 | if( alignment < tempAlignment )
|
---|
| 859 | {
|
---|
| 860 | // 最大アラインメントを更新
|
---|
| 861 | alignment = tempAlignment;
|
---|
| 862 | }
|
---|
| 863 |
|
---|
| 864 | if( tempMemberSize == 0 )
|
---|
| 865 | {
|
---|
| 866 | if( !pMember->GetType().IsStruct() )
|
---|
| 867 | {
|
---|
| 868 | SetError();
|
---|
| 869 | }
|
---|
| 870 |
|
---|
| 871 | //メンバを持たない構造体
|
---|
[206] | 872 | //※何もしない(オフセットの計算をしない)
|
---|
| 873 | }
|
---|
| 874 | else{
|
---|
[409] | 875 | if( resultSize % tempAlignment )
|
---|
| 876 | {
|
---|
| 877 | resultSize += tempAlignment - ( resultSize % tempAlignment );
|
---|
| 878 | }
|
---|
[206] | 879 | }
|
---|
| 880 | }
|
---|
| 881 |
|
---|
| 882 | if(memberName){
|
---|
| 883 | //メンバ指定がある場合は、オフセットを返す
|
---|
[409] | 884 | if( pMember->GetName() == memberName )
|
---|
| 885 | {
|
---|
| 886 | return resultSize;
|
---|
[206] | 887 | }
|
---|
| 888 | }
|
---|
| 889 |
|
---|
[409] | 890 | // メンバサイズを加算(配列を考慮)
|
---|
| 891 | resultSize += tempMemberSize * Variable::GetSubScriptCounts( pMember->GetSubscripts() );
|
---|
[206] | 892 | }
|
---|
| 893 |
|
---|
[409] | 894 | if( alignment )
|
---|
| 895 | {
|
---|
| 896 | // 末尾アラインメントを考慮してパディングを追加
|
---|
| 897 | if( resultSize % alignment )
|
---|
| 898 | {
|
---|
| 899 | resultSize += alignment - ( resultSize % alignment );
|
---|
| 900 | }
|
---|
[206] | 901 | }
|
---|
| 902 |
|
---|
[409] | 903 | return resultSize;
|
---|
[206] | 904 | }
|
---|
| 905 | int CClass::GetAlignment() const
|
---|
| 906 | {
|
---|
[409] | 907 | int alignment = 1;
|
---|
| 908 | if( this->IsStructure() )
|
---|
| 909 | {
|
---|
| 910 | // 構造体のとき
|
---|
[206] | 911 |
|
---|
[409] | 912 | if( this->GetFixedAlignment() )
|
---|
| 913 | {
|
---|
| 914 | // アラインメントの固定値が指定されていた場合はそれを取得
|
---|
| 915 | return this->GetFixedAlignment();
|
---|
[206] | 916 | }
|
---|
[409] | 917 | }
|
---|
| 918 | else
|
---|
| 919 | {
|
---|
| 920 | // それ以外
|
---|
| 921 |
|
---|
| 922 | if( this->HasSuperClass() )
|
---|
| 923 | {
|
---|
| 924 | // 基底クラスのアラインメントを取得
|
---|
| 925 | alignment = this->GetSuperClass().GetAlignment();
|
---|
[206] | 926 | }
|
---|
[409] | 927 | else
|
---|
| 928 | {
|
---|
| 929 | // 基底クラスが存在しないとき
|
---|
[206] | 930 |
|
---|
[409] | 931 | // 仮想関数が存在する場合はvtbl及びvtblMasterListへのポインタのサイズを追加
|
---|
| 932 | alignment = PTR_SIZE;
|
---|
| 933 | }
|
---|
[206] | 934 | }
|
---|
| 935 |
|
---|
[409] | 936 | BOOST_FOREACH( CMember *pMember, dynamicMembers )
|
---|
| 937 | {
|
---|
| 938 | int tempAlignment = pMember->GetType().GetSize();
|
---|
| 939 | if( pMember->GetType().IsStruct() )
|
---|
| 940 | {
|
---|
| 941 | // メンバが構造体の場合は、メンバのアラインメントを取得
|
---|
| 942 | tempAlignment = pMember->GetType().GetClass().GetAlignment();
|
---|
| 943 | }
|
---|
[206] | 944 |
|
---|
[409] | 945 | if( alignment < tempAlignment )
|
---|
| 946 | {
|
---|
| 947 | // 最大アラインメントを更新
|
---|
| 948 | alignment = tempAlignment;
|
---|
| 949 | }
|
---|
| 950 | }
|
---|
[206] | 951 |
|
---|
| 952 | return alignment;
|
---|
| 953 | }
|
---|
[342] | 954 |
|
---|
[348] | 955 | void CClass::GetVtblMasterListIndexAndVtblIndex( const UserProc *pUserProc, int &vtblMasterListIndex, int &vtblIndex ) const
|
---|
[342] | 956 | {
|
---|
[348] | 957 | vtblMasterListIndex = 0;
|
---|
| 958 |
|
---|
| 959 | vtblIndex = 0;
|
---|
[342] | 960 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
---|
| 961 | if( &pMethod->GetUserProc() == pUserProc )
|
---|
| 962 | {
|
---|
[348] | 963 | return;
|
---|
[342] | 964 | }
|
---|
[348] | 965 |
|
---|
| 966 | if( pMethod->IsVirtual() )
|
---|
| 967 | {
|
---|
| 968 | vtblIndex++;
|
---|
| 969 | }
|
---|
[342] | 970 | }
|
---|
| 971 |
|
---|
[346] | 972 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
---|
[342] | 973 | {
|
---|
[348] | 974 | vtblMasterListIndex++;
|
---|
[342] | 975 |
|
---|
[348] | 976 | vtblIndex = 0;
|
---|
[347] | 977 | BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
|
---|
[342] | 978 | if( &pMethod->GetUserProc() == pUserProc )
|
---|
| 979 | {
|
---|
[348] | 980 | return;
|
---|
[342] | 981 | }
|
---|
[348] | 982 |
|
---|
| 983 | if( pMethod->IsVirtual() )
|
---|
| 984 | {
|
---|
| 985 | vtblIndex++;
|
---|
| 986 | }
|
---|
[342] | 987 | }
|
---|
| 988 | }
|
---|
| 989 |
|
---|
| 990 | SetError();
|
---|
[348] | 991 | return;
|
---|
[342] | 992 | }
|
---|
[350] | 993 | int CClass::GetVtblMasterListIndex( const CClass *pClass ) const
|
---|
| 994 | {
|
---|
| 995 | int result = 0;
|
---|
| 996 |
|
---|
| 997 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
---|
| 998 | {
|
---|
| 999 | result++;
|
---|
| 1000 |
|
---|
| 1001 | if( &pInterface->GetClass() == pClass )
|
---|
| 1002 | {
|
---|
| 1003 | return result;
|
---|
| 1004 | }
|
---|
| 1005 | }
|
---|
| 1006 |
|
---|
| 1007 | SetError();
|
---|
| 1008 | return 0;
|
---|
| 1009 | }
|
---|
[370] | 1010 | long CClass::GetComVtblOffset() const
|
---|
| 1011 | {
|
---|
| 1012 | return comVtblOffset;
|
---|
| 1013 | }
|
---|
[345] | 1014 | long CClass::GetVtblMasterListOffset() const
|
---|
[206] | 1015 | {
|
---|
[184] | 1016 | //既に存在する場合はそれを返す
|
---|
[342] | 1017 | if( vtblMasterListOffset == -1 )
|
---|
| 1018 | {
|
---|
| 1019 | SetError();
|
---|
| 1020 | }
|
---|
[184] | 1021 |
|
---|
[342] | 1022 | return vtblMasterListOffset;
|
---|
| 1023 | }
|
---|
[345] | 1024 | void CClass::GenerateVTableMasterList( const std::vector<long> &vtableMasterList, long &offset )
|
---|
[282] | 1025 | {
|
---|
[342] | 1026 | offset = compiler.GetObjectModule().dataTable.AddBinary(
|
---|
| 1027 | (void *)&vtableMasterList[0],
|
---|
[345] | 1028 | static_cast<int>(vtableMasterList.size()*sizeof(LONG_PTR))
|
---|
[342] | 1029 | );
|
---|
| 1030 | }
|
---|
| 1031 | void CClass::GenerateFullVTables()
|
---|
| 1032 | {
|
---|
[282] | 1033 | if( IsAbstract() )
|
---|
| 1034 | {
|
---|
| 1035 | // 抽象クラスは無視
|
---|
| 1036 | return;
|
---|
| 1037 | }
|
---|
| 1038 | if( !IsUsing() )
|
---|
| 1039 | {
|
---|
| 1040 | // 使われていないクラスは無視
|
---|
| 1041 | return;
|
---|
| 1042 | }
|
---|
| 1043 |
|
---|
[342] | 1044 | // vtblマスターリストの元データに不要なデータが含まれていたらエラー
|
---|
| 1045 | if( vtblMasterList.size() )
|
---|
| 1046 | {
|
---|
| 1047 | SetError();
|
---|
| 1048 | }
|
---|
[282] | 1049 |
|
---|
[342] | 1050 | // 自身のクラスのvtblを生成
|
---|
[347] | 1051 | GetDynamicMethods().GenerateVTablePart( this->vtbl_offset );
|
---|
[342] | 1052 | vtblMasterList.push_back( this->vtbl_offset );
|
---|
[282] | 1053 |
|
---|
[342] | 1054 | // インターフェイスのvtblを生成
|
---|
[346] | 1055 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
---|
[342] | 1056 | {
|
---|
[345] | 1057 | long tempVtblOffset;
|
---|
[347] | 1058 | pInterface->GetDynamicMethods().GenerateVTablePart( tempVtblOffset );
|
---|
[342] | 1059 | vtblMasterList.push_back( tempVtblOffset );
|
---|
[282] | 1060 |
|
---|
[346] | 1061 | pInterface->SetVtblOffset( tempVtblOffset );
|
---|
[370] | 1062 |
|
---|
| 1063 | if( pInterface->GetClass().IsComInterface() )
|
---|
| 1064 | {
|
---|
| 1065 | if( this->comVtblOffset )
|
---|
| 1066 | {
|
---|
| 1067 | SetError();
|
---|
| 1068 | }
|
---|
| 1069 | this->comVtblOffset = tempVtblOffset;
|
---|
| 1070 | }
|
---|
[282] | 1071 | }
|
---|
| 1072 |
|
---|
[342] | 1073 | // vtblマスターリストを生成
|
---|
| 1074 | GenerateVTableMasterList( vtblMasterList, this->vtblMasterListOffset );
|
---|
[282] | 1075 | }
|
---|
[342] | 1076 | void CClass::ActionVtblSchedule( LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection, LONG_PTR MemPos_DataSection )
|
---|
| 1077 | {
|
---|
[282] | 1078 | if( IsAbstract() )
|
---|
| 1079 | {
|
---|
| 1080 | // 抽象クラスは無視
|
---|
| 1081 | return;
|
---|
| 1082 | }
|
---|
| 1083 | if( !IsUsing() )
|
---|
| 1084 | {
|
---|
| 1085 | // 使われていないクラスは無視
|
---|
| 1086 | return;
|
---|
| 1087 | }
|
---|
[184] | 1088 | if(vtbl_offset==-1) return;
|
---|
| 1089 |
|
---|
[342] | 1090 | // 自身のクラスのvtbl
|
---|
| 1091 | {
|
---|
| 1092 | LONG_PTR *pVtbl = (LONG_PTR *)((char *)compiler.GetObjectModule().dataTable.GetPtr() + vtbl_offset);
|
---|
[184] | 1093 |
|
---|
[342] | 1094 | for( int i=0; i<GetVtblNum(); i++ ){
|
---|
| 1095 | const UserProc *pUserProc = (UserProc *)pVtbl[i];
|
---|
| 1096 | if(!pUserProc) continue;
|
---|
[263] | 1097 |
|
---|
[342] | 1098 | if( pUserProc->GetBeginOpAddress() == 0
|
---|
| 1099 | && pUserProc->GetEndOpAddress() == 0 )
|
---|
| 1100 | {
|
---|
| 1101 | Jenga::Throw( "未解決の仮想関数が存在する" );
|
---|
| 1102 | }
|
---|
| 1103 |
|
---|
| 1104 | pVtbl[i] = pUserProc->GetBeginOpAddress() + ImageBase + MemPos_CodeSection;
|
---|
[282] | 1105 | }
|
---|
[342] | 1106 | }
|
---|
[282] | 1107 |
|
---|
[342] | 1108 | // インターフェイスのvtbl
|
---|
[346] | 1109 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
---|
[342] | 1110 | {
|
---|
[347] | 1111 | LONG_PTR *pVtbl = (LONG_PTR *)((char *)compiler.GetObjectModule().dataTable.GetPtr() + pInterface->GetVtblOffset());
|
---|
[342] | 1112 |
|
---|
[346] | 1113 | for( int i=0; i<pInterface->GetClass().GetVtblNum(); i++ ){
|
---|
[342] | 1114 | const UserProc *pUserProc = (UserProc *)pVtbl[i];
|
---|
| 1115 | if(!pUserProc) continue;
|
---|
| 1116 |
|
---|
| 1117 | if( pUserProc->GetBeginOpAddress() == 0
|
---|
| 1118 | && pUserProc->GetEndOpAddress() == 0 )
|
---|
| 1119 | {
|
---|
| 1120 | Jenga::Throw( "未解決の仮想関数が存在する" );
|
---|
| 1121 | }
|
---|
| 1122 |
|
---|
| 1123 | pVtbl[i] = pUserProc->GetBeginOpAddress() + ImageBase + MemPos_CodeSection;
|
---|
| 1124 | }
|
---|
[184] | 1125 | }
|
---|
[342] | 1126 |
|
---|
| 1127 | // vtblマスターリスト
|
---|
| 1128 | LONG_PTR *pVtblMasterList = (LONG_PTR *)((char *)compiler.GetObjectModule().dataTable.GetPtr() + vtblMasterListOffset );
|
---|
| 1129 | for( int i=0; i<static_cast<int>(vtblMasterList.size()); i++ )
|
---|
| 1130 | {
|
---|
| 1131 | pVtblMasterList[i] = vtblMasterList[i] + ImageBase + MemPos_DataSection;
|
---|
| 1132 | }
|
---|
[184] | 1133 | }
|
---|
[206] | 1134 | bool CClass::IsAbstract() const
|
---|
| 1135 | {
|
---|
| 1136 | // 未実装(abstract)の仮想関数を持つ場合はtrueを返す
|
---|
[184] | 1137 |
|
---|
[342] | 1138 | BOOST_FOREACH( const CMethod *pMethod, GetDynamicMethods() ){
|
---|
[206] | 1139 | if(pMethod->IsVirtual()){
|
---|
| 1140 | if(pMethod->IsAbstract()){
|
---|
| 1141 | return true;
|
---|
| 1142 | }
|
---|
| 1143 | }
|
---|
| 1144 | }
|
---|
| 1145 |
|
---|
[351] | 1146 | // インターフェイスのvtbl
|
---|
| 1147 | BOOST_FOREACH( const ::Interface *pInterface, interfaces )
|
---|
| 1148 | {
|
---|
| 1149 | BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() ){
|
---|
| 1150 | if(pMethod->IsVirtual()){
|
---|
| 1151 | if(pMethod->IsAbstract()){
|
---|
| 1152 | return true;
|
---|
| 1153 | }
|
---|
| 1154 | }
|
---|
| 1155 | }
|
---|
| 1156 | }
|
---|
| 1157 |
|
---|
[206] | 1158 | return false;
|
---|
[184] | 1159 | }
|
---|
| 1160 |
|
---|
[206] | 1161 | CClass *Classes::Create( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const char *name){
|
---|
| 1162 | return new CClass(namespaceScopes, importedNamespaces, name);
|
---|
| 1163 | }
|
---|
[369] | 1164 | bool Classes::Insert( CClass *pClass, int nowLine )
|
---|
[206] | 1165 | {
|
---|
| 1166 | /////////////////////////////////
|
---|
| 1167 | // ハッシュデータに追加
|
---|
| 1168 | /////////////////////////////////
|
---|
| 1169 |
|
---|
[270] | 1170 | if( !Put( pClass ) )
|
---|
| 1171 | {
|
---|
[369] | 1172 | SetError(15,pClass->GetName(), nowLine);
|
---|
[270] | 1173 | return false;
|
---|
[206] | 1174 | }
|
---|
| 1175 | return true;
|
---|
| 1176 | }
|
---|
| 1177 | CClass *Classes::Add( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, const char *name,int nowLine){
|
---|
| 1178 | //////////////////////////////////////////////////////////////////////////
|
---|
| 1179 | // クラスを追加
|
---|
| 1180 | // ※名前のみを登録。その他の情報はSetClassメソッドで!
|
---|
| 1181 | //////////////////////////////////////////////////////////////////////////
|
---|
| 1182 |
|
---|
| 1183 | CClass *pClass = Create(namespaceScopes, importedNamespaces, name);
|
---|
| 1184 |
|
---|
[369] | 1185 | if( !Insert( pClass, nowLine ) )
|
---|
[206] | 1186 | {
|
---|
| 1187 | return NULL;
|
---|
| 1188 | }
|
---|
| 1189 |
|
---|
| 1190 | return pClass;
|
---|
| 1191 | }
|
---|
| 1192 |
|
---|
[282] | 1193 | void Classes::GenerateVTables()
|
---|
| 1194 | {
|
---|
| 1195 | Iterator_Reset();
|
---|
| 1196 | while( Iterator_HasNext() )
|
---|
| 1197 | {
|
---|
| 1198 | CClass *pClass = Iterator_GetNext();
|
---|
[342] | 1199 | pClass->GenerateFullVTables();
|
---|
[282] | 1200 | }
|
---|
| 1201 | }
|
---|
| 1202 |
|
---|
[342] | 1203 | void Classes::ActionVtblSchedule( LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection, LONG_PTR MemPos_DataSection ){
|
---|
[270] | 1204 | Iterator_Reset();
|
---|
| 1205 | while( Iterator_HasNext() )
|
---|
| 1206 | {
|
---|
| 1207 | CClass *pClass = Iterator_GetNext();
|
---|
[342] | 1208 | pClass->ActionVtblSchedule( ImageBase, MemPos_CodeSection, MemPos_DataSection);
|
---|
[206] | 1209 | }
|
---|
| 1210 | }
|
---|
| 1211 |
|
---|
| 1212 |
|
---|
| 1213 | void Classes::InitStaticMember(){
|
---|
[184] | 1214 | //静的メンバをグローバル領域に作成
|
---|
| 1215 |
|
---|
| 1216 | //イテレータをリセット
|
---|
| 1217 |
|
---|
| 1218 | extern int cp;
|
---|
| 1219 | int back_cp=cp;
|
---|
| 1220 |
|
---|
[270] | 1221 | this->Iterator_Reset();
|
---|
[184] | 1222 | while(this->Iterator_HasNext()){
|
---|
| 1223 | CClass &objClass = *this->Iterator_GetNext();
|
---|
[272] | 1224 | if( objClass.isTargetObjectModule == false )
|
---|
| 1225 | {
|
---|
| 1226 | // 静的リンクライブラリの場合は飛ばす(既にインスタンスが定義済みであるため)
|
---|
| 1227 | continue;
|
---|
| 1228 | }
|
---|
[184] | 1229 |
|
---|
| 1230 | // 名前空間をセット
|
---|
[199] | 1231 | compiler.GetNamespaceSupporter().GetLivingNamespaceScopes() = objClass.GetNamespaceScopes();
|
---|
[184] | 1232 |
|
---|
[355] | 1233 | DWORD dwFlags = 0;
|
---|
| 1234 | if( objClass.GetName() == "_System_TypeBase" )
|
---|
| 1235 | {
|
---|
| 1236 | // _System_TypeBaseクラスはグローバル、スタティック領域を初期化するためのクラスなのでここでの初期化は除外する
|
---|
| 1237 | dwFlags |= DIMFLAG_NONCALL_CONSTRACTOR;
|
---|
| 1238 | }
|
---|
| 1239 |
|
---|
[406] | 1240 | // コンパイル中クラスとしてセット
|
---|
| 1241 | compiler.pCompilingClass = &objClass;
|
---|
| 1242 |
|
---|
| 1243 | const EnumInfo *pEnumInfo = NULL;
|
---|
| 1244 | if( objClass.IsEnum() )
|
---|
| 1245 | {
|
---|
| 1246 | pEnumInfo = compiler.enumInfoCollection.Find( objClass );
|
---|
| 1247 | }
|
---|
| 1248 |
|
---|
[184] | 1249 | int i=0;
|
---|
[406] | 1250 | BOOST_FOREACH( CMember *member, objClass.GetStaticMembers() )
|
---|
| 1251 | {
|
---|
| 1252 | if( pEnumInfo )
|
---|
| 1253 | {
|
---|
| 1254 | cp = pEnumInfo->GetEnumMember( member->GetName() ).GetSourceIndex();
|
---|
| 1255 | }
|
---|
| 1256 |
|
---|
[184] | 1257 | char temporary[VN_SIZE];
|
---|
| 1258 | sprintf(temporary,"%s.%s",objClass.GetName().c_str(),member->GetName().c_str());
|
---|
| 1259 | dim(
|
---|
| 1260 | temporary,
|
---|
[206] | 1261 | member->GetSubscripts(),
|
---|
[184] | 1262 | member->GetType(),
|
---|
| 1263 | member->GetInitializeExpression().c_str(),
|
---|
| 1264 | member->GetConstructParameter().c_str(),
|
---|
[355] | 1265 | dwFlags);
|
---|
[184] | 1266 |
|
---|
| 1267 | i++;
|
---|
| 1268 | }
|
---|
[406] | 1269 |
|
---|
| 1270 | compiler.pCompilingClass = NULL;
|
---|
[184] | 1271 | }
|
---|
| 1272 |
|
---|
[199] | 1273 | compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().clear();
|
---|
[184] | 1274 |
|
---|
| 1275 | cp=back_cp;
|
---|
| 1276 | }
|
---|
| 1277 |
|
---|
[206] | 1278 | void Classes::Compile_System_InitializeUserTypes(){
|
---|
[184] | 1279 | char temporary[VN_SIZE];
|
---|
| 1280 |
|
---|
| 1281 | ////////////////////////////////////////////////////////////////////
|
---|
| 1282 | // クラス登録
|
---|
| 1283 | ////////////////////////////////////////////////////////////////////
|
---|
| 1284 |
|
---|
| 1285 | // イテレータをリセット
|
---|
| 1286 | Iterator_Reset();
|
---|
| 1287 |
|
---|
| 1288 | while( Iterator_HasNext() ){
|
---|
| 1289 | const CClass &objClass = *Iterator_GetNext();
|
---|
| 1290 |
|
---|
| 1291 | if( !objClass.IsUsing() ){
|
---|
| 1292 | // 未使用のクラスは無視する
|
---|
| 1293 | continue;
|
---|
[417] | 1294 | }
|
---|
[184] | 1295 |
|
---|
[417] | 1296 | std::string referenceOffsetsBuffer;
|
---|
[184] | 1297 | int numOfReference = 0;
|
---|
[417] | 1298 | objClass.GetReferenceOffsetsInitializeBuffer( referenceOffsetsBuffer, numOfReference );
|
---|
[184] | 1299 |
|
---|
| 1300 | sprintf( temporary
|
---|
[355] | 1301 | , "Add(%c%c_System_TypeForClass[strNamespace=\"%s\",name=\"%s\",fullName=\"%s\",referenceOffsets=[%s],numOfReference=%d])"
|
---|
[184] | 1302 | , 1
|
---|
[355] | 1303 | , ESC_SYSTEM_STATIC_NEW
|
---|
| 1304 | , objClass.GetNamespaceScopes().ToString().c_str() // 名前空間
|
---|
| 1305 | , objClass.GetName().c_str() // クラス名
|
---|
| 1306 | , objClass.GetFullName().c_str() // フルネーム
|
---|
[417] | 1307 | , referenceOffsetsBuffer.c_str() // 参照メンバオフセット配列
|
---|
[355] | 1308 | , numOfReference // 参照メンバの個数
|
---|
[184] | 1309 | );
|
---|
| 1310 |
|
---|
| 1311 | // コンパイル
|
---|
| 1312 | ChangeOpcode( temporary );
|
---|
[355] | 1313 |
|
---|
| 1314 | objClass.SetTypeInfoDataTableOffset(
|
---|
| 1315 | compiler.GetObjectModule().dataTable.GetLastMadeConstObjectDataTableOffset()
|
---|
| 1316 | );
|
---|
[184] | 1317 | }
|
---|
[355] | 1318 | }
|
---|
| 1319 | void Classes::Compile_System_InitializeUserTypesForBaseType()
|
---|
| 1320 | {
|
---|
| 1321 | extern int cp;
|
---|
| 1322 | cp = -1;
|
---|
[184] | 1323 | ////////////////////////////////////////////////////////////////////
|
---|
| 1324 | // 基底クラスを登録
|
---|
| 1325 | ////////////////////////////////////////////////////////////////////
|
---|
| 1326 |
|
---|
[387] | 1327 | char temporary[8192];
|
---|
[184] | 1328 | sprintf(temporary, "%c%ctempType=Nothing%c%cTypeBaseImpl"
|
---|
| 1329 | , HIBYTE( COM_DIM )
|
---|
| 1330 | , LOBYTE( COM_DIM )
|
---|
| 1331 | , 1
|
---|
| 1332 | , ESC_AS
|
---|
| 1333 | );
|
---|
| 1334 | ChangeOpcode( temporary );
|
---|
| 1335 |
|
---|
| 1336 | // イテレータをリセット
|
---|
| 1337 | Iterator_Reset();
|
---|
| 1338 |
|
---|
| 1339 | while( Iterator_HasNext() ){
|
---|
| 1340 | const CClass &objClass = *Iterator_GetNext();
|
---|
| 1341 |
|
---|
| 1342 | if( !objClass.IsUsing() ){
|
---|
| 1343 | // 未使用のクラスは無視する
|
---|
| 1344 | continue;
|
---|
| 1345 | }
|
---|
| 1346 |
|
---|
[409] | 1347 | if( objClass.HasSuperClass() || objClass.GetDynamicMembers().size() ){
|
---|
[184] | 1348 | sprintf( temporary
|
---|
[355] | 1349 | , "tempType=Search(\"%s\")"
|
---|
| 1350 | , objClass.GetFullName().c_str()
|
---|
[387] | 1351 | );
|
---|
[184] | 1352 |
|
---|
| 1353 | // コンパイル
|
---|
| 1354 | ChangeOpcode( temporary );
|
---|
| 1355 |
|
---|
[409] | 1356 | if( objClass.HasSuperClass() )
|
---|
| 1357 | {
|
---|
| 1358 | sprintf( temporary
|
---|
| 1359 | , "tempType.SetBaseType(Search(\"%s\"))"
|
---|
| 1360 | , objClass.GetSuperClass().GetFullName().c_str()
|
---|
| 1361 | );
|
---|
[184] | 1362 |
|
---|
[409] | 1363 | // コンパイル
|
---|
| 1364 | ChangeOpcode( temporary );
|
---|
| 1365 | }
|
---|
[184] | 1366 |
|
---|
[409] | 1367 | if( objClass.GetDynamicMembers().size() )
|
---|
| 1368 | {
|
---|
| 1369 | // メンバの型を示すTypeInfoオブジェクトへのDataOffset配列の静的データ定義文字列を取得
|
---|
| 1370 | sprintf(
|
---|
| 1371 | temporary,
|
---|
[412] | 1372 | "tempType.SetMembers([%s],[%s],[%s],%d)",
|
---|
[409] | 1373 | objClass.GetStaticDefiningStringAsMemberNames().c_str(),
|
---|
| 1374 | objClass.GetStaticDefiningStringAsMemberTypeInfoNames().c_str(),
|
---|
[412] | 1375 | objClass.GetStaticDefiningStringAsMemberOffsets().c_str(),
|
---|
[409] | 1376 | objClass.GetDynamicMembers().size()
|
---|
| 1377 | );
|
---|
| 1378 | ChangeOpcode( temporary );
|
---|
| 1379 | }
|
---|
[184] | 1380 | }
|
---|
[387] | 1381 | }
|
---|
[184] | 1382 | }
|
---|
[193] | 1383 |
|
---|
[206] | 1384 | const CClass *Classes::Find( const NamespaceScopes &namespaceScopes, const string &name ) const
|
---|
[193] | 1385 | {
|
---|
| 1386 | if( namespaceScopes.size() == 0 && name == "Object" ){
|
---|
| 1387 | return GetObjectClassPtr();
|
---|
| 1388 | }
|
---|
| 1389 | else if( namespaceScopes.size() == 0 && name == "String" ){
|
---|
| 1390 | return GetStringClassPtr();
|
---|
| 1391 | }
|
---|
| 1392 |
|
---|
[380] | 1393 | std::vector<const CClass *> classes;
|
---|
[270] | 1394 | const CClass *pClass = GetHashArrayElement( name.c_str() );
|
---|
| 1395 | while( pClass )
|
---|
| 1396 | {
|
---|
| 1397 | if( pClass->IsEqualSymbol( namespaceScopes, name ) ){
|
---|
| 1398 | //名前空間とクラス名が一致した
|
---|
[380] | 1399 | classes.push_back( pClass );
|
---|
[193] | 1400 | }
|
---|
[270] | 1401 | pClass = pClass->GetChainNext();
|
---|
[193] | 1402 | }
|
---|
[380] | 1403 | if( classes.size() > 0 )
|
---|
| 1404 | {
|
---|
| 1405 | // 複数の名前空間の中に同一のクラス名が存在する場合があるので、アクセス可能で尚且つ階層が一番深いものをチョイスする
|
---|
| 1406 | pClass = classes.front();
|
---|
[193] | 1407 |
|
---|
[380] | 1408 | BOOST_FOREACH( const CClass *pTempClass, classes )
|
---|
| 1409 | {
|
---|
| 1410 | if( pClass->GetNamespaceScopes().size() < pTempClass->GetNamespaceScopes().size() )
|
---|
| 1411 | {
|
---|
| 1412 | pClass = pTempClass;
|
---|
| 1413 | }
|
---|
| 1414 | }
|
---|
| 1415 |
|
---|
| 1416 | return pClass;
|
---|
| 1417 | }
|
---|
| 1418 |
|
---|
[193] | 1419 | // TypeDefも見る
|
---|
[265] | 1420 | int index = compiler.GetObjectModule().meta.GetTypeDefs().GetIndex( namespaceScopes, name );
|
---|
[193] | 1421 | if( index != -1 ){
|
---|
[265] | 1422 | Type type = compiler.GetObjectModule().meta.GetTypeDefs()[index].GetBaseType();
|
---|
[193] | 1423 | if( type.IsObject() ){
|
---|
| 1424 | return &type.GetClass();
|
---|
| 1425 | }
|
---|
| 1426 | }
|
---|
| 1427 |
|
---|
| 1428 | return NULL;
|
---|
| 1429 | }
|
---|
[206] | 1430 | const CClass *Classes::Find( const string &fullName ) const
|
---|
| 1431 | {
|
---|
| 1432 | char AreaName[VN_SIZE] = ""; //オブジェクト変数
|
---|
| 1433 | char NestName[VN_SIZE] = ""; //入れ子メンバ
|
---|
| 1434 | bool isNest = SplitMemberName( fullName.c_str(), AreaName, NestName );
|
---|
| 1435 |
|
---|
| 1436 | return Find( NamespaceScopes( AreaName ), NestName );
|
---|
| 1437 | }
|
---|
| 1438 | void Classes::StartCompile( const UserProc *pUserProc ){
|
---|
| 1439 | const CClass *pParentClass = pUserProc->GetParentClassPtr();
|
---|
| 1440 | if( pParentClass ){
|
---|
| 1441 | pParentClass->Using();
|
---|
| 1442 |
|
---|
[282] | 1443 | // 仮想関数になるメソッドに使用チェックをつける
|
---|
[342] | 1444 | BOOST_FOREACH( const CMethod *pMethod, pParentClass->GetDynamicMethods() )
|
---|
[282] | 1445 | {
|
---|
| 1446 | if( pMethod->IsVirtual() )
|
---|
| 1447 | {
|
---|
| 1448 | pMethod->GetUserProc().Using();
|
---|
| 1449 | }
|
---|
| 1450 | }
|
---|
| 1451 |
|
---|
[350] | 1452 | pCompilingMethod = pParentClass->GetDynamicMethodOrInterfaceMethod( pUserProc );
|
---|
[206] | 1453 | if( !pCompilingMethod ){
|
---|
| 1454 | pCompilingMethod = pParentClass->GetStaticMethods().GetMethodPtr( pUserProc );
|
---|
| 1455 | if( !pCompilingMethod ){
|
---|
| 1456 | SmoothieException::Throw(300);
|
---|
| 1457 | }
|
---|
| 1458 | }
|
---|
| 1459 | }
|
---|
| 1460 | else{
|
---|
| 1461 | pCompilingMethod = NULL;
|
---|
| 1462 | }
|
---|
| 1463 | }
|
---|
| 1464 |
|
---|
[272] | 1465 | const CClass *Classes::GetStringClassPtr() const
|
---|
[206] | 1466 | {
|
---|
| 1467 | if( !pStringClass ){
|
---|
[272] | 1468 | // キャッシュしておく
|
---|
| 1469 | pStringClass = this->Find( NamespaceScopes( "System" ), "String" );
|
---|
| 1470 |
|
---|
| 1471 | if( !pStringClass )
|
---|
| 1472 | {
|
---|
[351] | 1473 | SetError(400, "System.String", cp);
|
---|
| 1474 | static CClass dummy;
|
---|
| 1475 | return &dummy;
|
---|
[272] | 1476 | }
|
---|
| 1477 | return pStringClass;
|
---|
[206] | 1478 | }
|
---|
| 1479 | return pStringClass;
|
---|
| 1480 | }
|
---|
[272] | 1481 | const CClass *Classes::GetObjectClassPtr() const
|
---|
[206] | 1482 | {
|
---|
| 1483 | if( !pObjectClass ){
|
---|
[272] | 1484 | // キャッシュしておく
|
---|
| 1485 | pObjectClass = this->Find( NamespaceScopes( "System" ), "Object" );
|
---|
| 1486 |
|
---|
| 1487 | if( !pObjectClass )
|
---|
| 1488 | {
|
---|
[351] | 1489 | SetError(400, "System.Object", cp);
|
---|
| 1490 | static CClass dummy;
|
---|
| 1491 | return &dummy;
|
---|
[272] | 1492 | }
|
---|
| 1493 | return pObjectClass;
|
---|
[206] | 1494 | }
|
---|
| 1495 | return pObjectClass;
|
---|
| 1496 | }
|
---|
[349] | 1497 | const CClass *Classes::GetInterfaceInfoClassPtr() const
|
---|
| 1498 | {
|
---|
| 1499 | if( !pInterfaceInfo ){
|
---|
| 1500 | // キャッシュしておく
|
---|
| 1501 | pInterfaceInfo = this->Find( "ActiveBasic.Core.InterfaceInfo" );
|
---|
| 1502 |
|
---|
| 1503 | if( !pInterfaceInfo )
|
---|
| 1504 | {
|
---|
[351] | 1505 | SetError(400, "ActiveBasic.Core.InterfaceInfo", cp);
|
---|
| 1506 | static CClass dummy;
|
---|
| 1507 | return &dummy;
|
---|
[349] | 1508 | }
|
---|
| 1509 | return pInterfaceInfo;
|
---|
| 1510 | }
|
---|
| 1511 | return pInterfaceInfo;
|
---|
| 1512 | }
|
---|
[387] | 1513 |
|
---|
| 1514 | std::string CClass::GetStaticDefiningStringAsMemberNames() const
|
---|
| 1515 | {
|
---|
| 1516 | std::string result;
|
---|
| 1517 |
|
---|
| 1518 | BOOST_FOREACH( const CMember *pMember, dynamicMembers )
|
---|
| 1519 | {
|
---|
| 1520 | if( result.size() )
|
---|
| 1521 | {
|
---|
| 1522 | result += ",";
|
---|
| 1523 | }
|
---|
| 1524 |
|
---|
| 1525 | result += "\"" + pMember->GetName() + "\"";
|
---|
| 1526 | }
|
---|
| 1527 |
|
---|
| 1528 | return result;
|
---|
| 1529 | }
|
---|
| 1530 | std::string CClass::GetStaticDefiningStringAsMemberTypeInfoNames() const
|
---|
| 1531 | {
|
---|
| 1532 | std::string result;
|
---|
| 1533 |
|
---|
| 1534 | BOOST_FOREACH( const CMember *pMember, dynamicMembers )
|
---|
| 1535 | {
|
---|
| 1536 | if( result.size() )
|
---|
| 1537 | {
|
---|
| 1538 | result += ",";
|
---|
| 1539 | }
|
---|
| 1540 |
|
---|
| 1541 | result += "\"" + compiler.TypeToString( pMember->GetType() ) + "\"";
|
---|
| 1542 | }
|
---|
| 1543 |
|
---|
| 1544 | return result;
|
---|
| 1545 | }
|
---|
[412] | 1546 | std::string CClass::GetStaticDefiningStringAsMemberOffsets() const
|
---|
| 1547 | {
|
---|
| 1548 | std::string result;
|
---|
[387] | 1549 |
|
---|
[412] | 1550 | BOOST_FOREACH( const CMember *pMember, dynamicMembers )
|
---|
| 1551 | {
|
---|
| 1552 | if( result.size() )
|
---|
| 1553 | {
|
---|
| 1554 | result += ",";
|
---|
| 1555 | }
|
---|
| 1556 |
|
---|
| 1557 | int offset = this->GetMemberOffset( pMember->GetName().c_str() );
|
---|
| 1558 |
|
---|
| 1559 | char temporary[255];
|
---|
| 1560 | itoa( offset, temporary, 16 );
|
---|
| 1561 |
|
---|
| 1562 | result += (std::string)"&H" + temporary;
|
---|
| 1563 | }
|
---|
| 1564 |
|
---|
| 1565 | return result;
|
---|
| 1566 | }
|
---|
[417] | 1567 |
|
---|
| 1568 | void CClass::GetReferenceOffsetsInitializeBuffer( std::string &referenceOffsetsBuffer, int &numOfReference, int baseOffset ) const
|
---|
| 1569 | {
|
---|
| 1570 | const CClass &thisClass = *this;
|
---|
| 1571 | BOOST_FOREACH( const CMember *pMember, thisClass.GetDynamicMembers() )
|
---|
| 1572 | {
|
---|
| 1573 | if( pMember->GetType().IsObject() || pMember->GetType().IsPointer() )
|
---|
| 1574 | {
|
---|
| 1575 | if( referenceOffsetsBuffer.size() )
|
---|
| 1576 | {
|
---|
| 1577 | referenceOffsetsBuffer += ",";
|
---|
| 1578 | }
|
---|
| 1579 |
|
---|
| 1580 | char temp[255];
|
---|
| 1581 | sprintf( temp, "%d", baseOffset + thisClass.GetMemberOffset( pMember->GetName().c_str() ) );
|
---|
| 1582 | referenceOffsetsBuffer += temp;
|
---|
| 1583 |
|
---|
| 1584 | numOfReference++;
|
---|
| 1585 | }
|
---|
| 1586 | if( pMember->GetType().IsStruct() && !pMember->GetType().IsPointer() )
|
---|
| 1587 | {
|
---|
| 1588 | // 構造体の実体をメンバに持つとき
|
---|
| 1589 | int baseOffset = thisClass.GetMemberOffset( pMember->GetName().c_str() );
|
---|
| 1590 |
|
---|
| 1591 | // 構造体メンバでGCによるチェックが必要な参照位置を追加
|
---|
| 1592 | pMember->GetType().GetClass().GetReferenceOffsetsInitializeBuffer( referenceOffsetsBuffer, numOfReference, baseOffset );
|
---|
| 1593 | }
|
---|
| 1594 | }
|
---|
| 1595 | }
|
---|