source: dev/BasicCompiler_Common/Class.h@ 63

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

CClass::GetSize、CClass::GetMemberOffsetを追加

File size: 5.4 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 int GetSize() const;
140
141 // メンバのオフセットを取得
142 int GetMemberOffset( const char *memberName, int *pMemberNum ) const;
143
144private:
145 // アラインメント値を取得
146 int GetAlignment() const;
147
148
149 //vtbl
150private:
151 long vtbl_offset;
152public:
153 int GetFuncNumInVtbl( const SUBINFO *psi ) const;
154 LONG_PTR GetVtblGlobalOffset(void);
155 void ActionVtblSchedule(LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection);
156 bool IsAbstract();
157
158
159 //コンストラクタをコンパイルしているかどうかのチェックフラグ
160private:
161 bool isCompilingConstructor;
162public:
163 void NotifyStartConstructorCompile();
164 void NotifyFinishConstructorCompile();
165 bool IsCompilingConstructor();
166
167 //デストラクタをコンパイルしているかどうかのチェックフラグ
168private:
169 bool isCompilingDestructor;
170public:
171 void NotifyStartDestructorCompile();
172 void NotifyFinishDestructorCompile();
173 bool IsCompilingDestructor();
174
175
176 //自身と等しいクラスかどうかを確認
177 bool IsEquals( CClass *pClass );
178
179 //自身の派生クラスかどうかを確認
180 bool IsSubClass( CClass *pClass );
181
182 //自身と等しいまたは派生クラスかどうかを確認
183 bool IsEqualsOrSubClass( CClass *pClass );
184
185
186 //線形リスト用
187 CClass *pobj_NextClass;
188};
189
190#define MAX_CLASS_HASH 65535
191class CDBClass{
192 int hash(const char *name);
193 void DestroyClass(CClass *pobj_c);
194public:
195 CClass *pobj_ClassHash[MAX_CLASS_HASH];
196
197 CDBClass();
198 ~CDBClass();
199
200 CClass *check(const char *name);
201
202 CClass *AddClass(const char *name,int NowLine);
203
204 void ActionVtblSchedule(LONG_PTR ImageBase, LONG_PTR MemPos_CodeSection);
205
206private:
207 void AddMethod(CClass *pobj_c, DWORD dwAccess, BOOL bStatic, bool isConst, BOOL bAbstract,
208 BOOL bVirtual, BOOL bOverride, char *buffer, int NowLine);
209 BOOL MemberVar_LoopRefCheck(CClass *pobj_c);
210public:
211 void InitNames(void);
212 void GetClass_recur(const char *lpszInheritsClass);
213 void GetObjectClassInfo(void);
214
215
216 /////////////////////////////
217 // 現在コンパイル中の情報
218 /////////////////////////////
219private:
220 CClass *pCompilingClass;
221 CMethod *pCompilingMethod;
222public:
223 //コンパイル開始の通知を受け取るメソッド
224 void StartCompile( SUBINFO *psi );
225
226 //現在コンパイル中のメソッド情報を取得
227 CClass *GetNowCompilingClass();
228 CMethod *GetNowCompilingMethodInfo();
229
230
231 /////////////////////
232 // イテレータ
233 /////////////////////
234private:
235 CClass **ppobj_IteClass;
236 int iIteMaxNum;
237 int iIteNextNum;
238public:
239 void Iterator_Reset(void);
240 BOOL Iterator_HasNext(void);
241 CClass *Iterator_GetNext(void);
242 int Iterator_GetMaxCount(void);
243};
244
245
246extern CDBClass *pobj_DBClass;
247extern CClass *pobj_CompilingClass;
Note: See TracBrowser for help on using the repository browser.