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

Commit 8c0b378

Browse files
committed
Add a -rewrite-includes option, which is similar to -rewrite-macros, but only expands #include directives.
Patch contributed by Lubos Lunak (l.lunax@suse.cz). Review by Matt Beaumont-Gay (matthewbg@google.com). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158093 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 80d7c52 commit 8c0b378

21 files changed

+591
-2
lines changed

include/clang/Driver/CC1Options.td

+2
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,8 @@ def rewrite_test : Flag<"-rewrite-test">,
332332
HelpText<"Rewriter playground">;
333333
def rewrite_macros : Flag<"-rewrite-macros">,
334334
HelpText<"Expand macros without full preprocessing">;
335+
def rewrite_includes : Flag<"-rewrite-includes">,
336+
HelpText<"Expand includes without full preprocessing">;
335337
def migrate : Flag<"-migrate">,
336338
HelpText<"Migrate source code">;
337339
}

include/clang/Frontend/FrontendOptions.h

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ namespace frontend {
4343
PrintPreamble, ///< Print the "preamble" of the input file
4444
PrintPreprocessedInput, ///< -E mode.
4545
RewriteMacros, ///< Expand macros but not #includes.
46+
RewriteIncludes, ///< Expand #includes but not macros.
4647
RewriteObjC, ///< ObjC->C Rewriter.
4748
RewriteTest, ///< Rewriter playground
4849
RunAnalysis, ///< Run one or more source code analyses.

include/clang/Lex/Preprocessor.h

+13
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,13 @@ class Preprocessor : public RefCountedBase<Preprocessor> {
121121
/// DisableMacroExpansion - True if macro expansion is disabled.
122122
bool DisableMacroExpansion : 1;
123123

124+
/// MacroExpansionInDirectivesOverride - Temporarily disables
125+
/// DisableMacroExpansion (i.e. enables expansion) when parsing preprocessor
126+
/// directives.
127+
bool MacroExpansionInDirectivesOverride : 1;
128+
129+
class ResetMacroExpansionHelper;
130+
124131
/// \brief Whether we have already loaded macros from the external source.
125132
mutable bool ReadMacrosFromExternalSource : 1;
126133

@@ -643,6 +650,12 @@ class Preprocessor : public RefCountedBase<Preprocessor> {
643650
while (Result.getKind() == tok::comment);
644651
}
645652

653+
/// Disables macro expansion everywhere except for preprocessor directives.
654+
void SetMacroExpansionOnlyInDirectives() {
655+
DisableMacroExpansion = true;
656+
MacroExpansionInDirectivesOverride = true;
657+
}
658+
646659
/// LookAhead - This peeks ahead N tokens and returns that token without
647660
/// consuming any tokens. LookAhead(0) returns the next token that would be
648661
/// returned by Lex(), LookAhead(1) returns the token after it, etc. This

include/clang/Rewrite/FrontendActions.h

+5
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ class RewriteTestAction : public PreprocessorFrontendAction {
7373
void ExecuteAction();
7474
};
7575

76+
class RewriteIncludesAction : public PreprocessorFrontendAction {
77+
protected:
78+
void ExecuteAction();
79+
};
80+
7681
} // end namespace clang
7782

7883
#endif

include/clang/Rewrite/Rewriters.h

+5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@
1818

1919
namespace clang {
2020
class Preprocessor;
21+
class PreprocessorOutputOptions;
2122

2223
/// RewriteMacrosInInput - Implement -rewrite-macros mode.
2324
void RewriteMacrosInInput(Preprocessor &PP, raw_ostream *OS);
2425

2526
/// DoRewriteTest - A simple test for the TokenRewriter class.
2627
void DoRewriteTest(Preprocessor &PP, raw_ostream *OS);
2728

29+
/// RewriteIncludesInInput - Implement -rewrite-includes mode.
30+
void RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS,
31+
const PreprocessorOutputOptions &Opts);
32+
2833
} // end namespace clang
2934

3035
#endif

lib/Frontend/CompilerInvocation.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@ static const char *getActionName(frontend::ActionKind Kind) {
445445
case frontend::PrintPreamble: return "-print-preamble";
446446
case frontend::PrintPreprocessedInput: return "-E";
447447
case frontend::RewriteMacros: return "-rewrite-macros";
448+
case frontend::RewriteIncludes: return "-rewrite-includes";
448449
case frontend::RewriteObjC: return "-rewrite-objc";
449450
case frontend::RewriteTest: return "-rewrite-test";
450451
case frontend::RunAnalysis: return "-analyze";
@@ -1435,6 +1436,8 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,
14351436
Opts.ProgramAction = frontend::PrintPreprocessedInput; break;
14361437
case OPT_rewrite_macros:
14371438
Opts.ProgramAction = frontend::RewriteMacros; break;
1439+
case OPT_rewrite_includes:
1440+
Opts.ProgramAction = frontend::RewriteIncludes; break;
14381441
case OPT_rewrite_objc:
14391442
Opts.ProgramAction = frontend::RewriteObjC; break;
14401443
case OPT_rewrite_test:

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
7373
case PrintPreamble: return new PrintPreambleAction();
7474
case PrintPreprocessedInput: return new PrintPreprocessedAction();
7575
case RewriteMacros: return new RewriteMacrosAction();
76+
case RewriteIncludes: return new RewriteIncludesAction();
7677
case RewriteObjC: return new RewriteObjCAction();
7778
case RewriteTest: return new RewriteTestAction();
7879
case RunAnalysis: return new ento::AnalysisAction();

lib/Lex/Lexer.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) {
20222022
// directly.
20232023
FormTokenWithChars(Result, CurPtr, tok::comment);
20242024

2025-
if (!ParsingPreprocessorDirective)
2025+
if (!ParsingPreprocessorDirective || LexingRawMode)
20262026
return true;
20272027

20282028
// If this BCPL-style comment is in a macro definition, transmogrify it into
@@ -2626,7 +2626,8 @@ void Lexer::LexTokenInternal(Token &Result) {
26262626
ParsingPreprocessorDirective = false;
26272627

26282628
// Restore comment saving mode, in case it was disabled for directive.
2629-
SetCommentRetentionState(PP->getCommentRetentionState());
2629+
if (!LexingRawMode)
2630+
SetCommentRetentionState(PP->getCommentRetentionState());
26302631

26312632
// Since we consumed a newline, we are back at the start of a line.
26322633
IsAtStartOfLine = true;

lib/Lex/PPDirectives.cpp

+19
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,21 @@ const FileEntry *Preprocessor::LookupFile(
553553
// Preprocessor Directive Handling.
554554
//===----------------------------------------------------------------------===//
555555

556+
class Preprocessor::ResetMacroExpansionHelper {
557+
public:
558+
ResetMacroExpansionHelper(Preprocessor *pp)
559+
: PP(pp), save(pp->DisableMacroExpansion) {
560+
if (pp->MacroExpansionInDirectivesOverride)
561+
pp->DisableMacroExpansion = false;
562+
}
563+
~ResetMacroExpansionHelper() {
564+
PP->DisableMacroExpansion = save;
565+
}
566+
private:
567+
Preprocessor *PP;
568+
bool save;
569+
};
570+
556571
/// HandleDirective - This callback is invoked when the lexer sees a # token
557572
/// at the start of a line. This consumes the directive, modifies the
558573
/// lexer/preprocessor state, and advances the lexer(s) so that the next token
@@ -604,6 +619,10 @@ void Preprocessor::HandleDirective(Token &Result) {
604619
Diag(Result, diag::ext_embedded_directive);
605620
}
606621

622+
// Temporarily enable macro expansion if set so
623+
// and reset to previous state when returning from this function.
624+
ResetMacroExpansionHelper helper(this);
625+
607626
TryAgain:
608627
switch (Result.getKind()) {
609628
case tok::eod:

lib/Lex/Preprocessor.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Preprocessor::Preprocessor(DiagnosticsEngine &diags, LangOptions &opts,
8686

8787
// Macro expansion is enabled.
8888
DisableMacroExpansion = false;
89+
MacroExpansionInDirectivesOverride = false;
8990
InMacroArgs = false;
9091
InMacroArgPreExpansion = false;
9192
NumCachedTokenLexers = 0;

lib/Rewrite/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ add_clang_library(clangRewrite
66
FrontendActions.cpp
77
HTMLPrint.cpp
88
HTMLRewrite.cpp
9+
InclusionRewriter.cpp
910
RewriteMacros.cpp
1011
RewriteModernObjC.cpp
1112
RewriteObjC.cpp

lib/Rewrite/FrontendActions.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -181,3 +181,12 @@ void RewriteTestAction::ExecuteAction() {
181181

182182
DoRewriteTest(CI.getPreprocessor(), OS);
183183
}
184+
185+
void RewriteIncludesAction::ExecuteAction() {
186+
CompilerInstance &CI = getCompilerInstance();
187+
raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile());
188+
if (!OS) return;
189+
190+
RewriteIncludesInInput(CI.getPreprocessor(), OS,
191+
CI.getPreprocessorOutputOpts());
192+
}

0 commit comments

Comments
 (0)