1 | #pragma once
|
---|
2 |
|
---|
3 | #include <CodeGenerator.h>
|
---|
4 | #include <NamespaceSupporter.h>
|
---|
5 | #include <Meta.h>
|
---|
6 | #include <DataTable.h>
|
---|
7 | #include <CodeGenerator.h>
|
---|
8 | #include <Linker.h>
|
---|
9 |
|
---|
10 | class Compiler
|
---|
11 | {
|
---|
12 | // 名前空間サポート
|
---|
13 | NamespaceSupporter namespaceSupporter;
|
---|
14 |
|
---|
15 | // オブジェクトモジュール
|
---|
16 | ObjectModule *pObjectModule;
|
---|
17 | ObjectModule *pNowObjectModule;
|
---|
18 |
|
---|
19 | public:
|
---|
20 |
|
---|
21 | Compiler()
|
---|
22 | : pObjectModule( new ObjectModule )
|
---|
23 | , pNowObjectModule( pObjectModule )
|
---|
24 | , targetModuleType( Exe )
|
---|
25 | {
|
---|
26 | }
|
---|
27 | ~Compiler()
|
---|
28 | {
|
---|
29 | delete pObjectModule;
|
---|
30 | }
|
---|
31 |
|
---|
32 | NamespaceSupporter &GetNamespaceSupporter()
|
---|
33 | {
|
---|
34 | return namespaceSupporter;
|
---|
35 | }
|
---|
36 |
|
---|
37 | // ソースコード
|
---|
38 | BasicSource source;
|
---|
39 |
|
---|
40 | // コード生成機構
|
---|
41 | CodeGenerator codeGenerator;
|
---|
42 |
|
---|
43 | // リンカ
|
---|
44 | Linker linker;
|
---|
45 |
|
---|
46 | // 静的リンクするオブジェクトファイル
|
---|
47 | std::vector<std::string> staticLibraryFilePaths;
|
---|
48 |
|
---|
49 | // オブジェクトモジュール
|
---|
50 | ObjectModule &GetObjectModule()
|
---|
51 | {
|
---|
52 | return *pNowObjectModule;
|
---|
53 | }
|
---|
54 | void SelectObjectModule( ObjectModule &objectModule )
|
---|
55 | {
|
---|
56 | pNowObjectModule = &objectModule;
|
---|
57 | }
|
---|
58 |
|
---|
59 |
|
---|
60 | // ターゲット
|
---|
61 | enum TargetModuleType
|
---|
62 | {
|
---|
63 | Exe,
|
---|
64 | Dll,
|
---|
65 | StaticLibrary,
|
---|
66 | };
|
---|
67 |
|
---|
68 | TargetModuleType targetModuleType;
|
---|
69 |
|
---|
70 | bool IsExe() const
|
---|
71 | {
|
---|
72 | if( targetModuleType == Exe )
|
---|
73 | {
|
---|
74 | return true;
|
---|
75 | }
|
---|
76 | return false;
|
---|
77 | }
|
---|
78 | bool IsDll() const
|
---|
79 | {
|
---|
80 | if( targetModuleType == Dll )
|
---|
81 | {
|
---|
82 | return true;
|
---|
83 | }
|
---|
84 | return false;
|
---|
85 | }
|
---|
86 | bool IsStaticLibrary() const
|
---|
87 | {
|
---|
88 | if( targetModuleType == StaticLibrary )
|
---|
89 | {
|
---|
90 | return true;
|
---|
91 | }
|
---|
92 | return false;
|
---|
93 | }
|
---|
94 | void SetTargetModuleType( TargetModuleType targetModuleType )
|
---|
95 | {
|
---|
96 | this->targetModuleType = targetModuleType;
|
---|
97 | }
|
---|
98 |
|
---|
99 |
|
---|
100 |
|
---|
101 | static bool StringToType( const std::string &typeName, Type &type );
|
---|
102 | static const std::string TypeToString( const Type &type );
|
---|
103 |
|
---|
104 | // コンパイル中のクラス
|
---|
105 | const CClass *pCompilingClass;
|
---|
106 | };
|
---|
107 |
|
---|
108 | extern Compiler compiler;
|
---|