| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | #include <Compiler.h>
|
|---|
| 4 | #include <Procedure.h>
|
|---|
| 5 |
|
|---|
| 6 | #include "../common.h"
|
|---|
| 7 | #ifdef _AMD64_
|
|---|
| 8 | #include "../../compiler_x64/opcode.h"
|
|---|
| 9 | #else
|
|---|
| 10 | #include "../../compiler_x86/opcode.h"
|
|---|
| 11 | #endif
|
|---|
| 12 |
|
|---|
| 13 | using namespace ActiveBasic::Compiler;
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 | bool UserProc::IsEqualForOverride( const Types &actualTypeParametersForThisProc, const UserProc *pUserProc ) const
|
|---|
| 17 | {
|
|---|
| 18 | if( this->GetName() == pUserProc->GetName() // 名前空間及び名前が等しい
|
|---|
| 19 | && this->Params().Equals( actualTypeParametersForThisProc, pUserProc->Params() ) ) // パラメータが等しい
|
|---|
| 20 | {
|
|---|
| 21 | if( this->returnType.Equals( pUserProc->returnType ) )
|
|---|
| 22 | {
|
|---|
| 23 | // 戻り値が等しい
|
|---|
| 24 | return true;
|
|---|
| 25 | }
|
|---|
| 26 | else if( this->returnType.IsCovariant( pUserProc->returnType ) )
|
|---|
| 27 | {
|
|---|
| 28 | // 戻り値が共変
|
|---|
| 29 | return true;
|
|---|
| 30 | }
|
|---|
| 31 | else if( this->returnType.IsTypeParameter() )
|
|---|
| 32 | {
|
|---|
| 33 | // 型パラメータだったとき
|
|---|
| 34 |
|
|---|
| 35 | if( actualTypeParametersForThisProc[this->returnType.GetFormalTypeIndex()].Equals( pUserProc->returnType ) )
|
|---|
| 36 | {
|
|---|
| 37 | // 戻り値が等しい
|
|---|
| 38 | return true;
|
|---|
| 39 | }
|
|---|
| 40 | else if( actualTypeParametersForThisProc[this->returnType.GetFormalTypeIndex()].IsCovariant( pUserProc->returnType ) )
|
|---|
| 41 | {
|
|---|
| 42 | // 戻り値が共変
|
|---|
| 43 | return true;
|
|---|
| 44 | }
|
|---|
| 45 | }
|
|---|
| 46 | }
|
|---|
| 47 | return false;
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 | std::string UserProc::GetFullName() const
|
|---|
| 52 | {
|
|---|
| 53 | if( HasParentClass() ){
|
|---|
| 54 | return GetParentClass().GetName() + "." + GetName();
|
|---|
| 55 | }
|
|---|
| 56 |
|
|---|
| 57 | return GetName();
|
|---|
| 58 | }
|
|---|
| 59 | bool UserProc::IsCastOperator() const
|
|---|
| 60 | {
|
|---|
| 61 | if( GetName()[0] == 1 && GetName()[1] == ESC_OPERATOR && GetName()[2] == CALC_AS )
|
|---|
| 62 | {
|
|---|
| 63 | return true;
|
|---|
| 64 | }
|
|---|
| 65 | return false;
|
|---|
| 66 | }
|
|---|
| 67 | const NamespaceScopes &UserProc::GetNamespaceScopes() const
|
|---|
| 68 | {
|
|---|
| 69 | if( HasParentClass() ){
|
|---|
| 70 | return GetParentClassPtr()->GetNamespaceScopes();
|
|---|
| 71 | }
|
|---|
| 72 | return Symbol::GetNamespaceScopes();
|
|---|
| 73 | }
|
|---|
| 74 | const NamespaceScopesCollection &UserProc::GetImportedNamespaces() const
|
|---|
| 75 | {
|
|---|
| 76 | if( pParentClass )
|
|---|
| 77 | {
|
|---|
| 78 | return pParentClass->GetImportedNamespaces();
|
|---|
| 79 | }
|
|---|
| 80 | return importedNamespaces;
|
|---|
| 81 | }
|
|---|
| 82 | bool UserProc::IsVirtual() const
|
|---|
| 83 | {
|
|---|
| 84 | if( pMethod == NULL ){
|
|---|
| 85 | return false;
|
|---|
| 86 | }
|
|---|
| 87 | return ( pMethod->IsVirtual() != 0 );
|
|---|
| 88 | }
|
|---|
| 89 | const CMethod &UserProc::GetMethod() const
|
|---|
| 90 | {
|
|---|
| 91 | if( !HasParentClass() )
|
|---|
| 92 | {
|
|---|
| 93 | Jenga::Throw( "グローバル関数に対してUserProc::GetMethodメソッドが呼ばれた" );
|
|---|
| 94 | }
|
|---|
| 95 | return *pMethod;
|
|---|
| 96 | }
|
|---|
| 97 |
|
|---|
| 98 | const UserProc *UserProc::pGlobalProc = NULL;
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 | void UserProcs::EnumGlobalProcs( const char *simpleName, const Symbol &localSymbol, std::vector<const UserProc *> &subs )
|
|---|
| 102 | {
|
|---|
| 103 | ///////////////////////////
|
|---|
| 104 | // グローバル関数を検索
|
|---|
| 105 | ///////////////////////////
|
|---|
| 106 |
|
|---|
| 107 | // ハッシュ値を取得
|
|---|
| 108 | UserProc *pUserProc = GetHashArrayElement( simpleName );
|
|---|
| 109 | while(pUserProc){
|
|---|
| 110 | if( pUserProc->IsGlobalProcedure() ){
|
|---|
| 111 | if( pUserProc->IsEqualSymbol( localSymbol ) ){
|
|---|
| 112 | subs.push_back( pUserProc );
|
|---|
| 113 | }
|
|---|
| 114 | }
|
|---|
| 115 |
|
|---|
| 116 | pUserProc=pUserProc->GetChainNext();
|
|---|
| 117 | }
|
|---|
| 118 | }
|
|---|
| 119 |
|
|---|
| 120 | void ProcPointers::Clear()
|
|---|
| 121 | {
|
|---|
| 122 | ProcPointers &procPointers = *this;
|
|---|
| 123 | BOOST_FOREACH( ProcPointer *pProcPointer, procPointers ){
|
|---|
| 124 | delete pProcPointer;
|
|---|
| 125 | }
|
|---|
| 126 | this->clear();
|
|---|
| 127 | }
|
|---|