Argyrios Kyrtzidis | 4b562cf | 2009-06-20 08:27:14 +0000 | [diff] [blame] | 1 | //===--- ASTUnit.cpp - ASTUnit utility ------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // ASTUnit Implementation. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 14 | #include "clang/Frontend/ASTUnit.h" |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTConsumer.h" |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclVisitor.h" |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 18 | #include "clang/AST/TypeOrdering.h" |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 19 | #include "clang/AST/StmtVisitor.h" |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 20 | #include "clang/Driver/Compilation.h" |
| 21 | #include "clang/Driver/Driver.h" |
| 22 | #include "clang/Driver/Job.h" |
| 23 | #include "clang/Driver/Tool.h" |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 24 | #include "clang/Frontend/CompilerInstance.h" |
| 25 | #include "clang/Frontend/FrontendActions.h" |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 26 | #include "clang/Frontend/FrontendDiagnostic.h" |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 27 | #include "clang/Frontend/FrontendOptions.h" |
Sebastian Redl | 6ab7cd8 | 2010-08-18 23:57:17 +0000 | [diff] [blame] | 28 | #include "clang/Serialization/ASTReader.h" |
Sebastian Redl | 7faa2ec | 2010-08-18 23:56:37 +0000 | [diff] [blame] | 29 | #include "clang/Serialization/ASTWriter.h" |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 30 | #include "clang/Lex/HeaderSearch.h" |
| 31 | #include "clang/Lex/Preprocessor.h" |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 32 | #include "clang/Basic/TargetOptions.h" |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 33 | #include "clang/Basic/TargetInfo.h" |
| 34 | #include "clang/Basic/Diagnostic.h" |
Douglas Gregor | 349d38c | 2010-08-16 23:08:34 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/StringSet.h" |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 36 | #include "llvm/Support/MemoryBuffer.h" |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 37 | #include "llvm/System/Host.h" |
Benjamin Kramer | 4a630d3 | 2009-10-18 11:34:14 +0000 | [diff] [blame] | 38 | #include "llvm/System/Path.h" |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 39 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Timer.h" |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 41 | #include <cstdlib> |
Zhongxing Xu | ad23ebe | 2010-07-23 02:15:08 +0000 | [diff] [blame] | 42 | #include <cstdio> |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 43 | #include <sys/stat.h> |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 44 | using namespace clang; |
| 45 | |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 46 | /// \brief After failing to build a precompiled preamble (due to |
| 47 | /// errors in the source that occurs in the preamble), the number of |
| 48 | /// reparses during which we'll skip even trying to precompile the |
| 49 | /// preamble. |
| 50 | const unsigned DefaultPreambleRebuildInterval = 5; |
| 51 | |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 52 | ASTUnit::ASTUnit(bool _MainFileIsAST) |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 53 | : CaptureDiagnostics(false), MainFileIsAST(_MainFileIsAST), |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 54 | CompleteTranslationUnit(true), ConcurrencyCheckValue(CheckUnlocked), |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 55 | PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0), |
Douglas Gregor | 727d93e | 2010-08-17 00:40:40 +0000 | [diff] [blame] | 56 | ShouldCacheCodeCompletionResults(false), |
| 57 | NumTopLevelDeclsAtLastCompletionCache(0), |
Douglas Gregor | 8b1540c | 2010-08-19 00:45:44 +0000 | [diff] [blame] | 58 | CacheCodeCompletionCoolDown(0), |
| 59 | UnsafeToFree(false) { |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 60 | } |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 61 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 62 | ASTUnit::~ASTUnit() { |
Douglas Gregor | bdf6062 | 2010-03-05 21:16:25 +0000 | [diff] [blame] | 63 | ConcurrencyCheckValue = CheckLocked; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 64 | CleanTemporaryFiles(); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 65 | if (!PreambleFile.empty()) |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 66 | llvm::sys::Path(PreambleFile).eraseFromDisk(); |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 67 | |
| 68 | // Free the buffers associated with remapped files. We are required to |
| 69 | // perform this operation here because we explicitly request that the |
| 70 | // compiler instance *not* free these buffers for each invocation of the |
| 71 | // parser. |
| 72 | if (Invocation.get()) { |
| 73 | PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); |
| 74 | for (PreprocessorOptions::remapped_file_buffer_iterator |
| 75 | FB = PPOpts.remapped_file_buffer_begin(), |
| 76 | FBEnd = PPOpts.remapped_file_buffer_end(); |
| 77 | FB != FBEnd; |
| 78 | ++FB) |
| 79 | delete FB->second; |
| 80 | } |
Douglas Gregor | 2823342 | 2010-07-27 14:52:07 +0000 | [diff] [blame] | 81 | |
| 82 | delete SavedMainFileBuffer; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 83 | delete PreambleBuffer; |
| 84 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 85 | ClearCachedCompletionResults(); |
| 86 | |
Douglas Gregor | 8c8d541 | 2010-09-24 21:18:36 +0000 | [diff] [blame] | 87 | if (TimerGroup) |
| 88 | TimerGroup->printAll(llvm::errs()); |
| 89 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 90 | for (unsigned I = 0, N = Timers.size(); I != N; ++I) |
| 91 | delete Timers[I]; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | void ASTUnit::CleanTemporaryFiles() { |
Douglas Gregor | 313e26c | 2010-02-18 23:35:40 +0000 | [diff] [blame] | 95 | for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I) |
| 96 | TemporaryFiles[I].eraseFromDisk(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 97 | TemporaryFiles.clear(); |
Steve Naroff | e19944c | 2009-10-15 22:23:48 +0000 | [diff] [blame] | 98 | } |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 99 | |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 100 | /// \brief Determine the set of code-completion contexts in which this |
| 101 | /// declaration should be shown. |
| 102 | static unsigned getDeclShowContexts(NamedDecl *ND, |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 103 | const LangOptions &LangOpts, |
| 104 | bool &IsNestedNameSpecifier) { |
| 105 | IsNestedNameSpecifier = false; |
| 106 | |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 107 | if (isa<UsingShadowDecl>(ND)) |
| 108 | ND = dyn_cast<NamedDecl>(ND->getUnderlyingDecl()); |
| 109 | if (!ND) |
| 110 | return 0; |
| 111 | |
| 112 | unsigned Contexts = 0; |
| 113 | if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) || |
| 114 | isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND)) { |
| 115 | // Types can appear in these contexts. |
| 116 | if (LangOpts.CPlusPlus || !isa<TagDecl>(ND)) |
| 117 | Contexts |= (1 << (CodeCompletionContext::CCC_TopLevel - 1)) |
| 118 | | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1)) |
| 119 | | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1)) |
| 120 | | (1 << (CodeCompletionContext::CCC_Statement - 1)) |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 121 | | (1 << (CodeCompletionContext::CCC_Type - 1)) |
| 122 | | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 123 | |
| 124 | // In C++, types can appear in expressions contexts (for functional casts). |
| 125 | if (LangOpts.CPlusPlus) |
| 126 | Contexts |= (1 << (CodeCompletionContext::CCC_Expression - 1)); |
| 127 | |
| 128 | // In Objective-C, message sends can send interfaces. In Objective-C++, |
| 129 | // all types are available due to functional casts. |
| 130 | if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND)) |
| 131 | Contexts |= (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)); |
| 132 | |
| 133 | // Deal with tag names. |
| 134 | if (isa<EnumDecl>(ND)) { |
| 135 | Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1)); |
| 136 | |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 137 | // Part of the nested-name-specifier in C++0x. |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 138 | if (LangOpts.CPlusPlus0x) |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 139 | IsNestedNameSpecifier = true; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 140 | } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) { |
| 141 | if (Record->isUnion()) |
| 142 | Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1)); |
| 143 | else |
| 144 | Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1)); |
| 145 | |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 146 | if (LangOpts.CPlusPlus) |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 147 | IsNestedNameSpecifier = true; |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 148 | } else if (isa<ClassTemplateDecl>(ND)) |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 149 | IsNestedNameSpecifier = true; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 150 | } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { |
| 151 | // Values can appear in these contexts. |
| 152 | Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1)) |
| 153 | | (1 << (CodeCompletionContext::CCC_Expression - 1)) |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 154 | | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)) |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 155 | | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)); |
| 156 | } else if (isa<ObjCProtocolDecl>(ND)) { |
| 157 | Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1)); |
| 158 | } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) { |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 159 | Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1)); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 160 | |
| 161 | // Part of the nested-name-specifier. |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 162 | IsNestedNameSpecifier = true; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | return Contexts; |
| 166 | } |
| 167 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 168 | void ASTUnit::CacheCodeCompletionResults() { |
| 169 | if (!TheSema) |
| 170 | return; |
| 171 | |
| 172 | llvm::Timer *CachingTimer = 0; |
| 173 | if (TimerGroup.get()) { |
| 174 | CachingTimer = new llvm::Timer("Cache global code completions", |
| 175 | *TimerGroup); |
| 176 | CachingTimer->startTimer(); |
| 177 | Timers.push_back(CachingTimer); |
| 178 | } |
| 179 | |
| 180 | // Clear out the previous results. |
| 181 | ClearCachedCompletionResults(); |
| 182 | |
| 183 | // Gather the set of global code completions. |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 184 | typedef CodeCompletionResult Result; |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 185 | llvm::SmallVector<Result, 8> Results; |
| 186 | TheSema->GatherGlobalCodeCompletions(Results); |
| 187 | |
| 188 | // Translate global code completions into cached completions. |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 189 | llvm::DenseMap<CanQualType, unsigned> CompletionTypes; |
| 190 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 191 | for (unsigned I = 0, N = Results.size(); I != N; ++I) { |
| 192 | switch (Results[I].Kind) { |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 193 | case Result::RK_Declaration: { |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 194 | bool IsNestedNameSpecifier = false; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 195 | CachedCodeCompletionResult CachedResult; |
| 196 | CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema); |
| 197 | CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration, |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 198 | Ctx->getLangOptions(), |
| 199 | IsNestedNameSpecifier); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 200 | CachedResult.Priority = Results[I].Priority; |
| 201 | CachedResult.Kind = Results[I].CursorKind; |
Douglas Gregor | 58ddb60 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 202 | CachedResult.Availability = Results[I].Availability; |
Douglas Gregor | c4421e9 | 2010-08-16 16:46:30 +0000 | [diff] [blame] | 203 | |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 204 | // Keep track of the type of this completion in an ASTContext-agnostic |
| 205 | // way. |
Douglas Gregor | c4421e9 | 2010-08-16 16:46:30 +0000 | [diff] [blame] | 206 | QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration); |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 207 | if (UsageType.isNull()) { |
Douglas Gregor | c4421e9 | 2010-08-16 16:46:30 +0000 | [diff] [blame] | 208 | CachedResult.TypeClass = STC_Void; |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 209 | CachedResult.Type = 0; |
| 210 | } else { |
| 211 | CanQualType CanUsageType |
| 212 | = Ctx->getCanonicalType(UsageType.getUnqualifiedType()); |
| 213 | CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType); |
| 214 | |
| 215 | // Determine whether we have already seen this type. If so, we save |
| 216 | // ourselves the work of formatting the type string by using the |
| 217 | // temporary, CanQualType-based hash table to find the associated value. |
| 218 | unsigned &TypeValue = CompletionTypes[CanUsageType]; |
| 219 | if (TypeValue == 0) { |
| 220 | TypeValue = CompletionTypes.size(); |
| 221 | CachedCompletionTypes[QualType(CanUsageType).getAsString()] |
| 222 | = TypeValue; |
| 223 | } |
| 224 | |
| 225 | CachedResult.Type = TypeValue; |
Douglas Gregor | c4421e9 | 2010-08-16 16:46:30 +0000 | [diff] [blame] | 226 | } |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 227 | |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 228 | CachedCompletionResults.push_back(CachedResult); |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 229 | |
| 230 | /// Handle nested-name-specifiers in C++. |
| 231 | if (TheSema->Context.getLangOptions().CPlusPlus && |
| 232 | IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) { |
| 233 | // The contexts in which a nested-name-specifier can appear in C++. |
| 234 | unsigned NNSContexts |
| 235 | = (1 << (CodeCompletionContext::CCC_TopLevel - 1)) |
| 236 | | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1)) |
| 237 | | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1)) |
| 238 | | (1 << (CodeCompletionContext::CCC_Statement - 1)) |
| 239 | | (1 << (CodeCompletionContext::CCC_Expression - 1)) |
| 240 | | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)) |
| 241 | | (1 << (CodeCompletionContext::CCC_EnumTag - 1)) |
| 242 | | (1 << (CodeCompletionContext::CCC_UnionTag - 1)) |
| 243 | | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1)) |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 244 | | (1 << (CodeCompletionContext::CCC_Type - 1)) |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 245 | | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1)) |
| 246 | | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)); |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 247 | |
| 248 | if (isa<NamespaceDecl>(Results[I].Declaration) || |
| 249 | isa<NamespaceAliasDecl>(Results[I].Declaration)) |
| 250 | NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1)); |
| 251 | |
| 252 | if (unsigned RemainingContexts |
| 253 | = NNSContexts & ~CachedResult.ShowInContexts) { |
| 254 | // If there any contexts where this completion can be a |
| 255 | // nested-name-specifier but isn't already an option, create a |
| 256 | // nested-name-specifier completion. |
| 257 | Results[I].StartsNestedNameSpecifier = true; |
| 258 | CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema); |
| 259 | CachedResult.ShowInContexts = RemainingContexts; |
| 260 | CachedResult.Priority = CCP_NestedNameSpecifier; |
| 261 | CachedResult.TypeClass = STC_Void; |
| 262 | CachedResult.Type = 0; |
| 263 | CachedCompletionResults.push_back(CachedResult); |
| 264 | } |
| 265 | } |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 266 | break; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 269 | case Result::RK_Keyword: |
| 270 | case Result::RK_Pattern: |
| 271 | // Ignore keywords and patterns; we don't care, since they are so |
| 272 | // easily regenerated. |
| 273 | break; |
| 274 | |
| 275 | case Result::RK_Macro: { |
| 276 | CachedCodeCompletionResult CachedResult; |
| 277 | CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema); |
| 278 | CachedResult.ShowInContexts |
| 279 | = (1 << (CodeCompletionContext::CCC_TopLevel - 1)) |
| 280 | | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1)) |
| 281 | | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1)) |
| 282 | | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1)) |
| 283 | | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1)) |
| 284 | | (1 << (CodeCompletionContext::CCC_Statement - 1)) |
| 285 | | (1 << (CodeCompletionContext::CCC_Expression - 1)) |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 286 | | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)) |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 287 | | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1)) |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 288 | | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1)) |
| 289 | | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)); |
| 290 | |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 291 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 292 | CachedResult.Priority = Results[I].Priority; |
| 293 | CachedResult.Kind = Results[I].CursorKind; |
Douglas Gregor | 58ddb60 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 294 | CachedResult.Availability = Results[I].Availability; |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 295 | CachedResult.TypeClass = STC_Void; |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 296 | CachedResult.Type = 0; |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 297 | CachedCompletionResults.push_back(CachedResult); |
| 298 | break; |
| 299 | } |
| 300 | } |
| 301 | Results[I].Destroy(); |
| 302 | } |
| 303 | |
| 304 | if (CachingTimer) |
| 305 | CachingTimer->stopTimer(); |
Douglas Gregor | 727d93e | 2010-08-17 00:40:40 +0000 | [diff] [blame] | 306 | |
| 307 | // Make a note of the state when we performed this caching. |
| 308 | NumTopLevelDeclsAtLastCompletionCache = top_level_size(); |
| 309 | CacheCodeCompletionCoolDown = 15; |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | void ASTUnit::ClearCachedCompletionResults() { |
| 313 | for (unsigned I = 0, N = CachedCompletionResults.size(); I != N; ++I) |
| 314 | delete CachedCompletionResults[I].Completion; |
| 315 | CachedCompletionResults.clear(); |
Douglas Gregor | f5586f6 | 2010-08-16 18:08:11 +0000 | [diff] [blame] | 316 | CachedCompletionTypes.clear(); |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 319 | namespace { |
| 320 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 321 | /// \brief Gathers information from ASTReader that will be used to initialize |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 322 | /// a Preprocessor. |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 323 | class ASTInfoCollector : public ASTReaderListener { |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 324 | LangOptions &LangOpt; |
| 325 | HeaderSearch &HSI; |
| 326 | std::string &TargetTriple; |
| 327 | std::string &Predefines; |
| 328 | unsigned &Counter; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 329 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 330 | unsigned NumHeaderInfos; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 331 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 332 | public: |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 333 | ASTInfoCollector(LangOptions &LangOpt, HeaderSearch &HSI, |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 334 | std::string &TargetTriple, std::string &Predefines, |
| 335 | unsigned &Counter) |
| 336 | : LangOpt(LangOpt), HSI(HSI), TargetTriple(TargetTriple), |
| 337 | Predefines(Predefines), Counter(Counter), NumHeaderInfos(0) {} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 338 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 339 | virtual bool ReadLanguageOptions(const LangOptions &LangOpts) { |
| 340 | LangOpt = LangOpts; |
| 341 | return false; |
| 342 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 343 | |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 344 | virtual bool ReadTargetTriple(llvm::StringRef Triple) { |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 345 | TargetTriple = Triple; |
| 346 | return false; |
| 347 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 348 | |
Sebastian Redl | cb481aa | 2010-07-14 23:29:55 +0000 | [diff] [blame] | 349 | virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers, |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 350 | llvm::StringRef OriginalFileName, |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 351 | std::string &SuggestedPredefines) { |
Sebastian Redl | cb481aa | 2010-07-14 23:29:55 +0000 | [diff] [blame] | 352 | Predefines = Buffers[0].Data; |
| 353 | for (unsigned I = 1, N = Buffers.size(); I != N; ++I) { |
| 354 | Predefines += Buffers[I].Data; |
| 355 | } |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 356 | return false; |
| 357 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 358 | |
Douglas Gregor | ec1afbf | 2010-03-16 19:09:18 +0000 | [diff] [blame] | 359 | virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) { |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 360 | HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++); |
| 361 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 362 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 363 | virtual void ReadCounter(unsigned Value) { |
| 364 | Counter = Value; |
| 365 | } |
| 366 | }; |
| 367 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 368 | class StoredDiagnosticClient : public DiagnosticClient { |
| 369 | llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags; |
| 370 | |
| 371 | public: |
| 372 | explicit StoredDiagnosticClient( |
| 373 | llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags) |
| 374 | : StoredDiags(StoredDiags) { } |
| 375 | |
| 376 | virtual void HandleDiagnostic(Diagnostic::Level Level, |
| 377 | const DiagnosticInfo &Info); |
| 378 | }; |
| 379 | |
| 380 | /// \brief RAII object that optionally captures diagnostics, if |
| 381 | /// there is no diagnostic client to capture them already. |
| 382 | class CaptureDroppedDiagnostics { |
| 383 | Diagnostic &Diags; |
| 384 | StoredDiagnosticClient Client; |
| 385 | DiagnosticClient *PreviousClient; |
| 386 | |
| 387 | public: |
| 388 | CaptureDroppedDiagnostics(bool RequestCapture, Diagnostic &Diags, |
| 389 | llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags) |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 390 | : Diags(Diags), Client(StoredDiags), PreviousClient(0) |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 391 | { |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 392 | if (RequestCapture || Diags.getClient() == 0) { |
| 393 | PreviousClient = Diags.takeClient(); |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 394 | Diags.setClient(&Client); |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 395 | } |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | ~CaptureDroppedDiagnostics() { |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 399 | if (Diags.getClient() == &Client) { |
| 400 | Diags.takeClient(); |
| 401 | Diags.setClient(PreviousClient); |
| 402 | } |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 403 | } |
| 404 | }; |
| 405 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 406 | } // anonymous namespace |
| 407 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 408 | void StoredDiagnosticClient::HandleDiagnostic(Diagnostic::Level Level, |
| 409 | const DiagnosticInfo &Info) { |
| 410 | StoredDiags.push_back(StoredDiagnostic(Level, Info)); |
| 411 | } |
| 412 | |
Steve Naroff | 77accc1 | 2009-09-03 18:19:54 +0000 | [diff] [blame] | 413 | const std::string &ASTUnit::getOriginalSourceFileName() { |
Daniel Dunbar | 68d40e2 | 2009-12-02 08:44:16 +0000 | [diff] [blame] | 414 | return OriginalSourceFile; |
Steve Naroff | 77accc1 | 2009-09-03 18:19:54 +0000 | [diff] [blame] | 415 | } |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 416 | |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 417 | const std::string &ASTUnit::getASTFileName() { |
| 418 | assert(isMainFileAST() && "Not an ASTUnit from an AST file!"); |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 419 | return static_cast<ASTReader *>(Ctx->getExternalSource())->getFileName(); |
Steve Naroff | e19944c | 2009-10-15 22:23:48 +0000 | [diff] [blame] | 420 | } |
| 421 | |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 422 | ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename, |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 423 | llvm::IntrusiveRefCntPtr<Diagnostic> Diags, |
Ted Kremenek | 5cf4876 | 2009-10-17 00:34:24 +0000 | [diff] [blame] | 424 | bool OnlyLocalDecls, |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 425 | RemappedFile *RemappedFiles, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 426 | unsigned NumRemappedFiles, |
| 427 | bool CaptureDiagnostics) { |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 428 | llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true)); |
| 429 | |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 430 | if (!Diags.getPtr()) { |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 431 | // No diagnostics engine was provided, so create our own diagnostics object |
| 432 | // with the default options. |
| 433 | DiagnosticOptions DiagOpts; |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 434 | Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0); |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 435 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 436 | |
| 437 | AST->CaptureDiagnostics = CaptureDiagnostics; |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 438 | AST->OnlyLocalDecls = OnlyLocalDecls; |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 439 | AST->Diagnostics = Diags; |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 440 | AST->FileMgr.reset(new FileManager); |
| 441 | AST->SourceMgr.reset(new SourceManager(AST->getDiagnostics())); |
Steve Naroff | 36c4464 | 2009-10-19 14:34:22 +0000 | [diff] [blame] | 442 | AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager())); |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 443 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 444 | // If requested, capture diagnostics in the ASTUnit. |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 445 | CaptureDroppedDiagnostics Capture(CaptureDiagnostics, AST->getDiagnostics(), |
Douglas Gregor | 405634b | 2010-04-05 18:10:21 +0000 | [diff] [blame] | 446 | AST->StoredDiagnostics); |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 447 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 448 | for (unsigned I = 0; I != NumRemappedFiles; ++I) { |
| 449 | // Create the file entry for the file that we're mapping from. |
| 450 | const FileEntry *FromFile |
| 451 | = AST->getFileManager().getVirtualFile(RemappedFiles[I].first, |
| 452 | RemappedFiles[I].second->getBufferSize(), |
| 453 | 0); |
| 454 | if (!FromFile) { |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 455 | AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file) |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 456 | << RemappedFiles[I].first; |
Douglas Gregor | c8dfe5e | 2010-02-27 01:32:48 +0000 | [diff] [blame] | 457 | delete RemappedFiles[I].second; |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 458 | continue; |
| 459 | } |
| 460 | |
| 461 | // Override the contents of the "from" file with the contents of |
| 462 | // the "to" file. |
| 463 | AST->getSourceManager().overrideFileContents(FromFile, |
| 464 | RemappedFiles[I].second); |
| 465 | } |
| 466 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 467 | // Gather Info for preprocessor construction later on. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 468 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 469 | LangOptions LangInfo; |
| 470 | HeaderSearch &HeaderInfo = *AST->HeaderInfo.get(); |
| 471 | std::string TargetTriple; |
| 472 | std::string Predefines; |
| 473 | unsigned Counter; |
| 474 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 475 | llvm::OwningPtr<ASTReader> Reader; |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 476 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 477 | Reader.reset(new ASTReader(AST->getSourceManager(), AST->getFileManager(), |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 478 | AST->getDiagnostics())); |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 479 | Reader->setListener(new ASTInfoCollector(LangInfo, HeaderInfo, TargetTriple, |
Daniel Dunbar | cc31893 | 2009-09-03 05:59:35 +0000 | [diff] [blame] | 480 | Predefines, Counter)); |
| 481 | |
Sebastian Redl | 571db7f | 2010-08-18 23:56:56 +0000 | [diff] [blame] | 482 | switch (Reader->ReadAST(Filename)) { |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 483 | case ASTReader::Success: |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 484 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 486 | case ASTReader::Failure: |
| 487 | case ASTReader::IgnorePCH: |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 488 | AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch); |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 489 | return NULL; |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 490 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 491 | |
Daniel Dunbar | 68d40e2 | 2009-12-02 08:44:16 +0000 | [diff] [blame] | 492 | AST->OriginalSourceFile = Reader->getOriginalSourceFile(); |
| 493 | |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 494 | // AST file loaded successfully. Now create the preprocessor. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 495 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 496 | // Get information about the target being compiled for. |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 497 | // |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 498 | // FIXME: This is broken, we should store the TargetOptions in the AST file. |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 499 | TargetOptions TargetOpts; |
| 500 | TargetOpts.ABI = ""; |
John McCall | 875ab10 | 2010-08-22 06:43:33 +0000 | [diff] [blame] | 501 | TargetOpts.CXXABI = ""; |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 502 | TargetOpts.CPU = ""; |
| 503 | TargetOpts.Features.clear(); |
| 504 | TargetOpts.Triple = TargetTriple; |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 505 | AST->Target.reset(TargetInfo::CreateTargetInfo(AST->getDiagnostics(), |
| 506 | TargetOpts)); |
| 507 | AST->PP.reset(new Preprocessor(AST->getDiagnostics(), LangInfo, |
| 508 | *AST->Target.get(), |
Daniel Dunbar | 31b87d8 | 2009-09-21 03:03:39 +0000 | [diff] [blame] | 509 | AST->getSourceManager(), HeaderInfo)); |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 510 | Preprocessor &PP = *AST->PP.get(); |
| 511 | |
Daniel Dunbar | d5b6126 | 2009-09-21 03:03:47 +0000 | [diff] [blame] | 512 | PP.setPredefines(Reader->getSuggestedPredefines()); |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 513 | PP.setCounterValue(Counter); |
Daniel Dunbar | cc31893 | 2009-09-03 05:59:35 +0000 | [diff] [blame] | 514 | Reader->setPreprocessor(PP); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 515 | |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 516 | // Create and initialize the ASTContext. |
| 517 | |
| 518 | AST->Ctx.reset(new ASTContext(LangInfo, |
Daniel Dunbar | 31b87d8 | 2009-09-21 03:03:39 +0000 | [diff] [blame] | 519 | AST->getSourceManager(), |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 520 | *AST->Target.get(), |
| 521 | PP.getIdentifierTable(), |
| 522 | PP.getSelectorTable(), |
| 523 | PP.getBuiltinInfo(), |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 524 | /* size_reserve = */0)); |
| 525 | ASTContext &Context = *AST->Ctx.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 526 | |
Daniel Dunbar | cc31893 | 2009-09-03 05:59:35 +0000 | [diff] [blame] | 527 | Reader->InitializeContext(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 528 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 529 | // Attach the AST reader to the AST context as an external AST |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 530 | // source, so that declarations will be deserialized from the |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 531 | // AST file as needed. |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 532 | ASTReader *ReaderPtr = Reader.get(); |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 533 | llvm::OwningPtr<ExternalASTSource> Source(Reader.take()); |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 534 | Context.setExternalSource(Source); |
| 535 | |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 536 | // Create an AST consumer, even though it isn't used. |
| 537 | AST->Consumer.reset(new ASTConsumer); |
| 538 | |
Sebastian Redl | c43b54c | 2010-08-18 23:56:43 +0000 | [diff] [blame] | 539 | // Create a semantic analysis object and tell the AST reader about it. |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 540 | AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer)); |
| 541 | AST->TheSema->Initialize(); |
| 542 | ReaderPtr->InitializeSema(*AST->TheSema); |
| 543 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 544 | return AST.take(); |
Argyrios Kyrtzidis | 0853a02 | 2009-06-20 08:08:23 +0000 | [diff] [blame] | 545 | } |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 546 | |
| 547 | namespace { |
| 548 | |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 549 | class TopLevelDeclTrackerConsumer : public ASTConsumer { |
| 550 | ASTUnit &Unit; |
| 551 | |
| 552 | public: |
| 553 | TopLevelDeclTrackerConsumer(ASTUnit &_Unit) : Unit(_Unit) {} |
| 554 | |
| 555 | void HandleTopLevelDecl(DeclGroupRef D) { |
Ted Kremenek | da5a428 | 2010-05-03 20:16:35 +0000 | [diff] [blame] | 556 | for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) { |
| 557 | Decl *D = *it; |
| 558 | // FIXME: Currently ObjC method declarations are incorrectly being |
| 559 | // reported as top-level declarations, even though their DeclContext |
| 560 | // is the containing ObjC @interface/@implementation. This is a |
| 561 | // fundamental problem in the parser right now. |
| 562 | if (isa<ObjCMethodDecl>(D)) |
| 563 | continue; |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 564 | Unit.addTopLevelDecl(D); |
Ted Kremenek | da5a428 | 2010-05-03 20:16:35 +0000 | [diff] [blame] | 565 | } |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 566 | } |
Sebastian Redl | 27372b4 | 2010-08-11 18:52:41 +0000 | [diff] [blame] | 567 | |
| 568 | // We're not interested in "interesting" decls. |
| 569 | void HandleInterestingDecl(DeclGroupRef) {} |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 570 | }; |
| 571 | |
| 572 | class TopLevelDeclTrackerAction : public ASTFrontendAction { |
| 573 | public: |
| 574 | ASTUnit &Unit; |
| 575 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 576 | virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, |
| 577 | llvm::StringRef InFile) { |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 578 | return new TopLevelDeclTrackerConsumer(Unit); |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | public: |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 582 | TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {} |
| 583 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 584 | virtual bool hasCodeCompletionSupport() const { return false; } |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 585 | virtual bool usesCompleteTranslationUnit() { |
| 586 | return Unit.isCompleteTranslationUnit(); |
| 587 | } |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 588 | }; |
| 589 | |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 590 | class PrecompilePreambleConsumer : public PCHGenerator { |
| 591 | ASTUnit &Unit; |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 592 | std::vector<Decl *> TopLevelDecls; |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 593 | |
| 594 | public: |
| 595 | PrecompilePreambleConsumer(ASTUnit &Unit, |
| 596 | const Preprocessor &PP, bool Chaining, |
| 597 | const char *isysroot, llvm::raw_ostream *Out) |
| 598 | : PCHGenerator(PP, Chaining, isysroot, Out), Unit(Unit) { } |
| 599 | |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 600 | virtual void HandleTopLevelDecl(DeclGroupRef D) { |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 601 | for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) { |
| 602 | Decl *D = *it; |
| 603 | // FIXME: Currently ObjC method declarations are incorrectly being |
| 604 | // reported as top-level declarations, even though their DeclContext |
| 605 | // is the containing ObjC @interface/@implementation. This is a |
| 606 | // fundamental problem in the parser right now. |
| 607 | if (isa<ObjCMethodDecl>(D)) |
| 608 | continue; |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 609 | TopLevelDecls.push_back(D); |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | virtual void HandleTranslationUnit(ASTContext &Ctx) { |
| 614 | PCHGenerator::HandleTranslationUnit(Ctx); |
| 615 | if (!Unit.getDiagnostics().hasErrorOccurred()) { |
| 616 | // Translate the top-level declarations we captured during |
| 617 | // parsing into declaration IDs in the precompiled |
| 618 | // preamble. This will allow us to deserialize those top-level |
| 619 | // declarations when requested. |
| 620 | for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I) |
| 621 | Unit.addTopLevelDeclFromPreamble( |
| 622 | getWriter().getDeclID(TopLevelDecls[I])); |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 623 | } |
| 624 | } |
| 625 | }; |
| 626 | |
| 627 | class PrecompilePreambleAction : public ASTFrontendAction { |
| 628 | ASTUnit &Unit; |
| 629 | |
| 630 | public: |
| 631 | explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {} |
| 632 | |
| 633 | virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, |
| 634 | llvm::StringRef InFile) { |
| 635 | std::string Sysroot; |
| 636 | llvm::raw_ostream *OS = 0; |
| 637 | bool Chaining; |
| 638 | if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot, |
| 639 | OS, Chaining)) |
| 640 | return 0; |
| 641 | |
| 642 | const char *isysroot = CI.getFrontendOpts().RelocatablePCH ? |
| 643 | Sysroot.c_str() : 0; |
| 644 | return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Chaining, |
| 645 | isysroot, OS); |
| 646 | } |
| 647 | |
| 648 | virtual bool hasCodeCompletionSupport() const { return false; } |
| 649 | virtual bool hasASTFileSupport() const { return false; } |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 650 | virtual bool usesCompleteTranslationUnit() { return false; } |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 651 | }; |
| 652 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 655 | /// Parse the source file into a translation unit using the given compiler |
| 656 | /// invocation, replacing the current translation unit. |
| 657 | /// |
| 658 | /// \returns True if a failure occurred that causes the ASTUnit not to |
| 659 | /// contain any translation-unit information, false otherwise. |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 660 | bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) { |
Douglas Gregor | 2823342 | 2010-07-27 14:52:07 +0000 | [diff] [blame] | 661 | delete SavedMainFileBuffer; |
| 662 | SavedMainFileBuffer = 0; |
| 663 | |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 664 | if (!Invocation.get()) { |
| 665 | delete OverrideMainBuffer; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 666 | return true; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 667 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 668 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 669 | // Create the compiler instance to use for building the AST. |
Daniel Dunbar | cb6dda1 | 2009-12-02 08:43:56 +0000 | [diff] [blame] | 670 | CompilerInstance Clang; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 671 | Clang.setInvocation(Invocation.take()); |
| 672 | OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second; |
| 673 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 674 | // Set up diagnostics, capturing any diagnostics that would |
| 675 | // otherwise be dropped. |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 676 | Clang.setDiagnostics(&getDiagnostics()); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 677 | CaptureDroppedDiagnostics Capture(CaptureDiagnostics, |
| 678 | getDiagnostics(), |
| 679 | StoredDiagnostics); |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 680 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 681 | // Create the target instance. |
| 682 | Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(), |
| 683 | Clang.getTargetOpts())); |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 684 | if (!Clang.hasTarget()) { |
| 685 | delete OverrideMainBuffer; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 686 | return true; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 687 | } |
| 688 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 689 | // Inform the target of the language options. |
| 690 | // |
| 691 | // FIXME: We shouldn't need to do this, the target should be immutable once |
| 692 | // created. This complexity should be lifted elsewhere. |
| 693 | Clang.getTarget().setForcedLangOptions(Clang.getLangOpts()); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 694 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 695 | assert(Clang.getFrontendOpts().Inputs.size() == 1 && |
| 696 | "Invocation must have exactly one source file!"); |
Daniel Dunbar | c34ce3f | 2010-06-07 23:22:09 +0000 | [diff] [blame] | 697 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST && |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 698 | "FIXME: AST inputs not yet supported here!"); |
Daniel Dunbar | faddc3e | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 699 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR && |
| 700 | "IR inputs not support here!"); |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 701 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 702 | // Configure the various subsystems. |
| 703 | // FIXME: Should we retain the previous file manager? |
| 704 | FileMgr.reset(new FileManager); |
| 705 | SourceMgr.reset(new SourceManager(getDiagnostics())); |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 706 | TheSema.reset(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 707 | Ctx.reset(); |
| 708 | PP.reset(); |
| 709 | |
| 710 | // Clear out old caches and data. |
| 711 | TopLevelDecls.clear(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 712 | CleanTemporaryFiles(); |
| 713 | PreprocessedEntitiesByFile.clear(); |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 714 | |
Douglas Gregor | f128fed | 2010-08-20 00:02:33 +0000 | [diff] [blame] | 715 | if (!OverrideMainBuffer) { |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 716 | StoredDiagnostics.clear(); |
Douglas Gregor | f128fed | 2010-08-20 00:02:33 +0000 | [diff] [blame] | 717 | TopLevelDeclsInPreamble.clear(); |
| 718 | } |
| 719 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 720 | // Create a file manager object to provide access to and cache the filesystem. |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 721 | Clang.setFileManager(&getFileManager()); |
| 722 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 723 | // Create the source manager. |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 724 | Clang.setSourceManager(&getSourceManager()); |
| 725 | |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 726 | // If the main file has been overridden due to the use of a preamble, |
| 727 | // make that override happen and introduce the preamble. |
| 728 | PreprocessorOptions &PreprocessorOpts = Clang.getPreprocessorOpts(); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 729 | std::string PriorImplicitPCHInclude; |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 730 | if (OverrideMainBuffer) { |
| 731 | PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer); |
| 732 | PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size(); |
| 733 | PreprocessorOpts.PrecompiledPreambleBytes.second |
| 734 | = PreambleEndsAtStartOfLine; |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 735 | PriorImplicitPCHInclude = PreprocessorOpts.ImplicitPCHInclude; |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 736 | PreprocessorOpts.ImplicitPCHInclude = PreambleFile; |
Douglas Gregor | fae3b2f | 2010-07-27 00:27:13 +0000 | [diff] [blame] | 737 | PreprocessorOpts.DisablePCHValidation = true; |
Douglas Gregor | 2823342 | 2010-07-27 14:52:07 +0000 | [diff] [blame] | 738 | |
| 739 | // Keep track of the override buffer; |
| 740 | SavedMainFileBuffer = OverrideMainBuffer; |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 741 | |
| 742 | // The stored diagnostic has the old source manager in it; update |
| 743 | // the locations to refer into the new source manager. Since we've |
| 744 | // been careful to make sure that the source manager's state |
| 745 | // before and after are identical, so that we can reuse the source |
| 746 | // location itself. |
| 747 | for (unsigned I = 0, N = StoredDiagnostics.size(); I != N; ++I) { |
| 748 | FullSourceLoc Loc(StoredDiagnostics[I].getLocation(), |
| 749 | getSourceManager()); |
| 750 | StoredDiagnostics[I].setLocation(Loc); |
| 751 | } |
Douglas Gregor | f128fed | 2010-08-20 00:02:33 +0000 | [diff] [blame] | 752 | } else { |
| 753 | PreprocessorOpts.PrecompiledPreambleBytes.first = 0; |
| 754 | PreprocessorOpts.PrecompiledPreambleBytes.second = false; |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 757 | llvm::OwningPtr<TopLevelDeclTrackerAction> Act; |
| 758 | Act.reset(new TopLevelDeclTrackerAction(*this)); |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 759 | if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second, |
Daniel Dunbar | d3598a6 | 2010-06-07 23:23:06 +0000 | [diff] [blame] | 760 | Clang.getFrontendOpts().Inputs[0].first)) |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 761 | goto error; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 762 | |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 763 | Act->Execute(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 764 | |
Daniel Dunbar | 64a32ba | 2009-12-01 21:57:33 +0000 | [diff] [blame] | 765 | // Steal the created target, context, and preprocessor, and take back the |
| 766 | // source and file managers. |
Douglas Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 767 | TheSema.reset(Clang.takeSema()); |
| 768 | Consumer.reset(Clang.takeASTConsumer()); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 769 | Ctx.reset(Clang.takeASTContext()); |
| 770 | PP.reset(Clang.takePreprocessor()); |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 771 | Clang.takeSourceManager(); |
| 772 | Clang.takeFileManager(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 773 | Target.reset(Clang.takeTarget()); |
| 774 | |
Daniel Dunbar | f772d1e | 2009-12-04 08:17:33 +0000 | [diff] [blame] | 775 | Act->EndSourceFile(); |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 776 | |
| 777 | // Remove the overridden buffer we used for the preamble. |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 778 | if (OverrideMainBuffer) { |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 779 | PreprocessorOpts.eraseRemappedFile( |
| 780 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 781 | PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude; |
| 782 | } |
| 783 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 784 | Invocation.reset(Clang.takeInvocation()); |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 785 | |
| 786 | // If we were asked to cache code-completion results and don't have any |
| 787 | // results yet, do so now. |
| 788 | if (ShouldCacheCodeCompletionResults && CachedCompletionResults.empty()) |
| 789 | CacheCodeCompletionResults(); |
| 790 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 791 | return false; |
| 792 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 793 | error: |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 794 | // Remove the overridden buffer we used for the preamble. |
Douglas Gregor | fae3b2f | 2010-07-27 00:27:13 +0000 | [diff] [blame] | 795 | if (OverrideMainBuffer) { |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 796 | PreprocessorOpts.eraseRemappedFile( |
| 797 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | fae3b2f | 2010-07-27 00:27:13 +0000 | [diff] [blame] | 798 | PreprocessorOpts.DisablePCHValidation = true; |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 799 | PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 800 | delete OverrideMainBuffer; |
Douglas Gregor | fae3b2f | 2010-07-27 00:27:13 +0000 | [diff] [blame] | 801 | } |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 802 | |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 803 | Clang.takeSourceManager(); |
| 804 | Clang.takeFileManager(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 805 | Invocation.reset(Clang.takeInvocation()); |
| 806 | return true; |
| 807 | } |
| 808 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 809 | /// \brief Simple function to retrieve a path for a preamble precompiled header. |
| 810 | static std::string GetPreamblePCHPath() { |
| 811 | // FIXME: This is lame; sys::Path should provide this function (in particular, |
| 812 | // it should know how to find the temporary files dir). |
| 813 | // FIXME: This is really lame. I copied this code from the Driver! |
Douglas Gregor | 424668c | 2010-09-11 18:05:19 +0000 | [diff] [blame] | 814 | // FIXME: This is a hack so that we can override the preamble file during |
| 815 | // crash-recovery testing, which is the only case where the preamble files |
| 816 | // are not necessarily cleaned up. |
| 817 | const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE"); |
| 818 | if (TmpFile) |
| 819 | return TmpFile; |
| 820 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 821 | std::string Error; |
| 822 | const char *TmpDir = ::getenv("TMPDIR"); |
| 823 | if (!TmpDir) |
| 824 | TmpDir = ::getenv("TEMP"); |
| 825 | if (!TmpDir) |
| 826 | TmpDir = ::getenv("TMP"); |
Douglas Gregor | c6cb2b0 | 2010-09-11 17:51:16 +0000 | [diff] [blame] | 827 | #ifdef LLVM_ON_WIN32 |
| 828 | if (!TmpDir) |
| 829 | TmpDir = ::getenv("USERPROFILE"); |
| 830 | #endif |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 831 | if (!TmpDir) |
| 832 | TmpDir = "/tmp"; |
| 833 | llvm::sys::Path P(TmpDir); |
Douglas Gregor | c6cb2b0 | 2010-09-11 17:51:16 +0000 | [diff] [blame] | 834 | P.createDirectoryOnDisk(true); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 835 | P.appendComponent("preamble"); |
Douglas Gregor | 6bf1830 | 2010-08-11 13:06:56 +0000 | [diff] [blame] | 836 | P.appendSuffix("pch"); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 837 | if (P.createTemporaryFileOnDisk()) |
| 838 | return std::string(); |
| 839 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 840 | return P.str(); |
| 841 | } |
| 842 | |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 843 | /// \brief Compute the preamble for the main file, providing the source buffer |
| 844 | /// that corresponds to the main file along with a pair (bytes, start-of-line) |
| 845 | /// that describes the preamble. |
| 846 | std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 847 | ASTUnit::ComputePreamble(CompilerInvocation &Invocation, |
| 848 | unsigned MaxLines, bool &CreatedBuffer) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 849 | FrontendOptions &FrontendOpts = Invocation.getFrontendOpts(); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 850 | PreprocessorOptions &PreprocessorOpts |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 851 | = Invocation.getPreprocessorOpts(); |
| 852 | CreatedBuffer = false; |
| 853 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 854 | // Try to determine if the main file has been remapped, either from the |
| 855 | // command line (to another file) or directly through the compiler invocation |
| 856 | // (to a memory buffer). |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 857 | llvm::MemoryBuffer *Buffer = 0; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 858 | llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second); |
| 859 | if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) { |
| 860 | // Check whether there is a file-file remapping of the main file |
| 861 | for (PreprocessorOptions::remapped_file_iterator |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 862 | M = PreprocessorOpts.remapped_file_begin(), |
| 863 | E = PreprocessorOpts.remapped_file_end(); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 864 | M != E; |
| 865 | ++M) { |
| 866 | llvm::sys::PathWithStatus MPath(M->first); |
| 867 | if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) { |
| 868 | if (MainFileStatus->uniqueID == MStatus->uniqueID) { |
| 869 | // We found a remapping. Try to load the resulting, remapped source. |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 870 | if (CreatedBuffer) { |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 871 | delete Buffer; |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 872 | CreatedBuffer = false; |
| 873 | } |
| 874 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 875 | Buffer = llvm::MemoryBuffer::getFile(M->second); |
| 876 | if (!Buffer) |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 877 | return std::make_pair((llvm::MemoryBuffer*)0, |
| 878 | std::make_pair(0, true)); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 879 | CreatedBuffer = true; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 880 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 881 | // Remove this remapping. We've captured the buffer already. |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 882 | M = PreprocessorOpts.eraseRemappedFile(M); |
| 883 | E = PreprocessorOpts.remapped_file_end(); |
Daniel Dunbar | c1cf158 | 2010-08-19 19:40:40 +0000 | [diff] [blame] | 884 | if (M == E) |
| 885 | break; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 886 | } |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | // Check whether there is a file-buffer remapping. It supercedes the |
| 891 | // file-file remapping. |
| 892 | for (PreprocessorOptions::remapped_file_buffer_iterator |
| 893 | M = PreprocessorOpts.remapped_file_buffer_begin(), |
| 894 | E = PreprocessorOpts.remapped_file_buffer_end(); |
| 895 | M != E; |
| 896 | ++M) { |
| 897 | llvm::sys::PathWithStatus MPath(M->first); |
| 898 | if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) { |
| 899 | if (MainFileStatus->uniqueID == MStatus->uniqueID) { |
| 900 | // We found a remapping. |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 901 | if (CreatedBuffer) { |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 902 | delete Buffer; |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 903 | CreatedBuffer = false; |
| 904 | } |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 905 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 906 | Buffer = const_cast<llvm::MemoryBuffer *>(M->second); |
| 907 | |
| 908 | // Remove this remapping. We've captured the buffer already. |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 909 | M = PreprocessorOpts.eraseRemappedFile(M); |
| 910 | E = PreprocessorOpts.remapped_file_buffer_end(); |
Daniel Dunbar | c1cf158 | 2010-08-19 19:40:40 +0000 | [diff] [blame] | 911 | if (M == E) |
| 912 | break; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 913 | } |
| 914 | } |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 915 | } |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | // If the main source file was not remapped, load it now. |
| 919 | if (!Buffer) { |
| 920 | Buffer = llvm::MemoryBuffer::getFile(FrontendOpts.Inputs[0].second); |
| 921 | if (!Buffer) |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 922 | return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true)); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 923 | |
| 924 | CreatedBuffer = true; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 925 | } |
| 926 | |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 927 | return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer, MaxLines)); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 928 | } |
| 929 | |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 930 | static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old, |
| 931 | bool DeleteOld, |
| 932 | unsigned NewSize, |
| 933 | llvm::StringRef NewName) { |
| 934 | llvm::MemoryBuffer *Result |
| 935 | = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName); |
| 936 | memcpy(const_cast<char*>(Result->getBufferStart()), |
| 937 | Old->getBufferStart(), Old->getBufferSize()); |
| 938 | memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(), |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 939 | ' ', NewSize - Old->getBufferSize() - 1); |
| 940 | const_cast<char*>(Result->getBufferEnd())[-1] = '\n'; |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 941 | |
| 942 | if (DeleteOld) |
| 943 | delete Old; |
| 944 | |
| 945 | return Result; |
| 946 | } |
| 947 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 948 | /// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing |
| 949 | /// the source file. |
| 950 | /// |
| 951 | /// This routine will compute the preamble of the main source file. If a |
| 952 | /// non-trivial preamble is found, it will precompile that preamble into a |
| 953 | /// precompiled header so that the precompiled preamble can be used to reduce |
| 954 | /// reparsing time. If a precompiled preamble has already been constructed, |
| 955 | /// this routine will determine if it is still valid and, if so, avoid |
| 956 | /// rebuilding the precompiled preamble. |
| 957 | /// |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 958 | /// \param AllowRebuild When true (the default), this routine is |
| 959 | /// allowed to rebuild the precompiled preamble if it is found to be |
| 960 | /// out-of-date. |
| 961 | /// |
| 962 | /// \param MaxLines When non-zero, the maximum number of lines that |
| 963 | /// can occur within the preamble. |
| 964 | /// |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 965 | /// \returns If the precompiled preamble can be used, returns a newly-allocated |
| 966 | /// buffer that should be used in place of the main file when doing so. |
| 967 | /// Otherwise, returns a NULL pointer. |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 968 | llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble( |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 969 | CompilerInvocation PreambleInvocation, |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 970 | bool AllowRebuild, |
| 971 | unsigned MaxLines) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 972 | FrontendOptions &FrontendOpts = PreambleInvocation.getFrontendOpts(); |
| 973 | PreprocessorOptions &PreprocessorOpts |
| 974 | = PreambleInvocation.getPreprocessorOpts(); |
| 975 | |
| 976 | bool CreatedPreambleBuffer = false; |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 977 | std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 978 | = ComputePreamble(PreambleInvocation, MaxLines, CreatedPreambleBuffer); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 979 | |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 980 | if (!NewPreamble.second.first) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 981 | // We couldn't find a preamble in the main source. Clear out the current |
| 982 | // preamble, if we have one. It's obviously no good any more. |
| 983 | Preamble.clear(); |
| 984 | if (!PreambleFile.empty()) { |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 985 | llvm::sys::Path(PreambleFile).eraseFromDisk(); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 986 | PreambleFile.clear(); |
| 987 | } |
| 988 | if (CreatedPreambleBuffer) |
| 989 | delete NewPreamble.first; |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 990 | |
| 991 | // The next time we actually see a preamble, precompile it. |
| 992 | PreambleRebuildCounter = 1; |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 993 | return 0; |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 994 | } |
| 995 | |
| 996 | if (!Preamble.empty()) { |
| 997 | // We've previously computed a preamble. Check whether we have the same |
| 998 | // preamble now that we did before, and that there's enough space in |
| 999 | // the main-file buffer within the precompiled preamble to fit the |
| 1000 | // new main file. |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1001 | if (Preamble.size() == NewPreamble.second.first && |
| 1002 | PreambleEndsAtStartOfLine == NewPreamble.second.second && |
Douglas Gregor | 592508e | 2010-07-24 00:42:07 +0000 | [diff] [blame] | 1003 | NewPreamble.first->getBufferSize() < PreambleReservedSize-2 && |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1004 | memcmp(&Preamble[0], NewPreamble.first->getBufferStart(), |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1005 | NewPreamble.second.first) == 0) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1006 | // The preamble has not changed. We may be able to re-use the precompiled |
| 1007 | // preamble. |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 1008 | |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1009 | // Check that none of the files used by the preamble have changed. |
| 1010 | bool AnyFileChanged = false; |
| 1011 | |
| 1012 | // First, make a record of those files that have been overridden via |
| 1013 | // remapping or unsaved_files. |
| 1014 | llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles; |
| 1015 | for (PreprocessorOptions::remapped_file_iterator |
| 1016 | R = PreprocessorOpts.remapped_file_begin(), |
| 1017 | REnd = PreprocessorOpts.remapped_file_end(); |
| 1018 | !AnyFileChanged && R != REnd; |
| 1019 | ++R) { |
| 1020 | struct stat StatBuf; |
| 1021 | if (stat(R->second.c_str(), &StatBuf)) { |
| 1022 | // If we can't stat the file we're remapping to, assume that something |
| 1023 | // horrible happened. |
| 1024 | AnyFileChanged = true; |
| 1025 | break; |
| 1026 | } |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1027 | |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1028 | OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size, |
| 1029 | StatBuf.st_mtime); |
| 1030 | } |
| 1031 | for (PreprocessorOptions::remapped_file_buffer_iterator |
| 1032 | R = PreprocessorOpts.remapped_file_buffer_begin(), |
| 1033 | REnd = PreprocessorOpts.remapped_file_buffer_end(); |
| 1034 | !AnyFileChanged && R != REnd; |
| 1035 | ++R) { |
| 1036 | // FIXME: Should we actually compare the contents of file->buffer |
| 1037 | // remappings? |
| 1038 | OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(), |
| 1039 | 0); |
| 1040 | } |
| 1041 | |
| 1042 | // Check whether anything has changed. |
| 1043 | for (llvm::StringMap<std::pair<off_t, time_t> >::iterator |
| 1044 | F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end(); |
| 1045 | !AnyFileChanged && F != FEnd; |
| 1046 | ++F) { |
| 1047 | llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden |
| 1048 | = OverriddenFiles.find(F->first()); |
| 1049 | if (Overridden != OverriddenFiles.end()) { |
| 1050 | // This file was remapped; check whether the newly-mapped file |
| 1051 | // matches up with the previous mapping. |
| 1052 | if (Overridden->second != F->second) |
| 1053 | AnyFileChanged = true; |
| 1054 | continue; |
| 1055 | } |
| 1056 | |
| 1057 | // The file was not remapped; check whether it has changed on disk. |
| 1058 | struct stat StatBuf; |
| 1059 | if (stat(F->first(), &StatBuf)) { |
| 1060 | // If we can't stat the file, assume that something horrible happened. |
| 1061 | AnyFileChanged = true; |
| 1062 | } else if (StatBuf.st_size != F->second.first || |
| 1063 | StatBuf.st_mtime != F->second.second) |
| 1064 | AnyFileChanged = true; |
| 1065 | } |
| 1066 | |
| 1067 | if (!AnyFileChanged) { |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 1068 | // Okay! We can re-use the precompiled preamble. |
| 1069 | |
| 1070 | // Set the state of the diagnostic object to mimic its state |
| 1071 | // after parsing the preamble. |
| 1072 | getDiagnostics().Reset(); |
| 1073 | getDiagnostics().setNumWarnings(NumWarningsInPreamble); |
| 1074 | if (StoredDiagnostics.size() > NumStoredDiagnosticsInPreamble) |
| 1075 | StoredDiagnostics.erase( |
| 1076 | StoredDiagnostics.begin() + NumStoredDiagnosticsInPreamble, |
| 1077 | StoredDiagnostics.end()); |
| 1078 | |
| 1079 | // Create a version of the main file buffer that is padded to |
| 1080 | // buffer size we reserved when creating the preamble. |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1081 | return CreatePaddedMainFileBuffer(NewPreamble.first, |
| 1082 | CreatedPreambleBuffer, |
| 1083 | PreambleReservedSize, |
| 1084 | FrontendOpts.Inputs[0].second); |
| 1085 | } |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1086 | } |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1087 | |
| 1088 | // If we aren't allowed to rebuild the precompiled preamble, just |
| 1089 | // return now. |
| 1090 | if (!AllowRebuild) |
| 1091 | return 0; |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1092 | |
| 1093 | // We can't reuse the previously-computed preamble. Build a new one. |
| 1094 | Preamble.clear(); |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1095 | llvm::sys::Path(PreambleFile).eraseFromDisk(); |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1096 | PreambleRebuildCounter = 1; |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1097 | } else if (!AllowRebuild) { |
| 1098 | // We aren't allowed to rebuild the precompiled preamble; just |
| 1099 | // return now. |
| 1100 | return 0; |
| 1101 | } |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1102 | |
| 1103 | // If the preamble rebuild counter > 1, it's because we previously |
| 1104 | // failed to build a preamble and we're not yet ready to try |
| 1105 | // again. Decrement the counter and return a failure. |
| 1106 | if (PreambleRebuildCounter > 1) { |
| 1107 | --PreambleRebuildCounter; |
| 1108 | return 0; |
| 1109 | } |
| 1110 | |
Douglas Gregor | 2cd4fd4 | 2010-09-11 17:56:52 +0000 | [diff] [blame] | 1111 | // Create a temporary file for the precompiled preamble. In rare |
| 1112 | // circumstances, this can fail. |
| 1113 | std::string PreamblePCHPath = GetPreamblePCHPath(); |
| 1114 | if (PreamblePCHPath.empty()) { |
| 1115 | // Try again next time. |
| 1116 | PreambleRebuildCounter = 1; |
| 1117 | return 0; |
| 1118 | } |
| 1119 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1120 | // We did not previously compute a preamble, or it can't be reused anyway. |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1121 | llvm::Timer *PreambleTimer = 0; |
| 1122 | if (TimerGroup.get()) { |
| 1123 | PreambleTimer = new llvm::Timer("Precompiling preamble", *TimerGroup); |
| 1124 | PreambleTimer->startTimer(); |
| 1125 | Timers.push_back(PreambleTimer); |
| 1126 | } |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1127 | |
| 1128 | // Create a new buffer that stores the preamble. The buffer also contains |
| 1129 | // extra space for the original contents of the file (which will be present |
| 1130 | // when we actually parse the file) along with more room in case the file |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1131 | // grows. |
| 1132 | PreambleReservedSize = NewPreamble.first->getBufferSize(); |
| 1133 | if (PreambleReservedSize < 4096) |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1134 | PreambleReservedSize = 8191; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1135 | else |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1136 | PreambleReservedSize *= 2; |
| 1137 | |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 1138 | // Save the preamble text for later; we'll need to compare against it for |
| 1139 | // subsequent reparses. |
| 1140 | Preamble.assign(NewPreamble.first->getBufferStart(), |
| 1141 | NewPreamble.first->getBufferStart() |
| 1142 | + NewPreamble.second.first); |
| 1143 | PreambleEndsAtStartOfLine = NewPreamble.second.second; |
| 1144 | |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 1145 | delete PreambleBuffer; |
| 1146 | PreambleBuffer |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1147 | = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize, |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1148 | FrontendOpts.Inputs[0].second); |
| 1149 | memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()), |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1150 | NewPreamble.first->getBufferStart(), Preamble.size()); |
| 1151 | memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(), |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1152 | ' ', PreambleReservedSize - Preamble.size() - 1); |
| 1153 | const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n'; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1154 | |
| 1155 | // Remap the main source file to the preamble buffer. |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1156 | llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1157 | PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer); |
| 1158 | |
| 1159 | // Tell the compiler invocation to generate a temporary precompiled header. |
| 1160 | FrontendOpts.ProgramAction = frontend::GeneratePCH; |
Sebastian Redl | f65339e | 2010-08-06 00:35:11 +0000 | [diff] [blame] | 1161 | // FIXME: Set ChainedPCH unconditionally, once it is ready. |
| 1162 | if (::getenv("LIBCLANG_CHAINING")) |
| 1163 | FrontendOpts.ChainedPCH = true; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1164 | // FIXME: Generate the precompiled header into memory? |
Douglas Gregor | 2cd4fd4 | 2010-09-11 17:56:52 +0000 | [diff] [blame] | 1165 | FrontendOpts.OutputFile = PreamblePCHPath; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1166 | |
| 1167 | // Create the compiler instance to use for building the precompiled preamble. |
| 1168 | CompilerInstance Clang; |
| 1169 | Clang.setInvocation(&PreambleInvocation); |
| 1170 | OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second; |
| 1171 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1172 | // Set up diagnostics, capturing all of the diagnostics produced. |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1173 | Clang.setDiagnostics(&getDiagnostics()); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1174 | CaptureDroppedDiagnostics Capture(CaptureDiagnostics, |
| 1175 | getDiagnostics(), |
| 1176 | StoredDiagnostics); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1177 | |
| 1178 | // Create the target instance. |
| 1179 | Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(), |
| 1180 | Clang.getTargetOpts())); |
| 1181 | if (!Clang.hasTarget()) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1182 | llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk(); |
| 1183 | Preamble.clear(); |
| 1184 | if (CreatedPreambleBuffer) |
| 1185 | delete NewPreamble.first; |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1186 | if (PreambleTimer) |
| 1187 | PreambleTimer->stopTimer(); |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1188 | PreambleRebuildCounter = DefaultPreambleRebuildInterval; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 1189 | PreprocessorOpts.eraseRemappedFile( |
| 1190 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1191 | return 0; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | // Inform the target of the language options. |
| 1195 | // |
| 1196 | // FIXME: We shouldn't need to do this, the target should be immutable once |
| 1197 | // created. This complexity should be lifted elsewhere. |
| 1198 | Clang.getTarget().setForcedLangOptions(Clang.getLangOpts()); |
| 1199 | |
| 1200 | assert(Clang.getFrontendOpts().Inputs.size() == 1 && |
| 1201 | "Invocation must have exactly one source file!"); |
| 1202 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST && |
| 1203 | "FIXME: AST inputs not yet supported here!"); |
| 1204 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR && |
| 1205 | "IR inputs not support here!"); |
| 1206 | |
| 1207 | // Clear out old caches and data. |
| 1208 | StoredDiagnostics.clear(); |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 1209 | TopLevelDecls.clear(); |
| 1210 | TopLevelDeclsInPreamble.clear(); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1211 | |
| 1212 | // Create a file manager object to provide access to and cache the filesystem. |
| 1213 | Clang.setFileManager(new FileManager); |
| 1214 | |
| 1215 | // Create the source manager. |
| 1216 | Clang.setSourceManager(new SourceManager(getDiagnostics())); |
| 1217 | |
Douglas Gregor | 1d715ac | 2010-08-03 08:14:03 +0000 | [diff] [blame] | 1218 | llvm::OwningPtr<PrecompilePreambleAction> Act; |
| 1219 | Act.reset(new PrecompilePreambleAction(*this)); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1220 | if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second, |
| 1221 | Clang.getFrontendOpts().Inputs[0].first)) { |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1222 | Clang.takeInvocation(); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1223 | llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk(); |
| 1224 | Preamble.clear(); |
| 1225 | if (CreatedPreambleBuffer) |
| 1226 | delete NewPreamble.first; |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1227 | if (PreambleTimer) |
| 1228 | PreambleTimer->stopTimer(); |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1229 | PreambleRebuildCounter = DefaultPreambleRebuildInterval; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 1230 | PreprocessorOpts.eraseRemappedFile( |
| 1231 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1232 | return 0; |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1233 | } |
| 1234 | |
| 1235 | Act->Execute(); |
| 1236 | Act->EndSourceFile(); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1237 | Clang.takeInvocation(); |
| 1238 | |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 1239 | if (Diagnostics->hasErrorOccurred()) { |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1240 | // There were errors parsing the preamble, so no precompiled header was |
| 1241 | // generated. Forget that we even tried. |
Douglas Gregor | 06e5044 | 2010-09-27 16:43:25 +0000 | [diff] [blame] | 1242 | // FIXME: Should we leave a note for ourselves to try again? |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1243 | llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk(); |
| 1244 | Preamble.clear(); |
| 1245 | if (CreatedPreambleBuffer) |
| 1246 | delete NewPreamble.first; |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1247 | if (PreambleTimer) |
| 1248 | PreambleTimer->stopTimer(); |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 1249 | TopLevelDeclsInPreamble.clear(); |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1250 | PreambleRebuildCounter = DefaultPreambleRebuildInterval; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 1251 | PreprocessorOpts.eraseRemappedFile( |
| 1252 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1253 | return 0; |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | // Keep track of the preamble we precompiled. |
| 1257 | PreambleFile = FrontendOpts.OutputFile; |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 1258 | NumStoredDiagnosticsInPreamble = StoredDiagnostics.size(); |
| 1259 | NumWarningsInPreamble = getDiagnostics().getNumWarnings(); |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1260 | |
| 1261 | // Keep track of all of the files that the source manager knows about, |
| 1262 | // so we can verify whether they have changed or not. |
| 1263 | FilesInPreamble.clear(); |
| 1264 | SourceManager &SourceMgr = Clang.getSourceManager(); |
| 1265 | const llvm::MemoryBuffer *MainFileBuffer |
| 1266 | = SourceMgr.getBuffer(SourceMgr.getMainFileID()); |
| 1267 | for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(), |
| 1268 | FEnd = SourceMgr.fileinfo_end(); |
| 1269 | F != FEnd; |
| 1270 | ++F) { |
| 1271 | const FileEntry *File = F->second->Entry; |
| 1272 | if (!File || F->second->getRawBuffer() == MainFileBuffer) |
| 1273 | continue; |
| 1274 | |
| 1275 | FilesInPreamble[File->getName()] |
| 1276 | = std::make_pair(F->second->getSize(), File->getModificationTime()); |
| 1277 | } |
| 1278 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1279 | if (PreambleTimer) |
| 1280 | PreambleTimer->stopTimer(); |
Douglas Gregor | 06e5044 | 2010-09-27 16:43:25 +0000 | [diff] [blame] | 1281 | |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1282 | PreambleRebuildCounter = 1; |
Douglas Gregor | 671947b | 2010-08-19 01:33:06 +0000 | [diff] [blame] | 1283 | PreprocessorOpts.eraseRemappedFile( |
| 1284 | PreprocessorOpts.remapped_file_buffer_end() - 1); |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1285 | return CreatePaddedMainFileBuffer(NewPreamble.first, |
| 1286 | CreatedPreambleBuffer, |
| 1287 | PreambleReservedSize, |
| 1288 | FrontendOpts.Inputs[0].second); |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1289 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1290 | |
Douglas Gregor | eb8837b | 2010-08-03 19:06:41 +0000 | [diff] [blame] | 1291 | void ASTUnit::RealizeTopLevelDeclsFromPreamble() { |
| 1292 | std::vector<Decl *> Resolved; |
| 1293 | Resolved.reserve(TopLevelDeclsInPreamble.size()); |
| 1294 | ExternalASTSource &Source = *getASTContext().getExternalSource(); |
| 1295 | for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) { |
| 1296 | // Resolve the declaration ID to an actual declaration, possibly |
| 1297 | // deserializing the declaration in the process. |
| 1298 | Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]); |
| 1299 | if (D) |
| 1300 | Resolved.push_back(D); |
| 1301 | } |
| 1302 | TopLevelDeclsInPreamble.clear(); |
| 1303 | TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end()); |
| 1304 | } |
| 1305 | |
| 1306 | unsigned ASTUnit::getMaxPCHLevel() const { |
| 1307 | if (!getOnlyLocalDecls()) |
| 1308 | return Decl::MaxPCHLevel; |
| 1309 | |
| 1310 | unsigned Result = 0; |
| 1311 | if (isMainFileAST() || SavedMainFileBuffer) |
| 1312 | ++Result; |
| 1313 | return Result; |
| 1314 | } |
| 1315 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1316 | ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI, |
| 1317 | llvm::IntrusiveRefCntPtr<Diagnostic> Diags, |
| 1318 | bool OnlyLocalDecls, |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1319 | bool CaptureDiagnostics, |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1320 | bool PrecompilePreamble, |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1321 | bool CompleteTranslationUnit, |
| 1322 | bool CacheCodeCompletionResults) { |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1323 | if (!Diags.getPtr()) { |
| 1324 | // No diagnostics engine was provided, so create our own diagnostics object |
| 1325 | // with the default options. |
| 1326 | DiagnosticOptions DiagOpts; |
| 1327 | Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0); |
| 1328 | } |
| 1329 | |
| 1330 | // Create the AST unit. |
| 1331 | llvm::OwningPtr<ASTUnit> AST; |
| 1332 | AST.reset(new ASTUnit(false)); |
| 1333 | AST->Diagnostics = Diags; |
| 1334 | AST->CaptureDiagnostics = CaptureDiagnostics; |
| 1335 | AST->OnlyLocalDecls = OnlyLocalDecls; |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1336 | AST->CompleteTranslationUnit = CompleteTranslationUnit; |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1337 | AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1338 | AST->Invocation.reset(CI); |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1339 | CI->getPreprocessorOpts().RetainRemappedFileBuffers = true; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1340 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1341 | if (getenv("LIBCLANG_TIMING")) |
| 1342 | AST->TimerGroup.reset( |
| 1343 | new llvm::TimerGroup(CI->getFrontendOpts().Inputs[0].second)); |
| 1344 | |
| 1345 | |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1346 | llvm::MemoryBuffer *OverrideMainBuffer = 0; |
Douglas Gregor | fd0b870 | 2010-07-28 22:12:37 +0000 | [diff] [blame] | 1347 | // FIXME: When C++ PCH is ready, allow use of it for a precompiled preamble. |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1348 | if (PrecompilePreamble && !CI->getLangOpts().CPlusPlus) { |
| 1349 | AST->PreambleRebuildCounter = 1; |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1350 | OverrideMainBuffer |
| 1351 | = AST->getMainBufferWithPrecompiledPreamble(*AST->Invocation); |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1352 | } |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1353 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1354 | llvm::Timer *ParsingTimer = 0; |
| 1355 | if (AST->TimerGroup.get()) { |
| 1356 | ParsingTimer = new llvm::Timer("Initial parse", *AST->TimerGroup); |
| 1357 | ParsingTimer->startTimer(); |
| 1358 | AST->Timers.push_back(ParsingTimer); |
| 1359 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1360 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1361 | bool Failed = AST->Parse(OverrideMainBuffer); |
| 1362 | if (ParsingTimer) |
| 1363 | ParsingTimer->stopTimer(); |
| 1364 | |
| 1365 | return Failed? 0 : AST.take(); |
Daniel Dunbar | 521bf9c | 2009-12-01 09:51:01 +0000 | [diff] [blame] | 1366 | } |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1367 | |
| 1368 | ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin, |
| 1369 | const char **ArgEnd, |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 1370 | llvm::IntrusiveRefCntPtr<Diagnostic> Diags, |
Daniel Dunbar | 869824e | 2009-12-13 03:46:13 +0000 | [diff] [blame] | 1371 | llvm::StringRef ResourceFilesPath, |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1372 | bool OnlyLocalDecls, |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 1373 | RemappedFile *RemappedFiles, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 1374 | unsigned NumRemappedFiles, |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1375 | bool CaptureDiagnostics, |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1376 | bool PrecompilePreamble, |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1377 | bool CompleteTranslationUnit, |
| 1378 | bool CacheCodeCompletionResults) { |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 1379 | bool CreatedDiagnosticsObject = false; |
| 1380 | |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 1381 | if (!Diags.getPtr()) { |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1382 | // No diagnostics engine was provided, so create our own diagnostics object |
| 1383 | // with the default options. |
| 1384 | DiagnosticOptions DiagOpts; |
Douglas Gregor | 2801977 | 2010-04-05 23:52:57 +0000 | [diff] [blame] | 1385 | Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0); |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 1386 | CreatedDiagnosticsObject = true; |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1387 | } |
| 1388 | |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1389 | llvm::SmallVector<const char *, 16> Args; |
| 1390 | Args.push_back("<clang>"); // FIXME: Remove dummy argument. |
| 1391 | Args.insert(Args.end(), ArgBegin, ArgEnd); |
| 1392 | |
| 1393 | // FIXME: Find a cleaner way to force the driver into restricted modes. We |
| 1394 | // also want to force it to use clang. |
| 1395 | Args.push_back("-fsyntax-only"); |
| 1396 | |
Daniel Dunbar | 869824e | 2009-12-13 03:46:13 +0000 | [diff] [blame] | 1397 | // FIXME: We shouldn't have to pass in the path info. |
Daniel Dunbar | 0bbad51 | 2010-07-19 00:44:04 +0000 | [diff] [blame] | 1398 | driver::Driver TheDriver("clang", llvm::sys::getHostTriple(), |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1399 | "a.out", false, false, *Diags); |
Daniel Dunbar | 3bd54cc | 2010-01-25 00:44:02 +0000 | [diff] [blame] | 1400 | |
| 1401 | // Don't check that inputs exist, they have been remapped. |
| 1402 | TheDriver.setCheckInputsExist(false); |
| 1403 | |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1404 | llvm::OwningPtr<driver::Compilation> C( |
| 1405 | TheDriver.BuildCompilation(Args.size(), Args.data())); |
| 1406 | |
| 1407 | // We expect to get back exactly one command job, if we didn't something |
| 1408 | // failed. |
| 1409 | const driver::JobList &Jobs = C->getJobs(); |
| 1410 | if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) { |
| 1411 | llvm::SmallString<256> Msg; |
| 1412 | llvm::raw_svector_ostream OS(Msg); |
| 1413 | C->PrintJob(OS, C->getJobs(), "; ", true); |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1414 | Diags->Report(diag::err_fe_expected_compiler_job) << OS.str(); |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1415 | return 0; |
| 1416 | } |
| 1417 | |
| 1418 | const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin()); |
| 1419 | if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") { |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1420 | Diags->Report(diag::err_fe_expected_clang_command); |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1421 | return 0; |
| 1422 | } |
| 1423 | |
| 1424 | const driver::ArgStringList &CCArgs = Cmd->getArguments(); |
Daniel Dunbar | 807b061 | 2010-01-30 21:47:16 +0000 | [diff] [blame] | 1425 | llvm::OwningPtr<CompilerInvocation> CI(new CompilerInvocation); |
Dan Gohman | cb421fa | 2010-04-19 16:39:44 +0000 | [diff] [blame] | 1426 | CompilerInvocation::CreateFromArgs(*CI, |
| 1427 | const_cast<const char **>(CCArgs.data()), |
| 1428 | const_cast<const char **>(CCArgs.data()) + |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 1429 | CCArgs.size(), |
Douglas Gregor | 3687e9d | 2010-04-05 21:10:19 +0000 | [diff] [blame] | 1430 | *Diags); |
Daniel Dunbar | 1e69fe3 | 2009-12-13 03:45:58 +0000 | [diff] [blame] | 1431 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 1432 | // Override any files that need remapping |
| 1433 | for (unsigned I = 0; I != NumRemappedFiles; ++I) |
Daniel Dunbar | 807b061 | 2010-01-30 21:47:16 +0000 | [diff] [blame] | 1434 | CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, |
Daniel Dunbar | b26d483 | 2010-02-16 01:55:04 +0000 | [diff] [blame] | 1435 | RemappedFiles[I].second); |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 1436 | |
Daniel Dunbar | 8b9adfe | 2009-12-15 00:06:45 +0000 | [diff] [blame] | 1437 | // Override the resources path. |
Daniel Dunbar | 807b061 | 2010-01-30 21:47:16 +0000 | [diff] [blame] | 1438 | CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath; |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1439 | |
Douglas Gregor | f421089 | 2010-08-18 23:38:21 +0000 | [diff] [blame] | 1440 | CI->getFrontendOpts().DisableFree = false; |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 1441 | return LoadFromCompilerInvocation(CI.take(), Diags, OnlyLocalDecls, |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1442 | CaptureDiagnostics, PrecompilePreamble, |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1443 | CompleteTranslationUnit, |
| 1444 | CacheCodeCompletionResults); |
Daniel Dunbar | 7b55668 | 2009-12-02 03:23:45 +0000 | [diff] [blame] | 1445 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1446 | |
| 1447 | bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) { |
| 1448 | if (!Invocation.get()) |
| 1449 | return true; |
| 1450 | |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1451 | llvm::Timer *ReparsingTimer = 0; |
| 1452 | if (TimerGroup.get()) { |
| 1453 | ReparsingTimer = new llvm::Timer("Reparse", *TimerGroup); |
| 1454 | ReparsingTimer->startTimer(); |
| 1455 | Timers.push_back(ReparsingTimer); |
| 1456 | } |
| 1457 | |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1458 | // Remap files. |
Douglas Gregor | f128fed | 2010-08-20 00:02:33 +0000 | [diff] [blame] | 1459 | PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); |
| 1460 | for (PreprocessorOptions::remapped_file_buffer_iterator |
| 1461 | R = PPOpts.remapped_file_buffer_begin(), |
| 1462 | REnd = PPOpts.remapped_file_buffer_end(); |
| 1463 | R != REnd; |
| 1464 | ++R) { |
| 1465 | delete R->second; |
| 1466 | } |
Douglas Gregor | cc5888d | 2010-07-31 00:40:00 +0000 | [diff] [blame] | 1467 | Invocation->getPreprocessorOpts().clearRemappedFiles(); |
| 1468 | for (unsigned I = 0; I != NumRemappedFiles; ++I) |
| 1469 | Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, |
| 1470 | RemappedFiles[I].second); |
| 1471 | |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1472 | // If we have a preamble file lying around, or if we might try to |
| 1473 | // build a precompiled preamble, do so now. |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1474 | llvm::MemoryBuffer *OverrideMainBuffer = 0; |
Douglas Gregor | eababfb | 2010-08-04 05:53:38 +0000 | [diff] [blame] | 1475 | if (!PreambleFile.empty() || PreambleRebuildCounter > 0) |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1476 | OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation); |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1477 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1478 | // Clear out the diagnostics state. |
Douglas Gregor | c0659ec | 2010-08-02 20:51:39 +0000 | [diff] [blame] | 1479 | if (!OverrideMainBuffer) |
| 1480 | getDiagnostics().Reset(); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1481 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1482 | // Parse the sources |
Douglas Gregor | 754f349 | 2010-07-24 00:38:13 +0000 | [diff] [blame] | 1483 | bool Result = Parse(OverrideMainBuffer); |
Douglas Gregor | 385103b | 2010-07-30 20:58:08 +0000 | [diff] [blame] | 1484 | if (ReparsingTimer) |
| 1485 | ReparsingTimer->stopTimer(); |
Douglas Gregor | 727d93e | 2010-08-17 00:40:40 +0000 | [diff] [blame] | 1486 | |
| 1487 | if (ShouldCacheCodeCompletionResults) { |
| 1488 | if (CacheCodeCompletionCoolDown > 0) |
| 1489 | --CacheCodeCompletionCoolDown; |
| 1490 | else if (top_level_size() != NumTopLevelDeclsAtLastCompletionCache) |
| 1491 | CacheCodeCompletionResults(); |
| 1492 | } |
| 1493 | |
Douglas Gregor | 175c4a9 | 2010-07-23 23:58:40 +0000 | [diff] [blame] | 1494 | return Result; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1495 | } |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1496 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1497 | //----------------------------------------------------------------------------// |
| 1498 | // Code completion |
| 1499 | //----------------------------------------------------------------------------// |
| 1500 | |
| 1501 | namespace { |
| 1502 | /// \brief Code completion consumer that combines the cached code-completion |
| 1503 | /// results from an ASTUnit with the code-completion results provided to it, |
| 1504 | /// then passes the result on to |
| 1505 | class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer { |
| 1506 | unsigned NormalContexts; |
| 1507 | ASTUnit &AST; |
| 1508 | CodeCompleteConsumer &Next; |
| 1509 | |
| 1510 | public: |
| 1511 | AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next, |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1512 | bool IncludeMacros, bool IncludeCodePatterns, |
| 1513 | bool IncludeGlobals) |
| 1514 | : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals, |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1515 | Next.isOutputBinary()), AST(AST), Next(Next) |
| 1516 | { |
| 1517 | // Compute the set of contexts in which we will look when we don't have |
| 1518 | // any information about the specific context. |
| 1519 | NormalContexts |
| 1520 | = (1 << (CodeCompletionContext::CCC_TopLevel - 1)) |
| 1521 | | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1)) |
| 1522 | | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1)) |
| 1523 | | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1)) |
| 1524 | | (1 << (CodeCompletionContext::CCC_Statement - 1)) |
| 1525 | | (1 << (CodeCompletionContext::CCC_Expression - 1)) |
| 1526 | | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)) |
| 1527 | | (1 << (CodeCompletionContext::CCC_MemberAccess - 1)) |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1528 | | (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1)) |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1529 | | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)) |
| 1530 | | (1 << (CodeCompletionContext::CCC_Recovery - 1)); |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1531 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1532 | if (AST.getASTContext().getLangOptions().CPlusPlus) |
| 1533 | NormalContexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1)) |
| 1534 | | (1 << (CodeCompletionContext::CCC_UnionTag - 1)) |
| 1535 | | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1)); |
| 1536 | } |
| 1537 | |
| 1538 | virtual void ProcessCodeCompleteResults(Sema &S, |
| 1539 | CodeCompletionContext Context, |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1540 | CodeCompletionResult *Results, |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1541 | unsigned NumResults); |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1542 | |
| 1543 | virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg, |
| 1544 | OverloadCandidate *Candidates, |
| 1545 | unsigned NumCandidates) { |
| 1546 | Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates); |
| 1547 | } |
| 1548 | }; |
| 1549 | } |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1550 | |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1551 | /// \brief Helper function that computes which global names are hidden by the |
| 1552 | /// local code-completion results. |
| 1553 | void CalculateHiddenNames(const CodeCompletionContext &Context, |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1554 | CodeCompletionResult *Results, |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1555 | unsigned NumResults, |
| 1556 | ASTContext &Ctx, |
| 1557 | llvm::StringSet<> &HiddenNames) { |
| 1558 | bool OnlyTagNames = false; |
| 1559 | switch (Context.getKind()) { |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1560 | case CodeCompletionContext::CCC_Recovery: |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1561 | case CodeCompletionContext::CCC_TopLevel: |
| 1562 | case CodeCompletionContext::CCC_ObjCInterface: |
| 1563 | case CodeCompletionContext::CCC_ObjCImplementation: |
| 1564 | case CodeCompletionContext::CCC_ObjCIvarList: |
| 1565 | case CodeCompletionContext::CCC_ClassStructUnion: |
| 1566 | case CodeCompletionContext::CCC_Statement: |
| 1567 | case CodeCompletionContext::CCC_Expression: |
| 1568 | case CodeCompletionContext::CCC_ObjCMessageReceiver: |
| 1569 | case CodeCompletionContext::CCC_MemberAccess: |
| 1570 | case CodeCompletionContext::CCC_Namespace: |
| 1571 | case CodeCompletionContext::CCC_Type: |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 1572 | case CodeCompletionContext::CCC_Name: |
| 1573 | case CodeCompletionContext::CCC_PotentiallyQualifiedName: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1574 | case CodeCompletionContext::CCC_ParenthesizedExpression: |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1575 | break; |
| 1576 | |
| 1577 | case CodeCompletionContext::CCC_EnumTag: |
| 1578 | case CodeCompletionContext::CCC_UnionTag: |
| 1579 | case CodeCompletionContext::CCC_ClassOrStructTag: |
| 1580 | OnlyTagNames = true; |
| 1581 | break; |
| 1582 | |
| 1583 | case CodeCompletionContext::CCC_ObjCProtocolName: |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1584 | case CodeCompletionContext::CCC_MacroName: |
| 1585 | case CodeCompletionContext::CCC_MacroNameUse: |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 1586 | case CodeCompletionContext::CCC_PreprocessorExpression: |
Douglas Gregor | 721f359 | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 1587 | case CodeCompletionContext::CCC_PreprocessorDirective: |
Douglas Gregor | 59a6694 | 2010-08-25 18:04:30 +0000 | [diff] [blame] | 1588 | case CodeCompletionContext::CCC_NaturalLanguage: |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 1589 | case CodeCompletionContext::CCC_SelectorName: |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 1590 | case CodeCompletionContext::CCC_TypeQualifiers: |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1591 | case CodeCompletionContext::CCC_Other: |
Douglas Gregor | 721f359 | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 1592 | // We're looking for nothing, or we're looking for names that cannot |
| 1593 | // be hidden. |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1594 | return; |
| 1595 | } |
| 1596 | |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1597 | typedef CodeCompletionResult Result; |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1598 | for (unsigned I = 0; I != NumResults; ++I) { |
| 1599 | if (Results[I].Kind != Result::RK_Declaration) |
| 1600 | continue; |
| 1601 | |
| 1602 | unsigned IDNS |
| 1603 | = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace(); |
| 1604 | |
| 1605 | bool Hiding = false; |
| 1606 | if (OnlyTagNames) |
| 1607 | Hiding = (IDNS & Decl::IDNS_Tag); |
| 1608 | else { |
| 1609 | unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member | |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 1610 | Decl::IDNS_Namespace | Decl::IDNS_Ordinary | |
| 1611 | Decl::IDNS_NonMemberOperator); |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1612 | if (Ctx.getLangOptions().CPlusPlus) |
| 1613 | HiddenIDNS |= Decl::IDNS_Tag; |
| 1614 | Hiding = (IDNS & HiddenIDNS); |
| 1615 | } |
| 1616 | |
| 1617 | if (!Hiding) |
| 1618 | continue; |
| 1619 | |
| 1620 | DeclarationName Name = Results[I].Declaration->getDeclName(); |
| 1621 | if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo()) |
| 1622 | HiddenNames.insert(Identifier->getName()); |
| 1623 | else |
| 1624 | HiddenNames.insert(Name.getAsString()); |
| 1625 | } |
| 1626 | } |
| 1627 | |
| 1628 | |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1629 | void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S, |
| 1630 | CodeCompletionContext Context, |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1631 | CodeCompletionResult *Results, |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1632 | unsigned NumResults) { |
| 1633 | // Merge the results we were given with the results we cached. |
| 1634 | bool AddedResult = false; |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1635 | unsigned InContexts |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1636 | = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1637 | : (1 << (Context.getKind() - 1))); |
| 1638 | |
| 1639 | // Contains the set of names that are hidden by "local" completion results. |
| 1640 | llvm::StringSet<> HiddenNames; |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1641 | llvm::SmallVector<CodeCompletionString *, 4> StringsToDestroy; |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1642 | typedef CodeCompletionResult Result; |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1643 | llvm::SmallVector<Result, 8> AllResults; |
| 1644 | for (ASTUnit::cached_completion_iterator |
Douglas Gregor | 5535d57 | 2010-08-16 21:23:13 +0000 | [diff] [blame] | 1645 | C = AST.cached_completion_begin(), |
| 1646 | CEnd = AST.cached_completion_end(); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1647 | C != CEnd; ++C) { |
| 1648 | // If the context we are in matches any of the contexts we are |
| 1649 | // interested in, we'll add this result. |
| 1650 | if ((C->ShowInContexts & InContexts) == 0) |
| 1651 | continue; |
| 1652 | |
| 1653 | // If we haven't added any results previously, do so now. |
| 1654 | if (!AddedResult) { |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1655 | CalculateHiddenNames(Context, Results, NumResults, S.Context, |
| 1656 | HiddenNames); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1657 | AllResults.insert(AllResults.end(), Results, Results + NumResults); |
| 1658 | AddedResult = true; |
| 1659 | } |
| 1660 | |
Douglas Gregor | 5f808c2 | 2010-08-16 21:18:39 +0000 | [diff] [blame] | 1661 | // Determine whether this global completion result is hidden by a local |
| 1662 | // completion result. If so, skip it. |
| 1663 | if (C->Kind != CXCursor_MacroDefinition && |
| 1664 | HiddenNames.count(C->Completion->getTypedText())) |
| 1665 | continue; |
| 1666 | |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1667 | // Adjust priority based on similar type classes. |
| 1668 | unsigned Priority = C->Priority; |
Douglas Gregor | 4125c37 | 2010-08-25 18:03:13 +0000 | [diff] [blame] | 1669 | CXCursorKind CursorKind = C->Kind; |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1670 | CodeCompletionString *Completion = C->Completion; |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1671 | if (!Context.getPreferredType().isNull()) { |
| 1672 | if (C->Kind == CXCursor_MacroDefinition) { |
| 1673 | Priority = getMacroUsagePriority(C->Completion->getTypedText(), |
Douglas Gregor | b05496d | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 1674 | S.getLangOptions(), |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1675 | Context.getPreferredType()->isAnyPointerType()); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1676 | } else if (C->Type) { |
| 1677 | CanQualType Expected |
Douglas Gregor | 5535d57 | 2010-08-16 21:23:13 +0000 | [diff] [blame] | 1678 | = S.Context.getCanonicalType( |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1679 | Context.getPreferredType().getUnqualifiedType()); |
| 1680 | SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected); |
| 1681 | if (ExpectedSTC == C->TypeClass) { |
| 1682 | // We know this type is similar; check for an exact match. |
| 1683 | llvm::StringMap<unsigned> &CachedCompletionTypes |
Douglas Gregor | 5535d57 | 2010-08-16 21:23:13 +0000 | [diff] [blame] | 1684 | = AST.getCachedCompletionTypes(); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1685 | llvm::StringMap<unsigned>::iterator Pos |
Douglas Gregor | 5535d57 | 2010-08-16 21:23:13 +0000 | [diff] [blame] | 1686 | = CachedCompletionTypes.find(QualType(Expected).getAsString()); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1687 | if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type) |
| 1688 | Priority /= CCF_ExactTypeMatch; |
| 1689 | else |
| 1690 | Priority /= CCF_SimilarTypeMatch; |
| 1691 | } |
| 1692 | } |
| 1693 | } |
| 1694 | |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1695 | // Adjust the completion string, if required. |
| 1696 | if (C->Kind == CXCursor_MacroDefinition && |
| 1697 | Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) { |
| 1698 | // Create a new code-completion string that just contains the |
| 1699 | // macro name, without its arguments. |
| 1700 | Completion = new CodeCompletionString; |
| 1701 | Completion->AddTypedTextChunk(C->Completion->getTypedText()); |
| 1702 | StringsToDestroy.push_back(Completion); |
Douglas Gregor | 4125c37 | 2010-08-25 18:03:13 +0000 | [diff] [blame] | 1703 | CursorKind = CXCursor_NotImplemented; |
| 1704 | Priority = CCP_CodePattern; |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1705 | } |
| 1706 | |
Douglas Gregor | 4125c37 | 2010-08-25 18:03:13 +0000 | [diff] [blame] | 1707 | AllResults.push_back(Result(Completion, Priority, CursorKind, |
Douglas Gregor | 58ddb60 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 1708 | C->Availability)); |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | // If we did not add any cached completion results, just forward the |
| 1712 | // results we were given to the next consumer. |
| 1713 | if (!AddedResult) { |
| 1714 | Next.ProcessCodeCompleteResults(S, Context, Results, NumResults); |
| 1715 | return; |
| 1716 | } |
Douglas Gregor | 1e5e668 | 2010-08-26 13:48:20 +0000 | [diff] [blame] | 1717 | |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1718 | Next.ProcessCodeCompleteResults(S, Context, AllResults.data(), |
| 1719 | AllResults.size()); |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 1720 | |
| 1721 | for (unsigned I = 0, N = StringsToDestroy.size(); I != N; ++I) |
| 1722 | delete StringsToDestroy[I]; |
Douglas Gregor | 697ca6d | 2010-08-16 20:01:48 +0000 | [diff] [blame] | 1723 | } |
| 1724 | |
| 1725 | |
| 1726 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1727 | void ASTUnit::CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column, |
| 1728 | RemappedFile *RemappedFiles, |
| 1729 | unsigned NumRemappedFiles, |
Douglas Gregor | cee235c | 2010-08-05 09:09:23 +0000 | [diff] [blame] | 1730 | bool IncludeMacros, |
| 1731 | bool IncludeCodePatterns, |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1732 | CodeCompleteConsumer &Consumer, |
| 1733 | Diagnostic &Diag, LangOptions &LangOpts, |
| 1734 | SourceManager &SourceMgr, FileManager &FileMgr, |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1735 | llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics, |
| 1736 | llvm::SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) { |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1737 | if (!Invocation.get()) |
| 1738 | return; |
| 1739 | |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1740 | llvm::Timer *CompletionTimer = 0; |
| 1741 | if (TimerGroup.get()) { |
| 1742 | llvm::SmallString<128> TimerName; |
| 1743 | llvm::raw_svector_ostream TimerNameOut(TimerName); |
| 1744 | TimerNameOut << "Code completion @ " << File << ":" << Line << ":" |
| 1745 | << Column; |
| 1746 | CompletionTimer = new llvm::Timer(TimerNameOut.str(), *TimerGroup); |
| 1747 | CompletionTimer->startTimer(); |
| 1748 | Timers.push_back(CompletionTimer); |
| 1749 | } |
| 1750 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1751 | CompilerInvocation CCInvocation(*Invocation); |
| 1752 | FrontendOptions &FrontendOpts = CCInvocation.getFrontendOpts(); |
| 1753 | PreprocessorOptions &PreprocessorOpts = CCInvocation.getPreprocessorOpts(); |
Douglas Gregor | cee235c | 2010-08-05 09:09:23 +0000 | [diff] [blame] | 1754 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1755 | FrontendOpts.ShowMacrosInCodeCompletion |
| 1756 | = IncludeMacros && CachedCompletionResults.empty(); |
Douglas Gregor | cee235c | 2010-08-05 09:09:23 +0000 | [diff] [blame] | 1757 | FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns; |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1758 | FrontendOpts.ShowGlobalSymbolsInCodeCompletion |
| 1759 | = CachedCompletionResults.empty(); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1760 | FrontendOpts.CodeCompletionAt.FileName = File; |
| 1761 | FrontendOpts.CodeCompletionAt.Line = Line; |
| 1762 | FrontendOpts.CodeCompletionAt.Column = Column; |
| 1763 | |
Douglas Gregor | cee235c | 2010-08-05 09:09:23 +0000 | [diff] [blame] | 1764 | // Turn on spell-checking when performing code completion. It leads |
| 1765 | // to better results. |
| 1766 | unsigned SpellChecking = CCInvocation.getLangOpts().SpellChecking; |
| 1767 | CCInvocation.getLangOpts().SpellChecking = 1; |
| 1768 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1769 | // Set the language options appropriately. |
| 1770 | LangOpts = CCInvocation.getLangOpts(); |
| 1771 | |
| 1772 | CompilerInstance Clang; |
| 1773 | Clang.setInvocation(&CCInvocation); |
| 1774 | OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second; |
| 1775 | |
| 1776 | // Set up diagnostics, capturing any diagnostics produced. |
| 1777 | Clang.setDiagnostics(&Diag); |
| 1778 | CaptureDroppedDiagnostics Capture(true, |
| 1779 | Clang.getDiagnostics(), |
| 1780 | StoredDiagnostics); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1781 | |
| 1782 | // Create the target instance. |
| 1783 | Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(), |
| 1784 | Clang.getTargetOpts())); |
| 1785 | if (!Clang.hasTarget()) { |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1786 | Clang.takeInvocation(); |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 1787 | CCInvocation.getLangOpts().SpellChecking = SpellChecking; |
| 1788 | return; |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1789 | } |
| 1790 | |
| 1791 | // Inform the target of the language options. |
| 1792 | // |
| 1793 | // FIXME: We shouldn't need to do this, the target should be immutable once |
| 1794 | // created. This complexity should be lifted elsewhere. |
| 1795 | Clang.getTarget().setForcedLangOptions(Clang.getLangOpts()); |
| 1796 | |
| 1797 | assert(Clang.getFrontendOpts().Inputs.size() == 1 && |
| 1798 | "Invocation must have exactly one source file!"); |
| 1799 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST && |
| 1800 | "FIXME: AST inputs not yet supported here!"); |
| 1801 | assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR && |
| 1802 | "IR inputs not support here!"); |
| 1803 | |
| 1804 | |
| 1805 | // Use the source and file managers that we were given. |
| 1806 | Clang.setFileManager(&FileMgr); |
| 1807 | Clang.setSourceManager(&SourceMgr); |
| 1808 | |
| 1809 | // Remap files. |
| 1810 | PreprocessorOpts.clearRemappedFiles(); |
Douglas Gregor | b75d3df | 2010-08-04 17:07:00 +0000 | [diff] [blame] | 1811 | PreprocessorOpts.RetainRemappedFileBuffers = true; |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1812 | for (unsigned I = 0; I != NumRemappedFiles; ++I) { |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1813 | PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, |
| 1814 | RemappedFiles[I].second); |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1815 | OwnedBuffers.push_back(RemappedFiles[I].second); |
| 1816 | } |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1817 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1818 | // Use the code completion consumer we were given, but adding any cached |
| 1819 | // code-completion results. |
| 1820 | AugmentedCodeCompleteConsumer |
| 1821 | AugmentedConsumer(*this, Consumer, FrontendOpts.ShowMacrosInCodeCompletion, |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1822 | FrontendOpts.ShowCodePatternsInCodeCompletion, |
| 1823 | FrontendOpts.ShowGlobalSymbolsInCodeCompletion); |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 1824 | Clang.setCodeCompletionConsumer(&AugmentedConsumer); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1825 | |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1826 | // If we have a precompiled preamble, try to use it. We only allow |
| 1827 | // the use of the precompiled preamble if we're if the completion |
| 1828 | // point is within the main file, after the end of the precompiled |
| 1829 | // preamble. |
| 1830 | llvm::MemoryBuffer *OverrideMainBuffer = 0; |
| 1831 | if (!PreambleFile.empty()) { |
| 1832 | using llvm::sys::FileStatus; |
| 1833 | llvm::sys::PathWithStatus CompleteFilePath(File); |
| 1834 | llvm::sys::PathWithStatus MainPath(OriginalSourceFile); |
| 1835 | if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus()) |
| 1836 | if (const FileStatus *MainStatus = MainPath.getFileStatus()) |
| 1837 | if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID()) |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1838 | OverrideMainBuffer |
Douglas Gregor | c9c29a8 | 2010-08-25 18:04:15 +0000 | [diff] [blame] | 1839 | = getMainBufferWithPrecompiledPreamble(CCInvocation, false, |
| 1840 | Line - 1); |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1841 | } |
| 1842 | |
| 1843 | // If the main file has been overridden due to the use of a preamble, |
| 1844 | // make that override happen and introduce the preamble. |
| 1845 | if (OverrideMainBuffer) { |
| 1846 | PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer); |
| 1847 | PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size(); |
| 1848 | PreprocessorOpts.PrecompiledPreambleBytes.second |
| 1849 | = PreambleEndsAtStartOfLine; |
| 1850 | PreprocessorOpts.ImplicitPCHInclude = PreambleFile; |
| 1851 | PreprocessorOpts.DisablePCHValidation = true; |
| 1852 | |
| 1853 | // The stored diagnostics have the old source manager. Copy them |
| 1854 | // to our output set of stored diagnostics, updating the source |
| 1855 | // manager to the one we were given. |
| 1856 | for (unsigned I = 0, N = this->StoredDiagnostics.size(); I != N; ++I) { |
| 1857 | StoredDiagnostics.push_back(this->StoredDiagnostics[I]); |
| 1858 | FullSourceLoc Loc(StoredDiagnostics[I].getLocation(), SourceMgr); |
| 1859 | StoredDiagnostics[I].setLocation(Loc); |
| 1860 | } |
Douglas Gregor | 2283d79 | 2010-08-20 00:59:43 +0000 | [diff] [blame] | 1861 | |
| 1862 | OwnedBuffers.push_back(OverrideMainBuffer); |
Douglas Gregor | f128fed | 2010-08-20 00:02:33 +0000 | [diff] [blame] | 1863 | } else { |
| 1864 | PreprocessorOpts.PrecompiledPreambleBytes.first = 0; |
| 1865 | PreprocessorOpts.PrecompiledPreambleBytes.second = false; |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1866 | } |
| 1867 | |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1868 | llvm::OwningPtr<SyntaxOnlyAction> Act; |
| 1869 | Act.reset(new SyntaxOnlyAction); |
| 1870 | if (Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second, |
| 1871 | Clang.getFrontendOpts().Inputs[0].first)) { |
| 1872 | Act->Execute(); |
| 1873 | Act->EndSourceFile(); |
| 1874 | } |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 1875 | |
| 1876 | if (CompletionTimer) |
| 1877 | CompletionTimer->stopTimer(); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1878 | |
| 1879 | // Steal back our resources. |
| 1880 | Clang.takeFileManager(); |
| 1881 | Clang.takeSourceManager(); |
| 1882 | Clang.takeInvocation(); |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1883 | Clang.takeCodeCompletionConsumer(); |
Douglas Gregor | cee235c | 2010-08-05 09:09:23 +0000 | [diff] [blame] | 1884 | CCInvocation.getLangOpts().SpellChecking = SpellChecking; |
Douglas Gregor | 1abc6bc | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 1885 | } |
Douglas Gregor | 7ae2faa | 2010-08-13 05:36:37 +0000 | [diff] [blame] | 1886 | |
| 1887 | bool ASTUnit::Save(llvm::StringRef File) { |
| 1888 | if (getDiagnostics().hasErrorOccurred()) |
| 1889 | return true; |
| 1890 | |
| 1891 | // FIXME: Can we somehow regenerate the stat cache here, or do we need to |
| 1892 | // unconditionally create a stat cache when we parse the file? |
| 1893 | std::string ErrorInfo; |
Benjamin Kramer | 1395c5d | 2010-08-15 16:54:31 +0000 | [diff] [blame] | 1894 | llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo, |
| 1895 | llvm::raw_fd_ostream::F_Binary); |
Douglas Gregor | 7ae2faa | 2010-08-13 05:36:37 +0000 | [diff] [blame] | 1896 | if (!ErrorInfo.empty() || Out.has_error()) |
| 1897 | return true; |
| 1898 | |
| 1899 | std::vector<unsigned char> Buffer; |
| 1900 | llvm::BitstreamWriter Stream(Buffer); |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 1901 | ASTWriter Writer(Stream); |
| 1902 | Writer.WriteAST(getSema(), 0, 0); |
Douglas Gregor | 7ae2faa | 2010-08-13 05:36:37 +0000 | [diff] [blame] | 1903 | |
| 1904 | // Write the generated bitstream to "Out". |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 1905 | if (!Buffer.empty()) |
| 1906 | Out.write((char *)&Buffer.front(), Buffer.size()); |
Douglas Gregor | 7ae2faa | 2010-08-13 05:36:37 +0000 | [diff] [blame] | 1907 | Out.close(); |
| 1908 | return Out.has_error(); |
| 1909 | } |