@@ -31,6 +31,7 @@ using namespace clang;
31
31
32
32
static FrontendAction *CreateFrontendBaseAction (CompilerInstance &CI) {
33
33
using namespace clang ::frontend;
34
+ StringRef Action (" unknown" );
34
35
35
36
switch (CI.getFrontendOpts ().ProgramAction ) {
36
37
case ASTDeclList: return new ASTDeclListAction ();
@@ -42,12 +43,20 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
42
43
case DumpTokens: return new DumpTokensAction ();
43
44
case EmitAssembly: return new EmitAssemblyAction ();
44
45
case EmitBC: return new EmitBCAction ();
46
+ #ifdef CLANG_ENABLE_REWRITER
45
47
case EmitHTML: return new HTMLPrintAction ();
48
+ #else
49
+ case EmitHTML: Action = " EmitHTML" ; break ;
50
+ #endif
46
51
case EmitLLVM: return new EmitLLVMAction ();
47
52
case EmitLLVMOnly: return new EmitLLVMOnlyAction ();
48
53
case EmitCodeGenOnly: return new EmitCodeGenOnlyAction ();
49
54
case EmitObj: return new EmitObjAction ();
55
+ #ifdef CLANG_ENABLE_REWRITER
50
56
case FixIt: return new FixItAction ();
57
+ #else
58
+ case FixIt: Action = " FixIt" ; break ;
59
+ #endif
51
60
case GenerateModule: return new GenerateModuleAction;
52
61
case GeneratePCH: return new GeneratePCHAction;
53
62
case GeneratePTH: return new GeneratePTHAction ();
@@ -74,19 +83,46 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
74
83
case PrintDeclContext: return new DeclContextPrintAction ();
75
84
case PrintPreamble: return new PrintPreambleAction ();
76
85
case PrintPreprocessedInput: {
77
- if (CI.getPreprocessorOutputOpts ().RewriteIncludes )
86
+ if (CI.getPreprocessorOutputOpts ().RewriteIncludes ) {
87
+ #ifdef CLANG_ENABLE_REWRITER
78
88
return new RewriteIncludesAction ();
89
+ #else
90
+ Action = " RewriteIncludesAction" ;
91
+ break ;
92
+ #endif
93
+ }
79
94
return new PrintPreprocessedAction ();
80
95
}
81
96
97
+ #ifdef CLANG_ENABLE_REWRITER
82
98
case RewriteMacros: return new RewriteMacrosAction ();
83
99
case RewriteObjC: return new RewriteObjCAction ();
84
100
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
86
107
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
87
116
case RunPreprocessorOnly: return new PreprocessOnlyAction ();
88
117
}
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
89
124
llvm_unreachable (" Invalid program action!" );
125
+ #endif
90
126
}
91
127
92
128
static FrontendAction *CreateFrontendAction (CompilerInstance &CI) {
@@ -97,10 +133,13 @@ static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
97
133
98
134
const FrontendOptions &FEOpts = CI.getFrontendOpts ();
99
135
136
+ #ifdef CLANG_ENABLE_REWRITER
100
137
if (FEOpts.FixAndRecompile ) {
101
138
Act = new FixItRecompile (Act);
102
139
}
140
+ #endif
103
141
142
+ #ifdef CLANG_ENABLE_ARCMT
104
143
// Potentially wrap the base FE action in an ARC Migrate Tool action.
105
144
switch (FEOpts.ARCMTAction ) {
106
145
case FrontendOptions::ARCMT_None:
@@ -124,6 +163,7 @@ static FrontendAction *CreateFrontendAction(CompilerInstance &CI) {
124
163
FEOpts.ObjCMTAction & ~FrontendOptions::ObjCMT_Literals,
125
164
FEOpts.ObjCMTAction & ~FrontendOptions::ObjCMT_Subscripting);
126
165
}
166
+ #endif
127
167
128
168
// If there are any AST files to merge, create a frontend action
129
169
// adaptor to perform the merge.
@@ -176,12 +216,14 @@ bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) {
176
216
llvm::cl::ParseCommandLineOptions (NumArgs + 1 , Args);
177
217
}
178
218
219
+ #ifdef CLANG_ENABLE_STATIC_ANALYZER
179
220
// Honor -analyzer-checker-help.
180
221
// This should happen AFTER plugins have been loaded!
181
222
if (Clang->getAnalyzerOpts ()->ShowCheckerHelp ) {
182
223
ento::printCheckerHelp (llvm::outs (), Clang->getFrontendOpts ().Plugins );
183
224
return 0 ;
184
225
}
226
+ #endif
185
227
186
228
// If there were errors in processing arguments, don't do anything else.
187
229
bool Success = false ;
0 commit comments