Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit fc2929f

Browse files
committed
Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user
specifies not to. Dont build ASTMatchers with Rewriter disabled and StaticAnalyzer when it's disabled. Without all those three, the clang binary shrinks (x86_64) from ~36MB to ~32MB (unstripped). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170135 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 702baef commit fc2929f

File tree

6 files changed

+106
-13
lines changed

6 files changed

+106
-13
lines changed

include/clang/Basic/DiagnosticFrontendKinds.td

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def warn_fe_cc_log_diagnostics_failure : Warning<
6060
"unable to open CC_LOG_DIAGNOSTICS file: %0 (using stderr)">;
6161
def err_fe_no_pch_in_dir : Error<
6262
"no suitable precompiled header file found in directory '%0'">;
63+
def err_fe_action_not_available : Error<
64+
"action %0 not compiled in">;
6365

6466
def warn_fe_serialized_diag_failure : Warning<
6567
"unable to open file %0 for serializing diagnostics (%1)">,

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+44-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ using namespace clang;
3131

3232
static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
3333
using namespace clang::frontend;
34+
StringRef Action("unknown");
3435

3536
switch (CI.getFrontendOpts().ProgramAction) {
3637
case ASTDeclList: return new ASTDeclListAction();
@@ -42,12 +43,20 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
4243
case DumpTokens: return new DumpTokensAction();
4344
case EmitAssembly: return new EmitAssemblyAction();
4445
case EmitBC: return new EmitBCAction();
46+
#ifdef CLANG_ENABLE_REWRITER
4547
case EmitHTML: return new HTMLPrintAction();
48+
#else
49+
case EmitHTML: Action = "EmitHTML"; break;
50+
#endif
4651
case EmitLLVM: return new EmitLLVMAction();
4752
case EmitLLVMOnly: return new EmitLLVMOnlyAction();
4853
case EmitCodeGenOnly: return new EmitCodeGenOnlyAction();
4954
case EmitObj: return new EmitObjAction();
55+
#ifdef CLANG_ENABLE_REWRITER
5056
case FixIt: return new FixItAction();
57+
#else
58+
case FixIt: Action = "FixIt"; break;
59+
#endif
5160
case GenerateModule: return new GenerateModuleAction;
5261
case GeneratePCH: return new GeneratePCHAction;
5362
case GeneratePTH: return new GeneratePTHAction();
@@ -74,19 +83,46 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
7483
case PrintDeclContext: return new DeclContextPrintAction();
7584
case PrintPreamble: return new PrintPreambleAction();
7685
case PrintPreprocessedInput: {
77-
if (CI.getPreprocessorOutputOpts().RewriteIncludes)
86+
if (CI.getPreprocessorOutputOpts().RewriteIncludes) {
87+
#ifdef CLANG_ENABLE_REWRITER
7888
return new RewriteIncludesAction();
89+
#else
90+
Action = "RewriteIncludesAction";
91+
break;
92+
#endif
93+
}
7994
return new PrintPreprocessedAction();
8095
}
8196

97+
#ifdef CLANG_ENABLE_REWRITER
8298
case RewriteMacros: return new RewriteMacrosAction();
8399
case RewriteObjC: return new RewriteObjCAction();
84100
case RewriteTest: return new RewriteTestAction();
85-
case RunAnalysis: return new ento::AnalysisAction();
101+
#else
102+
case RewriteMacros: Action = "RewriteMacros"; break;
103+
case RewriteObjC: Action = "RewriteObjC"; break;
104+
case RewriteTest: Action = "RewriteTest"; break;
105+
#endif
106+
#ifdef CLANG_ENABLE_ARCMT
86107
case MigrateSource: return new arcmt::MigrateSourceAction();
108+
#else
109+
case MigrateSource: Action = "MigrateSource"; break;
110+
#endif
111+
#ifdef CLANG_ENABLE_STATIC_ANALYZER
112+
case RunAnalysis: return new ento::AnalysisAction();
113+
#else
114+
case RunAnalysis: Action = "RunAnalysis"; break;
115+
#endif
87116
case RunPreprocessorOnly: return new PreprocessOnlyAction();
88117
}
118+
119+
#if !defined(CLANG_ENABLE_ARCMT) || !defined(CLANG_ENABLE_STATIC_ANALYZER) \
120+
|| !defined(CLANG_ENABLE_REWRITER)
121+
CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
122+
return 0;
123+
#else
89124
llvm_unreachable("Invalid program action!");
125+
#endif
90126
}
91127

92128
static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
@@ -97,10 +133,13 @@ static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
97133

98134
const FrontendOptions &FEOpts = CI.getFrontendOpts();
99135

136+
#ifdef CLANG_ENABLE_REWRITER
100137
if (FEOpts.FixAndRecompile) {
101138
Act = new FixItRecompile(Act);
102139
}
140+
#endif
103141

142+
#ifdef CLANG_ENABLE_ARCMT
104143
// Potentially wrap the base FE action in an ARC Migrate Tool action.
105144
switch (FEOpts.ARCMTAction) {
106145
case FrontendOptions::ARCMT_None:
@@ -124,6 +163,7 @@ static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
124163
FEOpts.ObjCMTAction & ~FrontendOptions::ObjCMT_Literals,
125164
FEOpts.ObjCMTAction & ~FrontendOptions::ObjCMT_Subscripting);
126165
}
166+
#endif
127167

128168
// If there are any AST files to merge, create a frontend action
129169
// adaptor to perform the merge.
@@ -176,12 +216,14 @@ bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) {
176216
llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
177217
}
178218

219+
#ifdef CLANG_ENABLE_STATIC_ANALYZER
179220
// Honor -analyzer-checker-help.
180221
// This should happen AFTER plugins have been loaded!
181222
if (Clang->getAnalyzerOpts()->ShowCheckerHelp) {
182223
ento::printCheckerHelp(llvm::outs(), Clang->getFrontendOpts().Plugins);
183224
return 0;
184225
}
226+
#endif
185227

186228
// If there were errors in processing arguments, don't do anything else.
187229
bool Success = false;

lib/FrontendTool/Makefile

+15
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,18 @@ CLANG_LEVEL := ../..
1111
LIBRARYNAME := clangFrontendTool
1212

1313
include $(CLANG_LEVEL)/Makefile
14+
include $(CLANG_LEVEL)/../../Makefile.config
15+
16+
ifeq ($(ENABLE_CLANG_ARCMT),1)
17+
CXX.Flags += -DCLANG_ENABLE_ARCMT
18+
endif
19+
20+
ifeq ($(ENABLE_CLANG_REWRITER),1)
21+
CXX.Flags += -DCLANG_ENABLE_REWRITER
22+
endif
23+
24+
ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
25+
CXX.Flags += -DCLANG_ENABLE_STATIC_ANALYZER
26+
endif
27+
28+

lib/Makefile

+14-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,19 @@
88
##===----------------------------------------------------------------------===##
99
CLANG_LEVEL := ..
1010

11-
PARALLEL_DIRS = Headers Basic Lex Parse AST ASTMatchers Sema CodeGen Analysis \
12-
StaticAnalyzer Edit Rewrite ARCMigrate Serialization Frontend \
13-
FrontendTool Tooling Driver Format
11+
# ARCMigrate and Rewrite are always needed because of libclang.
12+
PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis Frontend \
13+
FrontendTool Tooling Driver Format Edit ARCMigrate Rewrite \
14+
Serialization
1415

15-
include $(CLANG_LEVEL)/Makefile
16+
include $(CLANG_LEVEL)/../../Makefile.config
17+
18+
ifeq ($(ENABLE_CLANG_REWRITER),1)
19+
PARALLEL_DIRS += ASTMatchers
20+
endif
1621

22+
ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
23+
PARALLEL_DIRS += StaticAnalyzer
24+
endif
25+
26+
include $(CLANG_LEVEL)/Makefile

tools/driver/Makefile

+16-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,22 @@ include $(CLANG_LEVEL)/../../Makefile.config
3232
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
3333
instrumentation ipo linker selectiondag
3434
USEDLIBS = clangFrontendTool.a clangFrontend.a clangDriver.a \
35-
clangSerialization.a clangCodeGen.a clangParse.a clangSema.a \
36-
clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a \
37-
clangStaticAnalyzerCore.a \
38-
clangAnalysis.a clangARCMigrate.a \
39-
clangRewriteFrontend.a clangRewriteCore.a \
40-
clangEdit.a clangAST.a clangLex.a clangBasic.a
35+
clangSerialization.a clangCodeGen.a clangParse.a clangSema.a
36+
37+
ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
38+
USEDLIBS += clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a \
39+
clangStaticAnalyzerCore.a
40+
endif
41+
42+
ifeq ($(ENABLE_CLANG_ARCMT),1)
43+
USEDLIBS += clangARCMigrate.a
44+
endif
45+
46+
ifeq ($(ENABLE_CLANG_REWRITER),1)
47+
USEDLIBS += clangRewriteFrontend.a clangRewriteCore.a
48+
endif
49+
50+
USEDLIBS += clangAnalysis.a clangEdit.a clangAST.a clangBasic.a clangLex.a
4151

4252
include $(CLANG_LEVEL)/Makefile
4353

unittests/Makefile

+15-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,21 @@ ifndef CLANG_LEVEL
1414

1515
IS_UNITTEST_LEVEL := 1
1616
CLANG_LEVEL := ..
17-
PARALLEL_DIRS = ASTMatchers Basic AST Frontend Lex Tooling Format
17+
PARALLEL_DIRS = Basic Lex
18+
19+
include $(CLANG_LEVEL)/../..//Makefile.config
20+
21+
ifeq ($(ENABLE_CLANG_REWRITER),1)
22+
PARALLEL_DIRS += Format
23+
endif
24+
25+
ifeq ($(ENABLE_CLANG_REWRITER),1)
26+
PARALLEL_DIRS += ASTMatchers AST Tooling
27+
endif
28+
29+
ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
30+
PARALLEL_DIRS += Frontend
31+
endif
1832

1933
endif # CLANG_LEVEL
2034

0 commit comments

Comments
 (0)