| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | using namespace ActiveBasic::Compiler;
|
|---|
| 4 |
|
|---|
| 5 | Compiler compiler;
|
|---|
| 6 |
|
|---|
| 7 | Compiler::Compiler()
|
|---|
| 8 | : isBuildSuccessful( false )
|
|---|
| 9 | , targetModuleType( ActiveBasic::Common::TargetModuleType::Exe )
|
|---|
| 10 | , isDebug( false )
|
|---|
| 11 | , isUnicode( false )
|
|---|
| 12 | , isCore( false )
|
|---|
| 13 | , currentRelationalObjectModuleIndexForSource( 0 )
|
|---|
| 14 | {
|
|---|
| 15 | // 生成先のオブジェクトモジュールを登録
|
|---|
| 16 | ObjectModule *pObjectModule = new ObjectModule();
|
|---|
| 17 | staticLibraries.push_back( pObjectModule );
|
|---|
| 18 | SelectObjectModule( pObjectModule );
|
|---|
| 19 |
|
|---|
| 20 | namespaceSupporter.RegistAllNamespaceScopesCollection( &GetObjectModule().meta.GetNamespaces() );
|
|---|
| 21 |
|
|---|
| 22 | Symbol::RegistNamespaceSupporter( &namespaceSupporter );
|
|---|
| 23 | }
|
|---|
| 24 | Compiler::~Compiler()
|
|---|
| 25 | {
|
|---|
| 26 | BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )
|
|---|
| 27 | {
|
|---|
| 28 | delete pStaticLibrary;
|
|---|
| 29 | }
|
|---|
| 30 | staticLibraries.clear();
|
|---|
| 31 | }
|
|---|
| 32 |
|
|---|
| 33 | void Compiler::PreStaticLink( const ObjectModules &staticLibraries )
|
|---|
| 34 | {
|
|---|
| 35 | BOOST_FOREACH( const ObjectModule *pStaticLibrary, staticLibraries )
|
|---|
| 36 | {
|
|---|
| 37 | // 関連オブジェクトモジュールの名前リスト
|
|---|
| 38 | this->GetObjectModule().relationalObjectModuleNames.push_back( pStaticLibrary->GetName() );
|
|---|
| 39 | }
|
|---|
| 40 | }
|
|---|
| 41 | void Compiler::StaticLink( ObjectModules &staticLibraries )
|
|---|
| 42 | {
|
|---|
| 43 | BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )
|
|---|
| 44 | {
|
|---|
| 45 | if( &this->GetObjectModule() == pStaticLibrary )
|
|---|
| 46 | {
|
|---|
| 47 | // 自分自身の場合はリンクしない
|
|---|
| 48 | continue;
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | // メタ情報
|
|---|
| 52 | this->GetObjectModule().StaticLink( *pStaticLibrary, this->IsSll() );
|
|---|
| 53 | }
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType Compiler::StringToGenericTypeEx( const std::string &typeName, Type &type )
|
|---|
| 57 | {
|
|---|
| 58 | // ジェネリッククラスをインスタンス化した型の場合
|
|---|
| 59 | int i = 0;
|
|---|
| 60 | char className[VN_SIZE];
|
|---|
| 61 | GetIdentifierToken( className, typeName.c_str(), i );
|
|---|
| 62 |
|
|---|
| 63 | // ジェネリクスクラスを取得
|
|---|
| 64 | const CClass *pGenericClass = this->GetObjectModule().meta.FindClassSupportedTypeDef(
|
|---|
| 65 | LexicalAnalyzer::FullNameToSymbol( className )
|
|---|
| 66 | );
|
|---|
| 67 |
|
|---|
| 68 | if( !pGenericClass )
|
|---|
| 69 | {
|
|---|
| 70 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::NotfoundGenericClass;
|
|---|
| 71 | }
|
|---|
| 72 |
|
|---|
| 73 | if( typeName[i] != '<' )
|
|---|
| 74 | {
|
|---|
| 75 | Jenga::Throw( "StringToType内でジェネリクス構文の解析に失敗" );
|
|---|
| 76 | }
|
|---|
| 77 |
|
|---|
| 78 | GenericTypes genericTypes;
|
|---|
| 79 | bool isValueType = false;
|
|---|
| 80 | while( true )
|
|---|
| 81 | {
|
|---|
| 82 | i++;
|
|---|
| 83 |
|
|---|
| 84 | char typeParameterStr[VN_SIZE];
|
|---|
| 85 | GetIdentifierToken( typeParameterStr, typeName.c_str(), i );
|
|---|
| 86 |
|
|---|
| 87 | // 型パラメータの型情報を取得
|
|---|
| 88 | Type typeParameterType;
|
|---|
| 89 | StringToType( typeParameterStr, typeParameterType );
|
|---|
| 90 |
|
|---|
| 91 | genericTypes.push_back( GenericType( "(non support)", typeParameterType ) );
|
|---|
| 92 |
|
|---|
| 93 | if( typeParameterType.IsValueType() )
|
|---|
| 94 | {
|
|---|
| 95 | // 値型の場合
|
|---|
| 96 | isValueType = true;
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | if( typeName[i] != ',' )
|
|---|
| 100 | {
|
|---|
| 101 | break;
|
|---|
| 102 | }
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | // 基本型をセット
|
|---|
| 106 | type.SetBasicType( DEF_OBJECT );
|
|---|
| 107 |
|
|---|
| 108 | if( isValueType )
|
|---|
| 109 | {
|
|---|
| 110 | // 型パラメータに値型が指定された場合
|
|---|
| 111 |
|
|---|
| 112 | // 仮型パラメータを実型パラメータに変換
|
|---|
| 113 | Types actualTypes;
|
|---|
| 114 | BOOST_FOREACH( const GenericType &genericType, genericTypes )
|
|---|
| 115 | {
|
|---|
| 116 | actualTypes.push_back( genericType.GetType() );
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | // テンプレートとしてクラスを展開する
|
|---|
| 120 | const CClass *pExpandedClass = LexicalAnalyzer::TemplateExpand( *const_cast<CClass *>(pGenericClass), actualTypes );
|
|---|
| 121 |
|
|---|
| 122 | if( pExpandedClass )
|
|---|
| 123 | {
|
|---|
| 124 | // 拡張情報をセット
|
|---|
| 125 | type.SetClassPtr( pExpandedClass );
|
|---|
| 126 | }
|
|---|
| 127 | else
|
|---|
| 128 | {
|
|---|
| 129 | // TODO: 消す
|
|---|
| 130 | goto Generic;
|
|---|
| 131 | }
|
|---|
| 132 | }
|
|---|
| 133 | else
|
|---|
| 134 | {
|
|---|
| 135 | Generic:
|
|---|
| 136 | // 型パラメータにクラス型が指定された場合
|
|---|
| 137 |
|
|---|
| 138 | // ジェネリック クラスとして利用する
|
|---|
| 139 |
|
|---|
| 140 | // 拡張情報をセット
|
|---|
| 141 | type.SetClassPtr( pGenericClass );
|
|---|
| 142 | type.SetActualGenericTypes( genericTypes );
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 146 | }
|
|---|
| 147 | ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType Compiler::StringToTypeEx( const std::string &typeName, Type &type, bool isResolveGenerics )
|
|---|
| 148 | {
|
|---|
| 149 | type.SetIndex( -1 );
|
|---|
| 150 |
|
|---|
| 151 |
|
|---|
| 152 | /////////////////////////////////////////////////////////
|
|---|
| 153 | // ☆★☆ ジェネリクスサポート ☆★☆
|
|---|
| 154 |
|
|---|
| 155 | if( strstr( typeName.c_str(), "<" ) )
|
|---|
| 156 | {
|
|---|
| 157 | return StringToGenericTypeEx( typeName, type );
|
|---|
| 158 | }
|
|---|
| 159 |
|
|---|
| 160 | //
|
|---|
| 161 | /////////////////////////////////////////////////////////
|
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 | if( typeName[0] == '*' ){
|
|---|
| 165 | if( typeName.size() >= 3
|
|---|
| 166 | && typeName[1] == 1 && ( typeName[2] == ESC_FUNCTION || typeName[2] == ESC_SUB ) )
|
|---|
| 167 | {
|
|---|
| 168 | // 関数ポインタを追加する
|
|---|
| 169 | {
|
|---|
| 170 | DWORD dwProcType = (DWORD)typeName[2];
|
|---|
| 171 | const std::string ¶mStr = typeName.substr( 3 );
|
|---|
| 172 |
|
|---|
| 173 | Procedure::Kind kind = ( dwProcType == ESC_FUNCTION )
|
|---|
| 174 | ? Procedure::Function
|
|---|
| 175 | : Procedure::Sub;
|
|---|
| 176 |
|
|---|
| 177 | ProcPointer *pProcPointer = new ProcPointer( kind );
|
|---|
| 178 |
|
|---|
| 179 | //buffer[0]は'('となっている
|
|---|
| 180 | extern int cp;
|
|---|
| 181 | ActiveBasic::Compiler::LexicalAnalyzer::SetParamsAndReturnType( pProcPointer, paramStr.c_str(), false, cp );
|
|---|
| 182 |
|
|---|
| 183 | this->GetObjectModule().meta.GetProcPointers().push_back( pProcPointer );
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | //関数ポインタ(*Function)
|
|---|
| 187 | type.SetBasicType( DEF_PTR_PROC );
|
|---|
| 188 | type.SetIndex( this->GetObjectModule().meta.GetProcPointers().size() - 1 );
|
|---|
| 189 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 190 | }
|
|---|
| 191 |
|
|---|
| 192 | const std::string &nextTypeName = typeName.substr( 1 );
|
|---|
| 193 |
|
|---|
| 194 | ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType result = StringToTypeEx( nextTypeName, type, isResolveGenerics );
|
|---|
| 195 | if( result != ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful )
|
|---|
| 196 | {
|
|---|
| 197 | return result;
|
|---|
| 198 | }
|
|---|
| 199 |
|
|---|
| 200 | type.PtrLevelUp();
|
|---|
| 201 |
|
|---|
| 202 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 203 | }
|
|---|
| 204 |
|
|---|
| 205 | {
|
|---|
| 206 | int basicType;
|
|---|
| 207 | if( Type::StringToBasicType( typeName, basicType ) )
|
|---|
| 208 | {
|
|---|
| 209 | // 基本型だったとき
|
|---|
| 210 | type.SetBasicType( basicType );
|
|---|
| 211 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 212 | }
|
|---|
| 213 | }
|
|---|
| 214 |
|
|---|
| 215 | // Object型だったとき
|
|---|
| 216 | if( typeName == "Object" )
|
|---|
| 217 | {
|
|---|
| 218 | type.SetType( DEF_OBJECT, this->GetObjectModule().meta.GetClasses().GetObjectClassPtr() );
|
|---|
| 219 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 220 | }
|
|---|
| 221 |
|
|---|
| 222 | // String型だったとき
|
|---|
| 223 | if( typeName == "String" )
|
|---|
| 224 | {
|
|---|
| 225 | type.SetType( DEF_OBJECT, this->GetObjectModule().meta.GetClasses().GetStringClassPtr() );
|
|---|
| 226 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 227 | }
|
|---|
| 228 |
|
|---|
| 229 |
|
|---|
| 230 | ////////////////////
|
|---|
| 231 | // TypeDefされた型
|
|---|
| 232 | ////////////////////
|
|---|
| 233 | const TypeDef *pTypeDef = this->GetObjectModule().meta.GetTypeDefs().Find( LexicalAnalyzer::FullNameToSymbol( typeName ) );
|
|---|
| 234 | if( pTypeDef )
|
|---|
| 235 | {
|
|---|
| 236 | type = pTypeDef->GetBaseType();
|
|---|
| 237 |
|
|---|
| 238 | if( type.IsObject() )
|
|---|
| 239 | {
|
|---|
| 240 | if( isResolveGenerics && type.GetClass().IsGeneric() && !type.HasActualGenericType() )
|
|---|
| 241 | {
|
|---|
| 242 | // ジェネリッククラスの場合
|
|---|
| 243 | trace( "型解決されていない" );
|
|---|
| 244 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::FailedResolveGenericType;
|
|---|
| 245 | }
|
|---|
| 246 | }
|
|---|
| 247 |
|
|---|
| 248 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 249 | }
|
|---|
| 250 |
|
|---|
| 251 | //クラス
|
|---|
| 252 | const CClass *pobj_c = this->GetObjectModule().meta.FindClassSupportedTypeDef( LexicalAnalyzer::FullNameToSymbol( typeName ) );
|
|---|
| 253 | if(pobj_c)
|
|---|
| 254 | {
|
|---|
| 255 | if( isResolveGenerics && pobj_c->IsGeneric() )
|
|---|
| 256 | {
|
|---|
| 257 | // ジェネリッククラスの場合
|
|---|
| 258 | trace( "型解決されていない" );
|
|---|
| 259 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::FailedResolveGenericType;
|
|---|
| 260 | }
|
|---|
| 261 |
|
|---|
| 262 | if( pobj_c->IsStructure() )
|
|---|
| 263 | {
|
|---|
| 264 | type.SetBasicType( DEF_STRUCT );
|
|---|
| 265 | }
|
|---|
| 266 | else
|
|---|
| 267 | {
|
|---|
| 268 | type.SetBasicType( DEF_OBJECT );
|
|---|
| 269 | }
|
|---|
| 270 | type.SetClassPtr( pobj_c );
|
|---|
| 271 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 272 | }
|
|---|
| 273 |
|
|---|
| 274 |
|
|---|
| 275 | /////////////////////////////////////////////////////////
|
|---|
| 276 | // ☆★☆ ジェネリクスサポート ☆★☆
|
|---|
| 277 |
|
|---|
| 278 | // 型パラメータ
|
|---|
| 279 | if( this->IsCompilingClass() )
|
|---|
| 280 | {
|
|---|
| 281 | // クラスに属するメソッドをコンパイルしているとき
|
|---|
| 282 | int formalTypeIndex = this->GetCompilingClass().GetFormalGenericTypeParameterIndex( typeName );
|
|---|
| 283 | if( formalTypeIndex != -1 )
|
|---|
| 284 | {
|
|---|
| 285 | // コンパイル中クラスにおけるジェネリクス用の型パラメータのとき
|
|---|
| 286 | type.SetBasicType( DEF_TYPE_PARAMETER );
|
|---|
| 287 | type.SetClassPtr( &this->GetCompilingClass().GetFormalGenericTypes()[formalTypeIndex].GetType().GetClass() );
|
|---|
| 288 | type.SetFormalTypeName( typeName );
|
|---|
| 289 | type.SetFormalTypeIndex( formalTypeIndex );
|
|---|
| 290 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
|
|---|
| 291 | }
|
|---|
| 292 | }
|
|---|
| 293 |
|
|---|
| 294 | //
|
|---|
| 295 | /////////////////////////////////////////////////////////
|
|---|
| 296 |
|
|---|
| 297 | return ActiveBasic::Compiler::Error::StringToTypeErrorCode::NotfoundType;
|
|---|
| 298 | }
|
|---|
| 299 |
|
|---|
| 300 | bool Compiler::StringToType( const std::string &typeName, Type &type )
|
|---|
| 301 | {
|
|---|
| 302 | return ( StringToTypeEx( typeName, type, false ) == ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful );
|
|---|
| 303 | }
|
|---|
| 304 |
|
|---|
| 305 | const std::string Compiler::TypeToString( const Type &type )
|
|---|
| 306 | {
|
|---|
| 307 | if( PTR_LEVEL( type.GetBasicType() ) ){
|
|---|
| 308 | //ポインタレベルが1以上の場合
|
|---|
| 309 | Type tempType( type );
|
|---|
| 310 | tempType.PtrLevelDown();
|
|---|
| 311 |
|
|---|
| 312 | return (std::string)"*" + TypeToString( tempType );
|
|---|
| 313 | }
|
|---|
| 314 | else if( type.IsObject() || type.IsStruct() )
|
|---|
| 315 | {
|
|---|
| 316 | //オブジェクトまたは構造体
|
|---|
| 317 |
|
|---|
| 318 | if( !( type.GetIndex() == 0 || type.GetIndex() == -1 ) )
|
|---|
| 319 | {
|
|---|
| 320 | std::string result = type.GetClass().GetName();
|
|---|
| 321 | if( type.GetClass().GetNamespaceScopes().size() >= 1 )
|
|---|
| 322 | {
|
|---|
| 323 | result = type.GetClass().GetNamespaceScopes().ToString()
|
|---|
| 324 | + "."
|
|---|
| 325 | + result;
|
|---|
| 326 | }
|
|---|
| 327 |
|
|---|
| 328 | if( type.GetClass().IsExpanded() )
|
|---|
| 329 | {
|
|---|
| 330 | // テンプレート展開済みのクラスの場合
|
|---|
| 331 | std::string actualGenericTypesName;
|
|---|
| 332 | BOOST_FOREACH( const Type &typeParameter, type.GetClass().expandedClassActualTypeParameters )
|
|---|
| 333 | {
|
|---|
| 334 | if( actualGenericTypesName.size() )
|
|---|
| 335 | {
|
|---|
| 336 | actualGenericTypesName += ",";
|
|---|
| 337 | }
|
|---|
| 338 | actualGenericTypesName += typeParameter.ToString();
|
|---|
| 339 | }
|
|---|
| 340 |
|
|---|
| 341 | result += "<" + actualGenericTypesName + ">";
|
|---|
| 342 | }
|
|---|
| 343 |
|
|---|
| 344 | return result;
|
|---|
| 345 | }
|
|---|
| 346 | }
|
|---|
| 347 | else if( type.IsProcPtr() ){
|
|---|
| 348 | if( type.GetIndex() == 0 || type.GetIndex() == -1 ){
|
|---|
| 349 | return "VoidPtr";
|
|---|
| 350 | }
|
|---|
| 351 | else{
|
|---|
| 352 | if( this->GetObjectModule().meta.GetProcPointers()[type.GetIndex()]->ReturnType().IsNull() ){
|
|---|
| 353 | return "*Sub";
|
|---|
| 354 | }
|
|---|
| 355 | return "*Function";
|
|---|
| 356 | }
|
|---|
| 357 | }
|
|---|
| 358 | else{
|
|---|
| 359 | // 基本型
|
|---|
| 360 | const char *lpszTypeName = Type::BasicTypeToCharPtr( type );
|
|---|
| 361 | if( lpszTypeName )
|
|---|
| 362 | {
|
|---|
| 363 | return (const std::string)lpszTypeName;
|
|---|
| 364 | }
|
|---|
| 365 | }
|
|---|
| 366 |
|
|---|
| 367 | compiler.errorMessenger.Output(1, NULL, cp);
|
|---|
| 368 |
|
|---|
| 369 | return (std::string)"(null)";
|
|---|
| 370 | }
|
|---|
| 371 |
|
|---|
| 372 | int Compiler::SizeOf( const Type &type )
|
|---|
| 373 | {
|
|---|
| 374 | Type tempType( type );
|
|---|
| 375 | if( this->IsCompilingClass() )
|
|---|
| 376 | {
|
|---|
| 377 | if( this->pCompilingClass->IsExpanded() && tempType.IsTypeParameter() )
|
|---|
| 378 | {
|
|---|
| 379 | // 現在コンパイル中のクラスがテンプレート展開済みのクラスで、
|
|---|
| 380 | // 尚且つターゲットとなる型が型パラメータだったとき
|
|---|
| 381 |
|
|---|
| 382 | // テンプレート展開情報を用いて型解決を行う
|
|---|
| 383 | this->pCompilingClass->ResolveExpandedClassActualTypeParameter( tempType );
|
|---|
| 384 | }
|
|---|
| 385 | }
|
|---|
| 386 | return tempType.GetSize();
|
|---|
| 387 | }
|
|---|
| 388 |
|
|---|
| 389 | void Compiler::ClearCompilingUserProcAndClass()
|
|---|
| 390 | {
|
|---|
| 391 | this->pCompilingUserProc = NULL;
|
|---|
| 392 | this->pCompilingClass = NULL;
|
|---|
| 393 | }
|
|---|
| 394 |
|
|---|
| 395 | void Compiler::SetCompilingClass( const CClass *pClass )
|
|---|
| 396 | {
|
|---|
| 397 | this->pCompilingClass = pClass;
|
|---|
| 398 | }
|
|---|
| 399 |
|
|---|
| 400 | void Compiler::SetCompilingUserProc( const UserProc *pUserProc )
|
|---|
| 401 | {
|
|---|
| 402 | this->pCompilingUserProc = pUserProc;
|
|---|
| 403 |
|
|---|
| 404 | this->SetCompilingClass( pUserProc->GetParentClassPtr() );
|
|---|
| 405 | }
|
|---|
| 406 |
|
|---|
| 407 | void Compiler::StartGlobalAreaCompile()
|
|---|
| 408 | {
|
|---|
| 409 | ClearCompilingUserProcAndClass();
|
|---|
| 410 | }
|
|---|
| 411 |
|
|---|
| 412 | void Compiler::StartProcedureCompile( const UserProc *pUserProc )
|
|---|
| 413 | {
|
|---|
| 414 | //コンパイル中の関数
|
|---|
| 415 | this->SetCompilingUserProc( pUserProc );
|
|---|
| 416 |
|
|---|
| 417 | if( pUserProc->HasParentClass() )
|
|---|
| 418 | {
|
|---|
| 419 | // クラスの使用チェック
|
|---|
| 420 | pUserProc->GetParentClass().Using();
|
|---|
| 421 | }
|
|---|
| 422 |
|
|---|
| 423 | // コンパイル中の関数が属する名前空間
|
|---|
| 424 | this->GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
|
|---|
| 425 |
|
|---|
| 426 | // コンパイル中の関数でImportsされている名前空間
|
|---|
| 427 | this->GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
|
|---|
| 428 |
|
|---|
| 429 | // コード生成対象を選択
|
|---|
| 430 | this->codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
|
|---|
| 431 | }
|
|---|
| 432 | void Compiler::FinishProcedureCompile()
|
|---|
| 433 | {
|
|---|
| 434 | this->pCompilingUserProc = NULL;
|
|---|
| 435 | this->pCompilingClass = NULL;
|
|---|
| 436 | }
|
|---|
| 437 |
|
|---|
| 438 | bool Compiler::IsGlobalAreaCompiling()
|
|---|
| 439 | {
|
|---|
| 440 | if( pCompilingUserProc == NULL )
|
|---|
| 441 | {
|
|---|
| 442 | return true;
|
|---|
| 443 | }
|
|---|
| 444 | return ( pCompilingUserProc->GetName() == this->globalAreaProcName );
|
|---|
| 445 | }
|
|---|
| 446 | bool Compiler::IsLocalAreaCompiling()
|
|---|
| 447 | {
|
|---|
| 448 | return !IsGlobalAreaCompiling();
|
|---|
| 449 | }
|
|---|
| 450 | const UserProc &Compiler::GetCompilingUserProc()
|
|---|
| 451 | {
|
|---|
| 452 | if( pCompilingUserProc == NULL )
|
|---|
| 453 | {
|
|---|
| 454 | _ASSERTE( false );
|
|---|
| 455 | throw;
|
|---|
| 456 | }
|
|---|
| 457 | return *pCompilingUserProc;
|
|---|
| 458 | }
|
|---|
| 459 |
|
|---|
| 460 | bool Compiler::IsCompilingClass()
|
|---|
| 461 | {
|
|---|
| 462 | return ( pCompilingClass != NULL );
|
|---|
| 463 | }
|
|---|
| 464 | const CClass &Compiler::GetCompilingClass()
|
|---|
| 465 | {
|
|---|
| 466 | if( this->IsCompilingClass() )
|
|---|
| 467 | {
|
|---|
| 468 | return *pCompilingClass;
|
|---|
| 469 | }
|
|---|
| 470 |
|
|---|
| 471 | throw;
|
|---|
| 472 | }
|
|---|