source: dev/trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp@ 509

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

Symbolクラスをab_commonプロジェクトに移動した。

File size: 4.2 KB
Line 
1#include "stdafx.h"
2
3#include <Compiler.h>
4
5#include "../BasicCompiler_Common/common.h"
6
7#ifdef _AMD64_
8#include "../compiler_x64/opcode.h"
9#else
10#include "../compiler_x86/opcode.h"
11#endif
12
13using namespace ActiveBasic::Compiler;
14
15int hash_default(const char *name){
16 int key;
17
18 for(key=0;*name!='\0';name++){
19 key=((key<<8)+ *name )%MAX_HASH;
20 }
21
22 return key;
23}
24
25DllProc *GetDeclareHash(const char *fullName){
26 char namespaceStr[VN_SIZE]; //オブジェクト変数
27 char simpleName[VN_SIZE]; //入れ子メンバ
28 bool isObjectMember = SplitMemberName( fullName, namespaceStr, simpleName );
29
30 ///////////////////////////
31 // グローバル関数を検索
32 ///////////////////////////
33
34 // ハッシュ値を取得
35 DllProc *pDllProc = compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement( simpleName );
36 while(pDllProc){
37 if( pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( fullName ) ) ){
38 return pDllProc;
39 }
40
41 pDllProc=pDllProc->GetChainNext();
42 }
43
44 return NULL;
45}
46
47void GetOverloadSubHash( const char *lpszName, std::vector<const UserProc *> &subs ){
48 char name[VN_SIZE];
49
50 if(lpszName[0]=='.'){
51 GetWithName(name);
52 lstrcat(name,lpszName);
53 }
54 else lstrcpy(name,lpszName);
55
56 char ObjName[VN_SIZE]; //オブジェクト変数
57 char NestMember[VN_SIZE]; //入れ子メンバ
58 bool isObjectMember = SplitMemberName( name, ObjName, NestMember );
59
60 if(isObjectMember){
61 //オブジェクトのメンバ関数の場合
62
63 bool isStatic = false;
64 const CClass *pobj_c = NULL;
65 if(lstrcmpi(ObjName,"Super")==0)
66 {
67 //クラスメンバ関数内から基底クラスの呼び出し
68 pobj_c=&compiler.pCompilingClass->GetSuperClass();
69 }
70 else
71 {
72 //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し
73 Type type;
74 if( GetTermType(ObjName,type) )
75 {
76 if( type.IsObject() )
77 {
78 pobj_c = &type.GetClass();
79 }
80 }
81
82 if( !pobj_c )
83 {
84 pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjName);
85 if( pobj_c ){
86 isStatic = true;
87 }
88 }
89 }
90
91 if( pobj_c && pobj_c != (CClass *)-1 ){
92 if( isStatic ){
93 // 静的メソッドから列挙
94 pobj_c->GetStaticMethods().Enum( NestMember, subs );
95 }
96 else{
97 //動的メソッドから列挙
98 pobj_c->EnumDynamicMethodsOrInterfaceMethods( NestMember, subs );
99 }
100
101 return;
102 }
103 }
104
105
106 if(compiler.pCompilingClass){
107 //自身のオブジェクトのメンバ関数を検索
108
109 // 静的メソッド
110 compiler.pCompilingClass->GetStaticMethods().Enum( name, subs );
111
112 // 動的メソッド
113 compiler.pCompilingClass->EnumDynamicMethodsOrInterfaceMethods( name, subs );
114 }
115
116
117 // グローバル関数を検索
118 compiler.GetObjectModule().meta.GetUserProcs().EnumGlobalProcs( NestMember, name, subs );
119}
120
121//オーバーロードされていない関数を取得(昔のコンパイラソースコードとの互換性保持)
122const UserProc *GetSubHash(const char *lpszName,BOOL bError){
123 std::vector<const UserProc *> subs;
124 GetOverloadSubHash(lpszName,subs);
125
126 //関数が存在しないとき
127 if(subs.size() == 0){
128 if(bError){
129 compiler.errorMessenger.Output(3,lpszName,cp);
130 }
131 return 0;
132 }
133
134 //一つ以上の関数が存在するときは内部エラー(デバッグ用)
135 if(subs.size() > 1){
136 if(bError) compiler.errorMessenger.Output(300,NULL,cp);
137 }
138
139 const UserProc *pUserProc = subs[0];
140
141 return pUserProc;
142}
143const UserProc *GetMethodHash(const char *ObjectName,const char *MethodName,const char *Parameter,BOOL bError){
144 char temporary[VN_SIZE];
145 sprintf(temporary,"%s.%s",ObjectName,MethodName);
146
147 std::vector<const UserProc *> subs;
148 GetOverloadSubHash(temporary,subs);
149
150 //関数が存在しないとき
151 if(subs.size() == 0){
152 return 0;
153 }
154
155 //オーバーロードを解決
156 const UserProc *pUserProc = OverloadSolutionWithStrParam(temporary,subs,Parameter,ObjectName);
157
158 return pUserProc;
159}
160
161const UserProc *GetClassMethod( const char *className, const char *methodName ){
162 const CClass *pClass = compiler.GetObjectModule().meta.GetClasses().Find( className );
163 if( pClass ){
164 vector<const UserProc *> userProcs;
165 pClass->EnumDynamicMethodsOrInterfaceMethods( methodName, userProcs );
166 if( userProcs.size() == 1 ){
167 return userProcs[0];
168 }
169 }
170
171 char temporary[VN_SIZE];
172 sprintf( temporary, "%s.%s", className, methodName );
173 compiler.errorMessenger.Output(3, temporary, -1 );
174
175 return NULL;
176}
Note: See TracBrowser for help on using the repository browser.