source: dev/trunk/abdev/BasicCompiler_Common/include/Linker.h@ 257

Last change on this file since 257 was 257, checked in by dai_9181, 17 years ago
File size: 1.3 KB
Line 
1#pragma once
2
3class ObjectModule : public Jenga::Common::BoostSerializationSupport<ObjectModule>
4{
5public:
6 // メタ情報
7 Meta meta;
8
9 // グローバル領域のネイティブコード
10 NativeCode globalNativeCode;
11
12 // データテーブル
13 DataTable dataTable;
14
15 // XMLシリアライズ用
16private:
17 virtual const char *RootTagName() const
18 {
19 return "objectModule";
20 }
21 friend class boost::serialization::access;
22 template<class Archive> void serialize(Archive& ar, const unsigned int version)
23 {
24 trace_for_serialize( "serializing - objectModule" );
25
26 ar & BOOST_SERIALIZATION_NVP( meta );
27 ar & BOOST_SERIALIZATION_NVP( globalNativeCode );
28 ar & BOOST_SERIALIZATION_NVP( dataTable );
29 }
30};
31
32class Linker
33{
34 // データテーブルスケジュール
35 void ResolveDataTableSchedules( long dataSectionBaseOffset );
36
37 // DLL関数スケジュール
38 void ResolveDllProcSchedules( long codeSectionBaseOffset, long importSectionBaseOffset );
39
40 // ユーザ定義関数スケジュール
41 void ResolveUserProcSchedules( long codeSectionBaseOffset );
42
43 // グローバル変数スケジュール
44 void ResolveGlobalVarSchedules( long rwSectionBaseOffset );
45
46 NativeCode nativeCode;
47
48 DWORD imageBase;
49
50public:
51 Linker()
52 {
53 }
54
55 void SetImageBase( DWORD imageBase )
56 {
57 this->imageBase = imageBase;
58 }
59
60 // リンク
61 void Link( vector<ObjectModule *> &objectModules );
62};
Note: See TracBrowser for help on using the repository browser.