source: dev/trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp@ 636

Last change on this file since 636 was 636, checked in by dai_9181, 16 years ago

libファイルを跨ったテンプレート展開に対応。

File size: 11.1 KB
RevLine 
[206]1#include "stdafx.h"
2
[598]3using namespace ActiveBasic::Compiler;
4
[195]5Compiler compiler;
[193]6
[636]7Compiler::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}
24Compiler::~Compiler()
25{
26 BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )
27 {
28 delete pStaticLibrary;
29 }
30 staticLibraries.clear();
31}
32
33void 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}
[270]41void Compiler::StaticLink( ObjectModules &staticLibraries )
42{
43 BOOST_FOREACH( ObjectModule *pStaticLibrary, staticLibraries )
44 {
[636]45 if( &this->GetObjectModule() == pStaticLibrary )
46 {
47 // 自分自身の場合はリンクしない
48 continue;
49 }
50
[270]51 // メタ情報
[636]52 this->GetObjectModule().StaticLink( *pStaticLibrary );
[270]53 }
54}
55
[632]56ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType Compiler::StringToGenericTypeEx( const std::string &typeName, Type &type )
[628]57{
[632]58 // ジェネリッククラスをインスタンス化した型の場合
59 int i = 0;
60 char className[VN_SIZE];
61 GetIdentifierToken( className, typeName.c_str(), i );
[193]62
[632]63 // ジェネリクスクラスを取得
64 const CClass *pGenericClass = this->GetObjectModule().meta.FindClassSupportedTypeDef(
65 LexicalAnalyzer::FullNameToSymbol( className )
66 );
[290]67
[632]68 if( !pGenericClass )
69 {
70 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::NotfoundGenericClass;
71 }
[290]72
[632]73 if( typeName[i] != '<' )
[290]74 {
[632]75 Jenga::Throw( "StringToType内でジェネリクス構文の解析に失敗" );
76 }
[290]77
[632]78 GenericTypes genericTypes;
79 bool isValueType = false;
80 while( true )
81 {
82 i++;
[290]83
[632]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() )
[301]94 {
[632]95 // 値型の場合
96 isValueType = true;
[301]97 }
[290]98
[632]99 if( typeName[i] != ',' )
[301]100 {
[632]101 break;
[301]102 }
[632]103 }
[301]104
[632]105 // 基本型をセット
106 type.SetBasicType( DEF_OBJECT );
[290]107
[632]108 if( isValueType )
109 {
110 // 型パラメータに値型が指定された場合
[301]111
[632]112 // 仮型パラメータを実型パラメータに変換
113 Types actualTypes;
114 BOOST_FOREACH( const GenericType &genericType, genericTypes )
115 {
116 actualTypes.push_back( genericType.GetType() );
117 }
[301]118
[632]119 // テンプレートとしてクラスを展開する
120 const CClass *pExpandedClass = LexicalAnalyzer::TemplateExpand( *const_cast<CClass *>(pGenericClass), actualTypes );
[301]121
[632]122 if( pExpandedClass )
123 {
124 // 拡張情報をセット
125 type.SetClassPtr( pExpandedClass );
[301]126 }
[632]127 else
128 {
129 // TODO: 消す
130 goto Generic;
131 }
132 }
133 else
134 {
135Generic:
136 // 型パラメータにクラス型が指定された場合
[301]137
[632]138 // ジェネリック クラスとして利用する
[290]139
140 // 拡張情報をセット
141 type.SetClassPtr( pGenericClass );
142 type.SetActualGenericTypes( genericTypes );
[632]143 }
[290]144
[632]145 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
146}
147ActiveBasic::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 );
[290]158 }
159
160 //
161 /////////////////////////////////////////////////////////
162
163
[193]164 if( typeName[0] == '*' ){
165 if( typeName.size() >= 3
[575]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 &paramStr = 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 );
[628]189 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]190 }
191
[523]192 const std::string &nextTypeName = typeName.substr( 1 );
[193]193
[628]194 ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType result = StringToTypeEx( nextTypeName, type, isResolveGenerics );
195 if( result != ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful )
196 {
197 return result;
[193]198 }
199
200 type.PtrLevelUp();
201
[628]202 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]203 }
204
205 {
206 int basicType;
[628]207 if( Type::StringToBasicType( typeName, basicType ) )
208 {
[193]209 // 基本型だったとき
210 type.SetBasicType( basicType );
[628]211 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]212 }
213 }
214
215 // Object型だったとき
[628]216 if( typeName == "Object" )
217 {
[299]218 type.SetType( DEF_OBJECT, this->GetObjectModule().meta.GetClasses().GetObjectClassPtr() );
[628]219 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]220 }
221
222 // String型だったとき
[628]223 if( typeName == "String" )
224 {
[299]225 type.SetType( DEF_OBJECT, this->GetObjectModule().meta.GetClasses().GetStringClassPtr() );
[628]226 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]227 }
228
229
230 ////////////////////
231 // TypeDefされた型
232 ////////////////////
[632]233 const TypeDef *pTypeDef = this->GetObjectModule().meta.GetTypeDefs().Find( LexicalAnalyzer::FullNameToSymbol( typeName ) );
234 if( pTypeDef )
[628]235 {
[632]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
[628]248 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]249 }
250
251 //クラス
[632]252 const CClass *pobj_c = this->GetObjectModule().meta.FindClassSupportedTypeDef( LexicalAnalyzer::FullNameToSymbol( typeName ) );
[628]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 {
[193]267 type.SetBasicType( DEF_STRUCT );
268 }
[628]269 else
270 {
[193]271 type.SetBasicType( DEF_OBJECT );
272 }
[290]273 type.SetClassPtr( pobj_c );
[628]274 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[193]275 }
276
[290]277
278 /////////////////////////////////////////////////////////
279 // ☆★☆ ジェネリクスサポート ☆★☆
280
281 // 型パラメータ
[536]282 if( this->IsCompilingClass() )
[290]283 {
284 // クラスに属するメソッドをコンパイルしているとき
[536]285 int formalTypeIndex = this->GetCompilingClass().GetFormalGenericTypeParameterIndex( typeName );
[299]286 if( formalTypeIndex != -1 )
[290]287 {
288 // コンパイル中クラスにおけるジェネリクス用の型パラメータのとき
289 type.SetBasicType( DEF_TYPE_PARAMETER );
[536]290 type.SetClassPtr( &this->GetCompilingClass().GetFormalGenericTypes()[formalTypeIndex].GetType().GetClass() );
[299]291 type.SetFormalTypeName( typeName );
292 type.SetFormalTypeIndex( formalTypeIndex );
[628]293 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful;
[290]294 }
295 }
296
297 //
298 /////////////////////////////////////////////////////////
299
[628]300 return ActiveBasic::Compiler::Error::StringToTypeErrorCode::NotfoundType;
[193]301}
302
[628]303bool Compiler::StringToType( const std::string &typeName, Type &type )
304{
305 return ( StringToTypeEx( typeName, type, false ) == ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful );
306}
307
[523]308const std::string Compiler::TypeToString( const Type &type )
[193]309{
310 if( PTR_LEVEL( type.GetBasicType() ) ){
311 //ポインタレベルが1以上の場合
312 Type tempType( type );
313 tempType.PtrLevelDown();
314
[523]315 return (std::string)"*" + TypeToString( tempType );
[193]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{
[299]333 if( this->GetObjectModule().meta.GetProcPointers()[type.GetIndex()]->ReturnType().IsNull() ){
[193]334 return "*Sub";
335 }
336 return "*Function";
337 }
338 }
339 else{
340 // 基本型
341 const char *lpszTypeName = Type::BasicTypeToCharPtr( type );
342 if( lpszTypeName )
343 {
[523]344 return (const std::string)lpszTypeName;
[193]345 }
346 }
347
[465]348 compiler.errorMessenger.Output(1, NULL, cp);
[193]349
[523]350 return (std::string)"(null)";
[193]351}
[533]352
[536]353void Compiler::ClearCompilingUserProcAndClass()
354{
355 this->pCompilingUserProc = NULL;
356 this->pCompilingClass = NULL;
357}
358
359void Compiler::SetCompilingClass( const CClass *pClass )
360{
361 this->pCompilingClass = pClass;
362}
363
[537]364void Compiler::SetCompilingUserProc( const UserProc *pUserProc )
[533]365{
[536]366 this->pCompilingUserProc = pUserProc;
367
368 this->SetCompilingClass( pUserProc->GetParentClassPtr() );
[537]369}
[533]370
[537]371void Compiler::StartGlobalAreaCompile()
372{
373 ClearCompilingUserProcAndClass();
374}
375
376void Compiler::StartProcedureCompile( const UserProc *pUserProc )
377{
378 //コンパイル中の関数
379 this->SetCompilingUserProc( pUserProc );
380
[540]381 if( pUserProc->HasParentClass() )
382 {
383 // クラスの使用チェック
384 pUserProc->GetParentClass().Using();
385 }
[533]386
387 // コンパイル中の関数が属する名前空間
388 this->GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
389
390 // コンパイル中の関数でImportsされている名前空間
391 this->GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
392
393 // コード生成対象を選択
394 this->codeGenerator.Select( (const_cast<UserProc *>(pUserProc))->GetNativeCode() );
395}
396void Compiler::FinishProcedureCompile()
397{
[536]398 this->pCompilingUserProc = NULL;
399 this->pCompilingClass = NULL;
[533]400}
[536]401
402bool Compiler::IsGlobalAreaCompiling()
403{
404 return ( pCompilingUserProc == NULL );
405}
[537]406bool Compiler::IsLocalAreaCompiling()
407{
408 return ( pCompilingUserProc != NULL );
409}
[536]410const UserProc &Compiler::GetCompilingUserProc()
411{
412 if( !this->IsGlobalAreaCompiling() )
413 {
414 return *pCompilingUserProc;
415 }
416
417 throw;
418}
419
420bool Compiler::IsCompilingClass()
421{
422 return ( pCompilingClass != NULL );
423}
424const CClass &Compiler::GetCompilingClass()
425{
426 if( this->IsCompilingClass() )
427 {
428 return *pCompilingClass;
429 }
430
431 throw;
432}
Note: See TracBrowser for help on using the repository browser.