source: dev/BasicCompiler_Common/Class.h@ 53

Last change on this file since 53 was 53, checked in by dai_9181, 17 years ago

ppobj_StaticMemberを廃止し、vectorに統一した(staticMember)。

File size: 5.1 KB
Line 
1#include <vector>
2
3class CClass;
4struct SUBINFO;
5
6//データ型
7struct TYPEINFO{
8 int type;
9 union{
10 LONG_PTR lpIndex;
11 CClass *pobj_Class;
12 }u;
13};
14
15#define ACCESS_NON 0
16#define ACCESS_PRIVATE 1
17#define ACCESS_PUBLIC 2
18#define ACCESS_PROTECTED 3
19
20class CMember{
21 bool isConst;
22 bool isRef;
23public:
24 char *name;
25 int SubScripts[MAX_ARRAYDIM];
26 TYPEINFO TypeInfo;
27
28 DWORD dwAccess;
29
30 char *InitBuf;
31 char *ConstractParameter;
32
33 int source_code_address;
34
35
36 CMember( CClass *pobj_c, DWORD access, bool idConst, bool isRef, char *buffer, int NowLine=-1 );
37 CMember( CMember *pobj );
38 CMember();
39 ~CMember();
40
41 bool IsConst();
42 bool IsRef();
43 int GetSize();
44
45
46 static void InitStaticMember(void);
47};
48class CMethod{
49public:
50 SUBINFO *psi;
51 DWORD dwAccess;
52 BOOL bAbstract;
53 BOOL bVirtual;
54 bool isConst;
55
56 CClass *pobj_InheritsClass;
57
58 CMethod(CMethod *pobj);
59 CMethod();
60 ~CMethod();
61};
62class CDBClass;
63class CDebugSection;
64class CClass{
65 friend CMember;
66 friend CDBClass;
67 friend CDebugSection;
68
69 //静的メンバ情報
70 std::vector<CMember *>staticMembers;
71
72 //メソッド情報
73 std::vector<CMethod *> methods;
74 int ConstructorMemberSubIndex;
75 int CopyConstructorMemberSubIndex;
76 int DestructorMemberSubIndex;
77
78 //静的メソッド情報
79 std::vector<CMethod *> staticMethods;
80
81public:
82 //クラス名
83 char *name;
84
85 //継承クラスへのポインタ
86 CClass *pobj_InheritsClass;
87
88 //メンバ情報
89 CMember **ppobj_Member;
90 int iMemberNum;
91
92 //仮想関数の数
93 int vtbl_num;
94
95 //アラインメント値
96 int iAlign;
97
98
99public:
100 CClass(const char *name);
101 ~CClass();
102
103 //継承させる
104 void Inherits( CClass *pInheritsClass );
105
106 //メンバ、メソッドの追加
107 void AddMember( DWORD dwAccess, bool idConst, bool isRef, char *buffer );
108 void AddStaticMember( DWORD dwAccess, bool isConst, bool isRef, char *buffer, int NowLine );
109 void AddMethod( SUBINFO *psi,DWORD dwAccess, bool isConst, BOOL bAbstract, BOOL bVirtual );
110 void AddStaticMethod(SUBINFO *psi,DWORD dwAccess);
111
112 //重複チェック
113 BOOL DupliCheckAll(const char *name);
114 BOOL DupliCheckMember(const char *name);
115
116 //メソッド取得
117 CMethod *GetMethodInfo( SUBINFO *psi );
118 CMethod *GetStaticMethodInfo( SUBINFO *psi );
119
120 //メソッドの存在を確認
121 bool IsExistMethod( const char *name );
122 bool IsExistStaticMethod( const char *name );
123
124 //メソッドを列挙
125 void EnumStaticMethod( const char *methodName, std::vector<SUBINFO *> &subs ) const;
126 void EnumMethod( const char *methodName, std::vector<SUBINFO *> &subs ) const;
127 void EnumMethod( const BYTE idOperatorCalc, std::vector<SUBINFO *> &subs ) const;
128
129 //デフォルト コンストラクタ メソッドを取得
130 CMethod *GetConstructorMethod() const;
131
132 //デフォルト コピーコンストラクタ メソッドを取得
133 CMethod *GetCopyConstructorMethod() const;
134
135 //デストラクタ メソッドを取得
136 CMethod *GetDestructorMethod() const;
137
138
139 //vtbl
140private:
141 long vtbl_offset;
142 LONG_PTR AddVtblDataTable(SUBINFO **ppsi,int length);
143public:
144 int GetFuncNumInVtbl( const SUBINFO *psi ) const;
145 LONG_PTR GetVtblGlobalOffset(void);
146 void ActionVtblSchedule(LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection);
147 bool IsAbstract();
148
149
150 //コンストラクタをコンパイルしているかどうかのチェックフラグ
151private:
152 bool isCompilingConstructor;
153public:
154 void NotifyStartConstructorCompile();
155 void NotifyFinishConstructorCompile();
156 bool IsCompilingConstructor();
157
158 //デストラクタをコンパイルしているかどうかのチェックフラグ
159private:
160 bool isCompilingDestructor;
161public:
162 void NotifyStartDestructorCompile();
163 void NotifyFinishDestructorCompile();
164 bool IsCompilingDestructor();
165
166
167 //自身と等しいクラスかどうかを確認
168 bool IsEquals( CClass *pClass );
169
170 //自身の派生クラスかどうかを確認
171 bool IsSubClass( CClass *pClass );
172
173
174 //線形リスト用
175 CClass *pobj_NextClass;
176};
177
178#define MAX_CLASS_HASH 65535
179class CDBClass{
180 int hash(const char *name);
181 void DestroyClass(CClass *pobj_c);
182public:
183 CClass *pobj_ClassHash[MAX_CLASS_HASH];
184
185 CDBClass();
186 ~CDBClass();
187
188 CClass *check(const char *name);
189
190 CClass *AddClass(const char *name,int NowLine);
191
192 void ActionVtblSchedule(LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection);
193
194private:
195 void AddMethod(CClass *pobj_c, DWORD dwAccess, BOOL bStatic, bool isConst, BOOL bAbstract,
196 BOOL bVirtual, BOOL bOverride, char *buffer, int NowLine);
197 BOOL MemberVar_LoopRefCheck(CClass *pobj_c);
198public:
199 void InitNames(void);
200 void GetClass_recur(const char *lpszInheritsClass);
201 void GetObjectClassInfo(void);
202
203
204 /////////////////////////////
205 // 現在コンパイル中の情報
206 /////////////////////////////
207private:
208 CClass *pCompilingClass;
209 CMethod *pCompilingMethod;
210public:
211 //コンパイル開始の通知を受け取るメソッド
212 void StartCompile( SUBINFO *psi );
213
214 //現在コンパイル中のメソッド情報を取得
215 CClass *GetNowCompilingClass();
216 CMethod *GetNowCompilingMethodInfo();
217
218
219 /////////////////////
220 // イテレータ
221 /////////////////////
222private:
223 CClass **ppobj_IteClass;
224 int iIteMaxNum;
225 int iIteNextNum;
226public:
227 void Iterator_Reset(void);
228 BOOL Iterator_HasNext(void);
229 CClass *Iterator_GetNext(void);
230 int Iterator_GetMaxCount(void);
231};
232
233
234extern CDBClass *pobj_DBClass;
235extern CClass *pobj_CompilingClass;
Note: See TracBrowser for help on using the repository browser.