| 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.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 )
 | 
|---|
| 256 |         {
 | 
|---|
| 257 |             if( pobj_c->IsGeneric() )
 | 
|---|
| 258 |             {
 | 
|---|
| 259 |                 // ジェネリッククラスの場合
 | 
|---|
| 260 |                 trace( "型解決されていない" );
 | 
|---|
| 261 |                 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::FailedResolveGenericType;
 | 
|---|
| 262 |             }
 | 
|---|
| 263 |         }
 | 
|---|
| 264 | 
 | 
|---|
| 265 |         if( pobj_c->IsStructure() )
 | 
|---|
| 266 |         {
 | 
|---|
| 267 |             type.SetBasicType( DEF_STRUCT );
 | 
|---|
| 268 |         }
 | 
|---|
| 269 |         else
 | 
|---|
| 270 |         {
 | 
|---|
| 271 |             type.SetBasicType( DEF_OBJECT );
 | 
|---|
| 272 |         }
 | 
|---|
| 273 |         type.SetClassPtr( pobj_c );
 | 
|---|
| 274 |         return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
 | 
|---|
| 275 |     }
 | 
|---|
| 276 | 
 | 
|---|
| 277 | 
 | 
|---|
| 278 |     /////////////////////////////////////////////////////////
 | 
|---|
| 279 |     // ☆★☆ ジェネリクスサポート ☆★☆
 | 
|---|
| 280 | 
 | 
|---|
| 281 |     // 型パラメータ
 | 
|---|
| 282 |     if( this->IsCompilingClass() )
 | 
|---|
| 283 |     {
 | 
|---|
| 284 |         // クラスに属するメソッドをコンパイルしているとき
 | 
|---|
| 285 |         int formalTypeIndex = this->GetCompilingClass().GetFormalGenericTypeParameterIndex( typeName );
 | 
|---|
| 286 |         if( formalTypeIndex != -1 )
 | 
|---|
| 287 |         {
 | 
|---|
| 288 |             // コンパイル中クラスにおけるジェネリクス用の型パラメータのとき
 | 
|---|
| 289 |             type.SetBasicType( DEF_TYPE_PARAMETER );
 | 
|---|
| 290 |             type.SetClassPtr( &this->GetCompilingClass().GetFormalGenericTypes()[formalTypeIndex].GetType().GetClass() );
 | 
|---|
| 291 |             type.SetFormalTypeName( typeName );
 | 
|---|
| 292 |             type.SetFormalTypeIndex( formalTypeIndex );
 | 
|---|
| 293 |             return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
 | 
|---|
| 294 |         }
 | 
|---|
| 295 |     }
 | 
|---|
| 296 | 
 | 
|---|
| 297 |     //
 | 
|---|
| 298 |     /////////////////////////////////////////////////////////
 | 
|---|
| 299 | 
 | 
|---|
| 300 |     return ActiveBasic::Compiler::Error::StringToTypeErrorCode::NotfoundType;
 | 
|---|
| 301 | }
 | 
|---|
| 302 | 
 | 
|---|
| 303 | bool Compiler::StringToType( const std::string &typeName, Type &type )
 | 
|---|
| 304 | {
 | 
|---|
| 305 |     return ( StringToTypeEx( typeName, type, false ) == ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful );
 | 
|---|
| 306 | }
 | 
|---|
| 307 | 
 | 
|---|
| 308 | const std::string Compiler::TypeToString( const Type &type )
 | 
|---|
| 309 | {
 | 
|---|
| 310 |     if( PTR_LEVEL( type.GetBasicType() ) ){
 | 
|---|
| 311 |         //ポインタレベルが1以上の場合
 | 
|---|
| 312 |         Type tempType( type );
 | 
|---|
| 313 |         tempType.PtrLevelDown();
 | 
|---|
| 314 | 
 | 
|---|
| 315 |         return (std::string)"*" + TypeToString( tempType );
 | 
|---|
| 316 |     }
 | 
|---|
| 317 |     else if( type.IsObject() || type.IsStruct() ){
 | 
|---|
| 318 |         //オブジェクトまたは構造体
 | 
|---|
| 319 | 
 | 
|---|
| 320 |         if( !( type.GetIndex() == 0 || type.GetIndex() == -1 ) ){
 | 
|---|
| 321 |             if( type.GetClass().GetNamespaceScopes().size() >= 1 )
 | 
|---|
| 322 |             {
 | 
|---|
| 323 |                 return type.GetClass().GetNamespaceScopes().ToString() + "." + type.GetClass().GetName();
 | 
|---|
| 324 |             }
 | 
|---|
| 325 |             return type.GetClass().GetName();
 | 
|---|
| 326 |         }
 | 
|---|
| 327 |     }
 | 
|---|
| 328 |     else if( type.IsProcPtr() ){
 | 
|---|
| 329 |         if( type.GetIndex() == 0 || type.GetIndex() == -1 ){
 | 
|---|
| 330 |             return "VoidPtr";
 | 
|---|
| 331 |         }
 | 
|---|
| 332 |         else{
 | 
|---|
| 333 |             if( this->GetObjectModule().meta.GetProcPointers()[type.GetIndex()]->ReturnType().IsNull() ){
 | 
|---|
| 334 |                 return "*Sub";
 | 
|---|
| 335 |             }
 | 
|---|
| 336 |             return "*Function";
 | 
|---|
| 337 |         }
 | 
|---|
| 338 |     }
 | 
|---|
| 339 |     else{
 | 
|---|
| 340 |         // 基本型
 | 
|---|
| 341 |         const char *lpszTypeName = Type::BasicTypeToCharPtr( type );
 | 
|---|
| 342 |         if( lpszTypeName )
 | 
|---|
| 343 |         {
 | 
|---|
| 344 |             return (const std::string)lpszTypeName;
 | 
|---|
| 345 |         }
 | 
|---|
| 346 |     }
 | 
|---|
| 347 | 
 | 
|---|
| 348 |     compiler.errorMessenger.Output(1, NULL, cp);
 | 
|---|
| 349 | 
 | 
|---|
| 350 |     return (std::string)"(null)";
 | 
|---|
| 351 | }
 | 
|---|
| 352 | 
 | 
|---|
| 353 | int Compiler::SizeOf( const Type &type )
 | 
|---|
| 354 | {
 | 
|---|
| 355 |     Type tempType( type );
 | 
|---|
| 356 |     if( this->IsCompilingClass() )
 | 
|---|
| 357 |     {
 | 
|---|
| 358 |         if( this->pCompilingClass->IsExpanded() && tempType.IsTypeParameter() )
 | 
|---|
| 359 |         {
 | 
|---|
| 360 |             // 現在コンパイル中のクラスがテンプレート展開済みのクラスで、
 | 
|---|
| 361 |             // 尚且つターゲットとなる型が型パラメータだったとき
 | 
|---|
| 362 | 
 | 
|---|
| 363 |             // テンプレート展開情報を用いて型解決を行う
 | 
|---|
| 364 |             this->pCompilingClass->ResolveExpandedClassActualTypeParameter( tempType );
 | 
|---|
| 365 |         }
 | 
|---|
| 366 |     }
 | 
|---|
| 367 |     return tempType.GetSize();
 | 
|---|
| 368 | }
 | 
|---|
| 369 | 
 | 
|---|
| 370 | void Compiler::ClearCompilingUserProcAndClass()
 | 
|---|
| 371 | {
 | 
|---|
| 372 |     this->pCompilingUserProc = NULL;
 | 
|---|
| 373 |     this->pCompilingClass = NULL;
 | 
|---|
| 374 | }
 | 
|---|
| 375 | 
 | 
|---|
| 376 | void Compiler::SetCompilingClass( const CClass *pClass )
 | 
|---|
| 377 | {
 | 
|---|
| 378 |     this->pCompilingClass = pClass;
 | 
|---|
| 379 | }
 | 
|---|
| 380 | 
 | 
|---|
| 381 | void Compiler::SetCompilingUserProc( const UserProc *pUserProc )
 | 
|---|
| 382 | {
 | 
|---|
| 383 |     this->pCompilingUserProc = pUserProc;
 | 
|---|
| 384 | 
 | 
|---|
| 385 |     this->SetCompilingClass( pUserProc->GetParentClassPtr() );
 | 
|---|
| 386 | }
 | 
|---|
| 387 | 
 | 
|---|
| 388 | void Compiler::StartGlobalAreaCompile()
 | 
|---|
| 389 | {
 | 
|---|
| 390 |     ClearCompilingUserProcAndClass();
 | 
|---|
| 391 | }
 | 
|---|
| 392 | 
 | 
|---|
| 393 | void Compiler::StartProcedureCompile( const UserProc *pUserProc )
 | 
|---|
| 394 | {
 | 
|---|
| 395 |     //コンパイル中の関数
 | 
|---|
| 396 |     this->SetCompilingUserProc( pUserProc );
 | 
|---|
| 397 | 
 | 
|---|
| 398 |     if( pUserProc->HasParentClass() )
 | 
|---|
| 399 |     {
 | 
|---|
| 400 |         // クラスの使用チェック
 | 
|---|
| 401 |         pUserProc->GetParentClass().Using();
 | 
|---|
| 402 |     }
 | 
|---|
| 403 | 
 | 
|---|
| 404 |     // コンパイル中の関数が属する名前空間
 | 
|---|
| 405 |     this->GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
 | 
|---|
| 406 | 
 | 
|---|
| 407 |     // コンパイル中の関数でImportsされている名前空間
 | 
|---|
| 408 |     this->GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
 | 
|---|
| 409 | 
 | 
|---|
| 410 |     // コード生成対象を選択
 | 
|---|
| 411 |     this->codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
 | 
|---|
| 412 | }
 | 
|---|
| 413 | void Compiler::FinishProcedureCompile()
 | 
|---|
| 414 | {
 | 
|---|
| 415 |     this->pCompilingUserProc = NULL;
 | 
|---|
| 416 |     this->pCompilingClass = NULL;
 | 
|---|
| 417 | }
 | 
|---|
| 418 | 
 | 
|---|
| 419 | bool Compiler::IsGlobalAreaCompiling()
 | 
|---|
| 420 | {
 | 
|---|
| 421 |     if( pCompilingUserProc == NULL )
 | 
|---|
| 422 |     {
 | 
|---|
| 423 |         return true;
 | 
|---|
| 424 |     }
 | 
|---|
| 425 |     return ( pCompilingUserProc->GetName() == this->globalAreaProcName );
 | 
|---|
| 426 | }
 | 
|---|
| 427 | bool Compiler::IsLocalAreaCompiling()
 | 
|---|
| 428 | {
 | 
|---|
| 429 |     return !IsGlobalAreaCompiling();
 | 
|---|
| 430 | }
 | 
|---|
| 431 | const UserProc &Compiler::GetCompilingUserProc()
 | 
|---|
| 432 | {
 | 
|---|
| 433 |     if( pCompilingUserProc == NULL )
 | 
|---|
| 434 |     {
 | 
|---|
| 435 |         _ASSERTE( false );
 | 
|---|
| 436 |         throw;
 | 
|---|
| 437 |     }
 | 
|---|
| 438 |     return *pCompilingUserProc;
 | 
|---|
| 439 | }
 | 
|---|
| 440 | 
 | 
|---|
| 441 | bool Compiler::IsCompilingClass()
 | 
|---|
| 442 | {
 | 
|---|
| 443 |     return ( pCompilingClass != NULL );
 | 
|---|
| 444 | }
 | 
|---|
| 445 | const CClass &Compiler::GetCompilingClass()
 | 
|---|
| 446 | {
 | 
|---|
| 447 |     if( this->IsCompilingClass() )
 | 
|---|
| 448 |     {
 | 
|---|
| 449 |         return *pCompilingClass;
 | 
|---|
| 450 |     }
 | 
|---|
| 451 | 
 | 
|---|
| 452 |     throw;
 | 
|---|
| 453 | }
 | 
|---|