aboutsummaryrefslogtreecommitdiff
path: root/tools/libclang/Indexing.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-10-02 16:10:41 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-10-02 16:10:41 +0000
commit3fe97781ad5f31dbfd9348c9488b93a7c01d7818 (patch)
tree850bf1fcd8ea6974a36961cefc176004f5d3c0f8 /tools/libclang/Indexing.cpp
parent2c3e05c266de0d4c465b58ffd129bd0b31604368 (diff)
[libclang] Even though we disable the preprocessing record during indexing,
make sure that it gets enabled for when a module needs to be created. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/Indexing.cpp')
-rw-r--r--tools/libclang/Indexing.cpp23
1 files changed, 18 insertions, 5 deletions
diff --git a/tools/libclang/Indexing.cpp b/tools/libclang/Indexing.cpp
index efae7eecd8..963e002643 100644
--- a/tools/libclang/Indexing.cpp
+++ b/tools/libclang/Indexing.cpp
@@ -192,10 +192,20 @@ public:
unsigned indexOptions,
CXTranslationUnit cxTU)
: IndexCtx(clientData, indexCallbacks, indexOptions, cxTU),
- CXTU(cxTU) { }
+ CXTU(cxTU), EnablePPDetailedRecordForModules(false) { }
+
+ bool EnablePPDetailedRecordForModules;
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
StringRef InFile) {
+ // We usually disable the preprocessing record for indexing even if the
+ // original preprocessing options had it enabled. Now that the indexing
+ // Preprocessor has been created (without a preprocessing record), re-enable
+ // the option in case modules are enabled, so that the detailed record
+ // option can be propagated when the module file is generated.
+ if (CI.getLangOpts().Modules && EnablePPDetailedRecordForModules)
+ CI.getPreprocessorOpts().DetailedRecord = true;
+
IndexCtx.setASTContext(CI.getASTContext());
Preprocessor &PP = CI.getPreprocessor();
PP.addPPCallbacks(new IndexPPCallbacks(PP, IndexCtx));
@@ -353,9 +363,6 @@ static void clang_indexSourceFile_Impl(void *UserData) {
// precompiled headers are involved), we disable it.
CInvok->getLangOpts()->SpellChecking = false;
- if (!requestedToGetTU)
- CInvok->getPreprocessorOpts().DetailedRecord = false;
-
if (index_options & CXIndexOpt_SuppressWarnings)
CInvok->getDiagnosticOpts().IgnoreWarnings = true;
@@ -381,7 +388,6 @@ static void clang_indexSourceFile_Impl(void *UserData) {
bool PrecompilePreamble = false;
bool CacheCodeCompletionResults = false;
PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
- PPOpts.DetailedRecord = false;
PPOpts.AllowPCHWithCompilerErrors = true;
if (requestedToGetTU) {
@@ -395,6 +401,13 @@ static void clang_indexSourceFile_Impl(void *UserData) {
}
}
+ IndexAction->EnablePPDetailedRecordForModules
+ = PPOpts.DetailedRecord ||
+ (TU_options & CXTranslationUnit_DetailedPreprocessingRecord);
+
+ if (!requestedToGetTU)
+ PPOpts.DetailedRecord = false;
+
DiagnosticErrorTrap DiagTrap(*Diags);
bool Success = ASTUnit::LoadFromCompilerInvocationAction(CInvok.getPtr(), Diags,
IndexAction.get(),