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 
14 #include "clang/Frontend/ASTUnit.h"
15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/CommentCommandTraits.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclBase.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclGroup.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclTemplate.h"
24 #include "clang/AST/DeclarationName.h"
25 #include "clang/AST/ExternalASTSource.h"
26 #include "clang/AST/PrettyPrinter.h"
27 #include "clang/AST/Type.h"
28 #include "clang/AST/TypeOrdering.h"
29 #include "clang/Basic/Diagnostic.h"
30 #include "clang/Basic/FileManager.h"
31 #include "clang/Basic/IdentifierTable.h"
32 #include "clang/Basic/LLVM.h"
33 #include "clang/Basic/LangOptions.h"
34 #include "clang/Basic/MemoryBufferCache.h"
35 #include "clang/Basic/Module.h"
36 #include "clang/Basic/SourceLocation.h"
37 #include "clang/Basic/SourceManager.h"
38 #include "clang/Basic/TargetInfo.h"
39 #include "clang/Basic/TargetOptions.h"
40 #include "clang/Basic/VirtualFileSystem.h"
41 #include "clang/Frontend/CompilerInstance.h"
42 #include "clang/Frontend/CompilerInvocation.h"
43 #include "clang/Frontend/FrontendAction.h"
44 #include "clang/Frontend/FrontendActions.h"
45 #include "clang/Frontend/FrontendDiagnostic.h"
46 #include "clang/Frontend/FrontendOptions.h"
47 #include "clang/Frontend/MultiplexConsumer.h"
48 #include "clang/Frontend/PCHContainerOperations.h"
49 #include "clang/Frontend/PrecompiledPreamble.h"
50 #include "clang/Frontend/Utils.h"
51 #include "clang/Lex/HeaderSearch.h"
52 #include "clang/Lex/HeaderSearchOptions.h"
53 #include "clang/Lex/Lexer.h"
54 #include "clang/Lex/PPCallbacks.h"
55 #include "clang/Lex/PreprocessingRecord.h"
56 #include "clang/Lex/Preprocessor.h"
57 #include "clang/Lex/PreprocessorOptions.h"
58 #include "clang/Lex/Token.h"
59 #include "clang/Sema/CodeCompleteConsumer.h"
60 #include "clang/Sema/CodeCompleteOptions.h"
61 #include "clang/Sema/Sema.h"
62 #include "clang/Serialization/ASTBitCodes.h"
63 #include "clang/Serialization/ASTReader.h"
64 #include "clang/Serialization/ASTWriter.h"
65 #include "clang/Serialization/ContinuousRangeMap.h"
66 #include "clang/Serialization/Module.h"
67 #include "llvm/ADT/ArrayRef.h"
68 #include "llvm/ADT/DenseMap.h"
69 #include "llvm/ADT/IntrusiveRefCntPtr.h"
70 #include "llvm/ADT/None.h"
71 #include "llvm/ADT/Optional.h"
72 #include "llvm/ADT/STLExtras.h"
73 #include "llvm/ADT/SmallString.h"
74 #include "llvm/ADT/SmallVector.h"
75 #include "llvm/ADT/StringMap.h"
76 #include "llvm/ADT/StringRef.h"
77 #include "llvm/ADT/StringSet.h"
78 #include "llvm/ADT/Twine.h"
79 #include "llvm/ADT/iterator_range.h"
80 #include "llvm/Bitcode/BitstreamWriter.h"
81 #include "llvm/Support/Allocator.h"
82 #include "llvm/Support/Casting.h"
83 #include "llvm/Support/CrashRecoveryContext.h"
84 #include "llvm/Support/DJB.h"
85 #include "llvm/Support/ErrorHandling.h"
86 #include "llvm/Support/ErrorOr.h"
87 #include "llvm/Support/FileSystem.h"
88 #include "llvm/Support/MemoryBuffer.h"
89 #include "llvm/Support/Mutex.h"
90 #include "llvm/Support/Timer.h"
91 #include "llvm/Support/raw_ostream.h"
92 #include <algorithm>
93 #include <atomic>
94 #include <cassert>
95 #include <cstdint>
96 #include <cstdio>
97 #include <cstdlib>
98 #include <memory>
99 #include <string>
100 #include <tuple>
101 #include <utility>
102 #include <vector>
103 
104 using namespace clang;
105 
106 using llvm::TimeRecord;
107 
108 namespace {
109 
110   class SimpleTimer {
111     bool WantTiming;
112     TimeRecord Start;
113     std::string Output;
114 
115   public:
116     explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
117       if (WantTiming)
118         Start = TimeRecord::getCurrentTime();
119     }
120 
121     ~SimpleTimer() {
122       if (WantTiming) {
123         TimeRecord Elapsed = TimeRecord::getCurrentTime();
124         Elapsed -= Start;
125         llvm::errs() << Output << ':';
126         Elapsed.print(Elapsed, llvm::errs());
127         llvm::errs() << '\n';
128       }
129     }
130 
131     void setOutput(const Twine &Output) {
132       if (WantTiming)
133         this->Output = Output.str();
134     }
135   };
136 
137 } // namespace
138 
139 template <class T>
140 static std::unique_ptr<T> valueOrNull(llvm::ErrorOr<std::unique_ptr<T>> Val) {
141   if (!Val)
142     return nullptr;
143   return std::move(*Val);
144 }
145 
146 template <class T>
147 static bool moveOnNoError(llvm::ErrorOr<T> Val, T &Output) {
148   if (!Val)
149     return false;
150   Output = std::move(*Val);
151   return true;
152 }
153 
154 /// Get a source buffer for \p MainFilePath, handling all file-to-file
155 /// and file-to-buffer remappings inside \p Invocation.
156 static std::unique_ptr<llvm::MemoryBuffer>
157 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation,
158                                   vfs::FileSystem *VFS,
159                                   StringRef FilePath,
160                                   bool isVolatile) {
161   const auto &PreprocessorOpts = Invocation.getPreprocessorOpts();
162 
163   // Try to determine if the main file has been remapped, either from the
164   // command line (to another file) or directly through the compiler
165   // invocation (to a memory buffer).
166   llvm::MemoryBuffer *Buffer = nullptr;
167   std::unique_ptr<llvm::MemoryBuffer> BufferOwner;
168   auto FileStatus = VFS->status(FilePath);
169   if (FileStatus) {
170     llvm::sys::fs::UniqueID MainFileID = FileStatus->getUniqueID();
171 
172     // Check whether there is a file-file remapping of the main file
173     for (const auto &RF : PreprocessorOpts.RemappedFiles) {
174       std::string MPath(RF.first);
175       auto MPathStatus = VFS->status(MPath);
176       if (MPathStatus) {
177         llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID();
178         if (MainFileID == MID) {
179           // We found a remapping. Try to load the resulting, remapped source.
180           BufferOwner = valueOrNull(VFS->getBufferForFile(RF.second, -1, true, isVolatile));
181           if (!BufferOwner)
182             return nullptr;
183         }
184       }
185     }
186 
187     // Check whether there is a file-buffer remapping. It supercedes the
188     // file-file remapping.
189     for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) {
190       std::string MPath(RB.first);
191       auto MPathStatus = VFS->status(MPath);
192       if (MPathStatus) {
193         llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID();
194         if (MainFileID == MID) {
195           // We found a remapping.
196           BufferOwner.reset();
197           Buffer = const_cast<llvm::MemoryBuffer *>(RB.second);
198         }
199       }
200     }
201   }
202 
203   // If the main source file was not remapped, load it now.
204   if (!Buffer && !BufferOwner) {
205     BufferOwner = valueOrNull(VFS->getBufferForFile(FilePath, -1, true, isVolatile));
206     if (!BufferOwner)
207       return nullptr;
208   }
209 
210   if (BufferOwner)
211     return BufferOwner;
212   if (!Buffer)
213     return nullptr;
214   return llvm::MemoryBuffer::getMemBufferCopy(Buffer->getBuffer(), FilePath);
215 }
216 
217 struct ASTUnit::ASTWriterData {
218   SmallString<128> Buffer;
219   llvm::BitstreamWriter Stream;
220   ASTWriter Writer;
221 
222   ASTWriterData(MemoryBufferCache &PCMCache)
223       : Stream(Buffer), Writer(Stream, Buffer, PCMCache, {}) {}
224 };
225 
226 void ASTUnit::clearFileLevelDecls() {
227   llvm::DeleteContainerSeconds(FileDecls);
228 }
229 
230 /// After failing to build a precompiled preamble (due to
231 /// errors in the source that occurs in the preamble), the number of
232 /// reparses during which we'll skip even trying to precompile the
233 /// preamble.
234 const unsigned DefaultPreambleRebuildInterval = 5;
235 
236 /// Tracks the number of ASTUnit objects that are currently active.
237 ///
238 /// Used for debugging purposes only.
239 static std::atomic<unsigned> ActiveASTUnitObjects;
240 
241 ASTUnit::ASTUnit(bool _MainFileIsAST)
242     : MainFileIsAST(_MainFileIsAST), WantTiming(getenv("LIBCLANG_TIMING")),
243       ShouldCacheCodeCompletionResults(false),
244       IncludeBriefCommentsInCodeCompletion(false), UserFilesAreVolatile(false),
245       UnsafeToFree(false) {
246   if (getenv("LIBCLANG_OBJTRACKING"))
247     fprintf(stderr, "+++ %u translation units\n", ++ActiveASTUnitObjects);
248 }
249 
250 ASTUnit::~ASTUnit() {
251   // If we loaded from an AST file, balance out the BeginSourceFile call.
252   if (MainFileIsAST && getDiagnostics().getClient()) {
253     getDiagnostics().getClient()->EndSourceFile();
254   }
255 
256   clearFileLevelDecls();
257 
258   // Free the buffers associated with remapped files. We are required to
259   // perform this operation here because we explicitly request that the
260   // compiler instance *not* free these buffers for each invocation of the
261   // parser.
262   if (Invocation && OwnsRemappedFileBuffers) {
263     PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
264     for (const auto &RB : PPOpts.RemappedFileBuffers)
265       delete RB.second;
266   }
267 
268   ClearCachedCompletionResults();
269 
270   if (getenv("LIBCLANG_OBJTRACKING"))
271     fprintf(stderr, "--- %u translation units\n", --ActiveASTUnitObjects);
272 }
273 
274 void ASTUnit::setPreprocessor(std::shared_ptr<Preprocessor> PP) {
275   this->PP = std::move(PP);
276 }
277 
278 void ASTUnit::enableSourceFileDiagnostics() {
279   assert(getDiagnostics().getClient() && Ctx &&
280       "Bad context for source file");
281   getDiagnostics().getClient()->BeginSourceFile(Ctx->getLangOpts(), PP.get());
282 }
283 
284 /// Determine the set of code-completion contexts in which this
285 /// declaration should be shown.
286 static unsigned getDeclShowContexts(const NamedDecl *ND,
287                                     const LangOptions &LangOpts,
288                                     bool &IsNestedNameSpecifier) {
289   IsNestedNameSpecifier = false;
290 
291   if (isa<UsingShadowDecl>(ND))
292     ND = ND->getUnderlyingDecl();
293   if (!ND)
294     return 0;
295 
296   uint64_t Contexts = 0;
297   if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) ||
298       isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND) ||
299       isa<TypeAliasTemplateDecl>(ND)) {
300     // Types can appear in these contexts.
301     if (LangOpts.CPlusPlus || !isa<TagDecl>(ND))
302       Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel)
303                |  (1LL << CodeCompletionContext::CCC_ObjCIvarList)
304                |  (1LL << CodeCompletionContext::CCC_ClassStructUnion)
305                |  (1LL << CodeCompletionContext::CCC_Statement)
306                |  (1LL << CodeCompletionContext::CCC_Type)
307                |  (1LL << CodeCompletionContext::CCC_ParenthesizedExpression);
308 
309     // In C++, types can appear in expressions contexts (for functional casts).
310     if (LangOpts.CPlusPlus)
311       Contexts |= (1LL << CodeCompletionContext::CCC_Expression);
312 
313     // In Objective-C, message sends can send interfaces. In Objective-C++,
314     // all types are available due to functional casts.
315     if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND))
316       Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
317 
318     // In Objective-C, you can only be a subclass of another Objective-C class
319     if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND)) {
320       // Objective-C interfaces can be used in a class property expression.
321       if (ID->getDefinition())
322         Contexts |= (1LL << CodeCompletionContext::CCC_Expression);
323       Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName);
324     }
325 
326     // Deal with tag names.
327     if (isa<EnumDecl>(ND)) {
328       Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag);
329 
330       // Part of the nested-name-specifier in C++0x.
331       if (LangOpts.CPlusPlus11)
332         IsNestedNameSpecifier = true;
333     } else if (const auto *Record = dyn_cast<RecordDecl>(ND)) {
334       if (Record->isUnion())
335         Contexts |= (1LL << CodeCompletionContext::CCC_UnionTag);
336       else
337         Contexts |= (1LL << CodeCompletionContext::CCC_ClassOrStructTag);
338 
339       if (LangOpts.CPlusPlus)
340         IsNestedNameSpecifier = true;
341     } else if (isa<ClassTemplateDecl>(ND))
342       IsNestedNameSpecifier = true;
343   } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
344     // Values can appear in these contexts.
345     Contexts = (1LL << CodeCompletionContext::CCC_Statement)
346              | (1LL << CodeCompletionContext::CCC_Expression)
347              | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression)
348              | (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
349   } else if (isa<ObjCProtocolDecl>(ND)) {
350     Contexts = (1LL << CodeCompletionContext::CCC_ObjCProtocolName);
351   } else if (isa<ObjCCategoryDecl>(ND)) {
352     Contexts = (1LL << CodeCompletionContext::CCC_ObjCCategoryName);
353   } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
354     Contexts = (1LL << CodeCompletionContext::CCC_Namespace);
355 
356     // Part of the nested-name-specifier.
357     IsNestedNameSpecifier = true;
358   }
359 
360   return Contexts;
361 }
362 
363 void ASTUnit::CacheCodeCompletionResults() {
364   if (!TheSema)
365     return;
366 
367   SimpleTimer Timer(WantTiming);
368   Timer.setOutput("Cache global code completions for " + getMainFileName());
369 
370   // Clear out the previous results.
371   ClearCachedCompletionResults();
372 
373   // Gather the set of global code completions.
374   using Result = CodeCompletionResult;
375   SmallVector<Result, 8> Results;
376   CachedCompletionAllocator = std::make_shared<GlobalCodeCompletionAllocator>();
377   CodeCompletionTUInfo CCTUInfo(CachedCompletionAllocator);
378   TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator,
379                                        CCTUInfo, Results);
380 
381   // Translate global code completions into cached completions.
382   llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
383   CodeCompletionContext CCContext(CodeCompletionContext::CCC_TopLevel);
384 
385   for (auto &R : Results) {
386     switch (R.Kind) {
387     case Result::RK_Declaration: {
388       bool IsNestedNameSpecifier = false;
389       CachedCodeCompletionResult CachedResult;
390       CachedResult.Completion = R.CreateCodeCompletionString(
391           *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo,
392           IncludeBriefCommentsInCodeCompletion);
393       CachedResult.ShowInContexts = getDeclShowContexts(
394           R.Declaration, Ctx->getLangOpts(), IsNestedNameSpecifier);
395       CachedResult.Priority = R.Priority;
396       CachedResult.Kind = R.CursorKind;
397       CachedResult.Availability = R.Availability;
398 
399       // Keep track of the type of this completion in an ASTContext-agnostic
400       // way.
401       QualType UsageType = getDeclUsageType(*Ctx, R.Declaration);
402       if (UsageType.isNull()) {
403         CachedResult.TypeClass = STC_Void;
404         CachedResult.Type = 0;
405       } else {
406         CanQualType CanUsageType
407           = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
408         CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
409 
410         // Determine whether we have already seen this type. If so, we save
411         // ourselves the work of formatting the type string by using the
412         // temporary, CanQualType-based hash table to find the associated value.
413         unsigned &TypeValue = CompletionTypes[CanUsageType];
414         if (TypeValue == 0) {
415           TypeValue = CompletionTypes.size();
416           CachedCompletionTypes[QualType(CanUsageType).getAsString()]
417             = TypeValue;
418         }
419 
420         CachedResult.Type = TypeValue;
421       }
422 
423       CachedCompletionResults.push_back(CachedResult);
424 
425       /// Handle nested-name-specifiers in C++.
426       if (TheSema->Context.getLangOpts().CPlusPlus && IsNestedNameSpecifier &&
427           !R.StartsNestedNameSpecifier) {
428         // The contexts in which a nested-name-specifier can appear in C++.
429         uint64_t NNSContexts
430           = (1LL << CodeCompletionContext::CCC_TopLevel)
431           | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
432           | (1LL << CodeCompletionContext::CCC_ClassStructUnion)
433           | (1LL << CodeCompletionContext::CCC_Statement)
434           | (1LL << CodeCompletionContext::CCC_Expression)
435           | (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver)
436           | (1LL << CodeCompletionContext::CCC_EnumTag)
437           | (1LL << CodeCompletionContext::CCC_UnionTag)
438           | (1LL << CodeCompletionContext::CCC_ClassOrStructTag)
439           | (1LL << CodeCompletionContext::CCC_Type)
440           | (1LL << CodeCompletionContext::CCC_PotentiallyQualifiedName)
441           | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression);
442 
443         if (isa<NamespaceDecl>(R.Declaration) ||
444             isa<NamespaceAliasDecl>(R.Declaration))
445           NNSContexts |= (1LL << CodeCompletionContext::CCC_Namespace);
446 
447         if (unsigned RemainingContexts
448                                 = NNSContexts & ~CachedResult.ShowInContexts) {
449           // If there any contexts where this completion can be a
450           // nested-name-specifier but isn't already an option, create a
451           // nested-name-specifier completion.
452           R.StartsNestedNameSpecifier = true;
453           CachedResult.Completion = R.CreateCodeCompletionString(
454               *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo,
455               IncludeBriefCommentsInCodeCompletion);
456           CachedResult.ShowInContexts = RemainingContexts;
457           CachedResult.Priority = CCP_NestedNameSpecifier;
458           CachedResult.TypeClass = STC_Void;
459           CachedResult.Type = 0;
460           CachedCompletionResults.push_back(CachedResult);
461         }
462       }
463       break;
464     }
465 
466     case Result::RK_Keyword:
467     case Result::RK_Pattern:
468       // Ignore keywords and patterns; we don't care, since they are so
469       // easily regenerated.
470       break;
471 
472     case Result::RK_Macro: {
473       CachedCodeCompletionResult CachedResult;
474       CachedResult.Completion = R.CreateCodeCompletionString(
475           *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo,
476           IncludeBriefCommentsInCodeCompletion);
477       CachedResult.ShowInContexts
478         = (1LL << CodeCompletionContext::CCC_TopLevel)
479         | (1LL << CodeCompletionContext::CCC_ObjCInterface)
480         | (1LL << CodeCompletionContext::CCC_ObjCImplementation)
481         | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
482         | (1LL << CodeCompletionContext::CCC_ClassStructUnion)
483         | (1LL << CodeCompletionContext::CCC_Statement)
484         | (1LL << CodeCompletionContext::CCC_Expression)
485         | (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver)
486         | (1LL << CodeCompletionContext::CCC_MacroNameUse)
487         | (1LL << CodeCompletionContext::CCC_PreprocessorExpression)
488         | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression)
489         | (1LL << CodeCompletionContext::CCC_OtherWithMacros);
490 
491       CachedResult.Priority = R.Priority;
492       CachedResult.Kind = R.CursorKind;
493       CachedResult.Availability = R.Availability;
494       CachedResult.TypeClass = STC_Void;
495       CachedResult.Type = 0;
496       CachedCompletionResults.push_back(CachedResult);
497       break;
498     }
499     }
500   }
501 
502   // Save the current top-level hash value.
503   CompletionCacheTopLevelHashValue = CurrentTopLevelHashValue;
504 }
505 
506 void ASTUnit::ClearCachedCompletionResults() {
507   CachedCompletionResults.clear();
508   CachedCompletionTypes.clear();
509   CachedCompletionAllocator = nullptr;
510 }
511 
512 namespace {
513 
514 /// Gathers information from ASTReader that will be used to initialize
515 /// a Preprocessor.
516 class ASTInfoCollector : public ASTReaderListener {
517   Preprocessor &PP;
518   ASTContext *Context;
519   HeaderSearchOptions &HSOpts;
520   PreprocessorOptions &PPOpts;
521   LangOptions &LangOpt;
522   std::shared_ptr<TargetOptions> &TargetOpts;
523   IntrusiveRefCntPtr<TargetInfo> &Target;
524   unsigned &Counter;
525   bool InitializedLanguage = false;
526 
527 public:
528   ASTInfoCollector(Preprocessor &PP, ASTContext *Context,
529                    HeaderSearchOptions &HSOpts, PreprocessorOptions &PPOpts,
530                    LangOptions &LangOpt,
531                    std::shared_ptr<TargetOptions> &TargetOpts,
532                    IntrusiveRefCntPtr<TargetInfo> &Target, unsigned &Counter)
533       : PP(PP), Context(Context), HSOpts(HSOpts), PPOpts(PPOpts),
534         LangOpt(LangOpt), TargetOpts(TargetOpts), Target(Target),
535         Counter(Counter) {}
536 
537   bool ReadLanguageOptions(const LangOptions &LangOpts, bool Complain,
538                            bool AllowCompatibleDifferences) override {
539     if (InitializedLanguage)
540       return false;
541 
542     LangOpt = LangOpts;
543     InitializedLanguage = true;
544 
545     updated();
546     return false;
547   }
548 
549   bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
550                                StringRef SpecificModuleCachePath,
551                                bool Complain) override {
552     this->HSOpts = HSOpts;
553     return false;
554   }
555 
556   bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain,
557                                std::string &SuggestedPredefines) override {
558     this->PPOpts = PPOpts;
559     return false;
560   }
561 
562   bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
563                          bool AllowCompatibleDifferences) override {
564     // If we've already initialized the target, don't do it again.
565     if (Target)
566       return false;
567 
568     this->TargetOpts = std::make_shared<TargetOptions>(TargetOpts);
569     Target =
570         TargetInfo::CreateTargetInfo(PP.getDiagnostics(), this->TargetOpts);
571 
572     updated();
573     return false;
574   }
575 
576   void ReadCounter(const serialization::ModuleFile &M,
577                    unsigned Value) override {
578     Counter = Value;
579   }
580 
581 private:
582   void updated() {
583     if (!Target || !InitializedLanguage)
584       return;
585 
586     // Inform the target of the language options.
587     //
588     // FIXME: We shouldn't need to do this, the target should be immutable once
589     // created. This complexity should be lifted elsewhere.
590     Target->adjust(LangOpt);
591 
592     // Initialize the preprocessor.
593     PP.Initialize(*Target);
594 
595     if (!Context)
596       return;
597 
598     // Initialize the ASTContext
599     Context->InitBuiltinTypes(*Target);
600 
601     // Adjust printing policy based on language options.
602     Context->setPrintingPolicy(PrintingPolicy(LangOpt));
603 
604     // We didn't have access to the comment options when the ASTContext was
605     // constructed, so register them now.
606     Context->getCommentCommandTraits().registerCommentOptions(
607         LangOpt.CommentOpts);
608   }
609 };
610 
611 /// Diagnostic consumer that saves each diagnostic it is given.
612 class StoredDiagnosticConsumer : public DiagnosticConsumer {
613   SmallVectorImpl<StoredDiagnostic> *StoredDiags;
614   SmallVectorImpl<ASTUnit::StandaloneDiagnostic> *StandaloneDiags;
615   const LangOptions *LangOpts = nullptr;
616   SourceManager *SourceMgr = nullptr;
617 
618 public:
619   StoredDiagnosticConsumer(
620       SmallVectorImpl<StoredDiagnostic> *StoredDiags,
621       SmallVectorImpl<ASTUnit::StandaloneDiagnostic> *StandaloneDiags)
622       : StoredDiags(StoredDiags), StandaloneDiags(StandaloneDiags) {
623     assert((StoredDiags || StandaloneDiags) &&
624            "No output collections were passed to StoredDiagnosticConsumer.");
625   }
626 
627   void BeginSourceFile(const LangOptions &LangOpts,
628                        const Preprocessor *PP = nullptr) override {
629     this->LangOpts = &LangOpts;
630     if (PP)
631       SourceMgr = &PP->getSourceManager();
632   }
633 
634   void HandleDiagnostic(DiagnosticsEngine::Level Level,
635                         const Diagnostic &Info) override;
636 };
637 
638 /// RAII object that optionally captures diagnostics, if
639 /// there is no diagnostic client to capture them already.
640 class CaptureDroppedDiagnostics {
641   DiagnosticsEngine &Diags;
642   StoredDiagnosticConsumer Client;
643   DiagnosticConsumer *PreviousClient = nullptr;
644   std::unique_ptr<DiagnosticConsumer> OwningPreviousClient;
645 
646 public:
647   CaptureDroppedDiagnostics(
648       bool RequestCapture, DiagnosticsEngine &Diags,
649       SmallVectorImpl<StoredDiagnostic> *StoredDiags,
650       SmallVectorImpl<ASTUnit::StandaloneDiagnostic> *StandaloneDiags)
651       : Diags(Diags), Client(StoredDiags, StandaloneDiags) {
652     if (RequestCapture || Diags.getClient() == nullptr) {
653       OwningPreviousClient = Diags.takeClient();
654       PreviousClient = Diags.getClient();
655       Diags.setClient(&Client, false);
656     }
657   }
658 
659   ~CaptureDroppedDiagnostics() {
660     if (Diags.getClient() == &Client)
661       Diags.setClient(PreviousClient, !!OwningPreviousClient.release());
662   }
663 };
664 
665 } // namespace
666 
667 static ASTUnit::StandaloneDiagnostic
668 makeStandaloneDiagnostic(const LangOptions &LangOpts,
669                          const StoredDiagnostic &InDiag);
670 
671 void StoredDiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level Level,
672                                                 const Diagnostic &Info) {
673   // Default implementation (Warnings/errors count).
674   DiagnosticConsumer::HandleDiagnostic(Level, Info);
675 
676   // Only record the diagnostic if it's part of the source manager we know
677   // about. This effectively drops diagnostics from modules we're building.
678   // FIXME: In the long run, ee don't want to drop source managers from modules.
679   if (!Info.hasSourceManager() || &Info.getSourceManager() == SourceMgr) {
680     StoredDiagnostic *ResultDiag = nullptr;
681     if (StoredDiags) {
682       StoredDiags->emplace_back(Level, Info);
683       ResultDiag = &StoredDiags->back();
684     }
685 
686     if (StandaloneDiags) {
687       llvm::Optional<StoredDiagnostic> StoredDiag = None;
688       if (!ResultDiag) {
689         StoredDiag.emplace(Level, Info);
690         ResultDiag = StoredDiag.getPointer();
691       }
692       StandaloneDiags->push_back(
693           makeStandaloneDiagnostic(*LangOpts, *ResultDiag));
694     }
695   }
696 }
697 
698 IntrusiveRefCntPtr<ASTReader> ASTUnit::getASTReader() const {
699   return Reader;
700 }
701 
702 ASTMutationListener *ASTUnit::getASTMutationListener() {
703   if (WriterData)
704     return &WriterData->Writer;
705   return nullptr;
706 }
707 
708 ASTDeserializationListener *ASTUnit::getDeserializationListener() {
709   if (WriterData)
710     return &WriterData->Writer;
711   return nullptr;
712 }
713 
714 std::unique_ptr<llvm::MemoryBuffer>
715 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) {
716   assert(FileMgr);
717   auto Buffer = FileMgr->getBufferForFile(Filename, UserFilesAreVolatile);
718   if (Buffer)
719     return std::move(*Buffer);
720   if (ErrorStr)
721     *ErrorStr = Buffer.getError().message();
722   return nullptr;
723 }
724 
725 /// Configure the diagnostics object for use with ASTUnit.
726 void ASTUnit::ConfigureDiags(IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
727                              ASTUnit &AST, bool CaptureDiagnostics) {
728   assert(Diags.get() && "no DiagnosticsEngine was provided");
729   if (CaptureDiagnostics)
730     Diags->setClient(new StoredDiagnosticConsumer(&AST.StoredDiagnostics, nullptr));
731 }
732 
733 std::unique_ptr<ASTUnit> ASTUnit::LoadFromASTFile(
734     const std::string &Filename, const PCHContainerReader &PCHContainerRdr,
735     WhatToLoad ToLoad, IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
736     const FileSystemOptions &FileSystemOpts, bool UseDebugInfo,
737     bool OnlyLocalDecls, ArrayRef<RemappedFile> RemappedFiles,
738     bool CaptureDiagnostics, bool AllowPCHWithCompilerErrors,
739     bool UserFilesAreVolatile) {
740   std::unique_ptr<ASTUnit> AST(new ASTUnit(true));
741 
742   // Recover resources if we crash before exiting this method.
743   llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
744     ASTUnitCleanup(AST.get());
745   llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
746     llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine>>
747     DiagCleanup(Diags.get());
748 
749   ConfigureDiags(Diags, *AST, CaptureDiagnostics);
750 
751   AST->LangOpts = std::make_shared<LangOptions>();
752   AST->OnlyLocalDecls = OnlyLocalDecls;
753   AST->CaptureDiagnostics = CaptureDiagnostics;
754   AST->Diagnostics = Diags;
755   IntrusiveRefCntPtr<vfs::FileSystem> VFS = vfs::getRealFileSystem();
756   AST->FileMgr = new FileManager(FileSystemOpts, VFS);
757   AST->UserFilesAreVolatile = UserFilesAreVolatile;
758   AST->SourceMgr = new SourceManager(AST->getDiagnostics(),
759                                      AST->getFileManager(),
760                                      UserFilesAreVolatile);
761   AST->PCMCache = new MemoryBufferCache;
762   AST->HSOpts = std::make_shared<HeaderSearchOptions>();
763   AST->HSOpts->ModuleFormat = PCHContainerRdr.getFormat();
764   AST->HeaderInfo.reset(new HeaderSearch(AST->HSOpts,
765                                          AST->getSourceManager(),
766                                          AST->getDiagnostics(),
767                                          AST->getLangOpts(),
768                                          /*Target=*/nullptr));
769   AST->PPOpts = std::make_shared<PreprocessorOptions>();
770 
771   for (const auto &RemappedFile : RemappedFiles)
772     AST->PPOpts->addRemappedFile(RemappedFile.first, RemappedFile.second);
773 
774   // Gather Info for preprocessor construction later on.
775 
776   HeaderSearch &HeaderInfo = *AST->HeaderInfo;
777   unsigned Counter;
778 
779   AST->PP = std::make_shared<Preprocessor>(
780       AST->PPOpts, AST->getDiagnostics(), *AST->LangOpts,
781       AST->getSourceManager(), *AST->PCMCache, HeaderInfo, AST->ModuleLoader,
782       /*IILookup=*/nullptr,
783       /*OwnsHeaderSearch=*/false);
784   Preprocessor &PP = *AST->PP;
785 
786   if (ToLoad >= LoadASTOnly)
787     AST->Ctx = new ASTContext(*AST->LangOpts, AST->getSourceManager(),
788                               PP.getIdentifierTable(), PP.getSelectorTable(),
789                               PP.getBuiltinInfo());
790 
791   bool disableValid = false;
792   if (::getenv("LIBCLANG_DISABLE_PCH_VALIDATION"))
793     disableValid = true;
794   AST->Reader = new ASTReader(PP, AST->Ctx.get(), PCHContainerRdr, {},
795                               /*isysroot=*/"",
796                               /*DisableValidation=*/disableValid,
797                               AllowPCHWithCompilerErrors);
798 
799   AST->Reader->setListener(llvm::make_unique<ASTInfoCollector>(
800       *AST->PP, AST->Ctx.get(), *AST->HSOpts, *AST->PPOpts, *AST->LangOpts,
801       AST->TargetOpts, AST->Target, Counter));
802 
803   // Attach the AST reader to the AST context as an external AST
804   // source, so that declarations will be deserialized from the
805   // AST file as needed.
806   // We need the external source to be set up before we read the AST, because
807   // eagerly-deserialized declarations may use it.
808   if (AST->Ctx)
809     AST->Ctx->setExternalSource(AST->Reader);
810 
811   switch (AST->Reader->ReadAST(Filename, serialization::MK_MainFile,
812                           SourceLocation(), ASTReader::ARR_None)) {
813   case ASTReader::Success:
814     break;
815 
816   case ASTReader::Failure:
817   case ASTReader::Missing:
818   case ASTReader::OutOfDate:
819   case ASTReader::VersionMismatch:
820   case ASTReader::ConfigurationMismatch:
821   case ASTReader::HadErrors:
822     AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
823     return nullptr;
824   }
825 
826   AST->OriginalSourceFile = AST->Reader->getOriginalSourceFile();
827 
828   PP.setCounterValue(Counter);
829 
830   // Create an AST consumer, even though it isn't used.
831   if (ToLoad >= LoadASTOnly)
832     AST->Consumer.reset(new ASTConsumer);
833 
834   // Create a semantic analysis object and tell the AST reader about it.
835   if (ToLoad >= LoadEverything) {
836     AST->TheSema.reset(new Sema(PP, *AST->Ctx, *AST->Consumer));
837     AST->TheSema->Initialize();
838     AST->Reader->InitializeSema(*AST->TheSema);
839   }
840 
841   // Tell the diagnostic client that we have started a source file.
842   AST->getDiagnostics().getClient()->BeginSourceFile(PP.getLangOpts(), &PP);
843 
844   return AST;
845 }
846 
847 /// Add the given macro to the hash of all top-level entities.
848 static void AddDefinedMacroToHash(const Token &MacroNameTok, unsigned &Hash) {
849   Hash = llvm::djbHash(MacroNameTok.getIdentifierInfo()->getName(), Hash);
850 }
851 
852 namespace {
853 
854 /// Preprocessor callback class that updates a hash value with the names
855 /// of all macros that have been defined by the translation unit.
856 class MacroDefinitionTrackerPPCallbacks : public PPCallbacks {
857   unsigned &Hash;
858 
859 public:
860   explicit MacroDefinitionTrackerPPCallbacks(unsigned &Hash) : Hash(Hash) {}
861 
862   void MacroDefined(const Token &MacroNameTok,
863                     const MacroDirective *MD) override {
864     AddDefinedMacroToHash(MacroNameTok, Hash);
865   }
866 };
867 
868 } // namespace
869 
870 /// Add the given declaration to the hash of all top-level entities.
871 static void AddTopLevelDeclarationToHash(Decl *D, unsigned &Hash) {
872   if (!D)
873     return;
874 
875   DeclContext *DC = D->getDeclContext();
876   if (!DC)
877     return;
878 
879   if (!(DC->isTranslationUnit() || DC->getLookupParent()->isTranslationUnit()))
880     return;
881 
882   if (const auto *ND = dyn_cast<NamedDecl>(D)) {
883     if (const auto *EnumD = dyn_cast<EnumDecl>(D)) {
884       // For an unscoped enum include the enumerators in the hash since they
885       // enter the top-level namespace.
886       if (!EnumD->isScoped()) {
887         for (const auto *EI : EnumD->enumerators()) {
888           if (EI->getIdentifier())
889             Hash = llvm::djbHash(EI->getIdentifier()->getName(), Hash);
890         }
891       }
892     }
893 
894     if (ND->getIdentifier())
895       Hash = llvm::djbHash(ND->getIdentifier()->getName(), Hash);
896     else if (DeclarationName Name = ND->getDeclName()) {
897       std::string NameStr = Name.getAsString();
898       Hash = llvm::djbHash(NameStr, Hash);
899     }
900     return;
901   }
902 
903   if (const auto *ImportD = dyn_cast<ImportDecl>(D)) {
904     if (const Module *Mod = ImportD->getImportedModule()) {
905       std::string ModName = Mod->getFullModuleName();
906       Hash = llvm::djbHash(ModName, Hash);
907     }
908     return;
909   }
910 }
911 
912 namespace {
913 
914 class TopLevelDeclTrackerConsumer : public ASTConsumer {
915   ASTUnit &Unit;
916   unsigned &Hash;
917 
918 public:
919   TopLevelDeclTrackerConsumer(ASTUnit &_Unit, unsigned &Hash)
920       : Unit(_Unit), Hash(Hash) {
921     Hash = 0;
922   }
923 
924   void handleTopLevelDecl(Decl *D) {
925     if (!D)
926       return;
927 
928     // FIXME: Currently ObjC method declarations are incorrectly being
929     // reported as top-level declarations, even though their DeclContext
930     // is the containing ObjC @interface/@implementation.  This is a
931     // fundamental problem in the parser right now.
932     if (isa<ObjCMethodDecl>(D))
933       return;
934 
935     AddTopLevelDeclarationToHash(D, Hash);
936     Unit.addTopLevelDecl(D);
937 
938     handleFileLevelDecl(D);
939   }
940 
941   void handleFileLevelDecl(Decl *D) {
942     Unit.addFileLevelDecl(D);
943     if (auto *NSD = dyn_cast<NamespaceDecl>(D)) {
944       for (auto *I : NSD->decls())
945         handleFileLevelDecl(I);
946     }
947   }
948 
949   bool HandleTopLevelDecl(DeclGroupRef D) override {
950     for (auto *TopLevelDecl : D)
951       handleTopLevelDecl(TopLevelDecl);
952     return true;
953   }
954 
955   // We're not interested in "interesting" decls.
956   void HandleInterestingDecl(DeclGroupRef) override {}
957 
958   void HandleTopLevelDeclInObjCContainer(DeclGroupRef D) override {
959     for (auto *TopLevelDecl : D)
960       handleTopLevelDecl(TopLevelDecl);
961   }
962 
963   ASTMutationListener *GetASTMutationListener() override {
964     return Unit.getASTMutationListener();
965   }
966 
967   ASTDeserializationListener *GetASTDeserializationListener() override {
968     return Unit.getDeserializationListener();
969   }
970 };
971 
972 class TopLevelDeclTrackerAction : public ASTFrontendAction {
973 public:
974   ASTUnit &Unit;
975 
976   std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
977                                                  StringRef InFile) override {
978     CI.getPreprocessor().addPPCallbacks(
979         llvm::make_unique<MacroDefinitionTrackerPPCallbacks>(
980                                            Unit.getCurrentTopLevelHashValue()));
981     return llvm::make_unique<TopLevelDeclTrackerConsumer>(
982         Unit, Unit.getCurrentTopLevelHashValue());
983   }
984 
985 public:
986   TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
987 
988   bool hasCodeCompletionSupport() const override { return false; }
989 
990   TranslationUnitKind getTranslationUnitKind() override {
991     return Unit.getTranslationUnitKind();
992   }
993 };
994 
995 class ASTUnitPreambleCallbacks : public PreambleCallbacks {
996 public:
997   unsigned getHash() const { return Hash; }
998 
999   std::vector<Decl *> takeTopLevelDecls() { return std::move(TopLevelDecls); }
1000 
1001   std::vector<serialization::DeclID> takeTopLevelDeclIDs() {
1002     return std::move(TopLevelDeclIDs);
1003   }
1004 
1005   void AfterPCHEmitted(ASTWriter &Writer) override {
1006     TopLevelDeclIDs.reserve(TopLevelDecls.size());
1007     for (const auto *D : TopLevelDecls) {
1008       // Invalid top-level decls may not have been serialized.
1009       if (D->isInvalidDecl())
1010         continue;
1011       TopLevelDeclIDs.push_back(Writer.getDeclID(D));
1012     }
1013   }
1014 
1015   void HandleTopLevelDecl(DeclGroupRef DG) override {
1016     for (auto *D : DG) {
1017       // FIXME: Currently ObjC method declarations are incorrectly being
1018       // reported as top-level declarations, even though their DeclContext
1019       // is the containing ObjC @interface/@implementation.  This is a
1020       // fundamental problem in the parser right now.
1021       if (isa<ObjCMethodDecl>(D))
1022         continue;
1023       AddTopLevelDeclarationToHash(D, Hash);
1024       TopLevelDecls.push_back(D);
1025     }
1026   }
1027 
1028   std::unique_ptr<PPCallbacks> createPPCallbacks() override {
1029     return llvm::make_unique<MacroDefinitionTrackerPPCallbacks>(Hash);
1030   }
1031 
1032 private:
1033   unsigned Hash = 0;
1034   std::vector<Decl *> TopLevelDecls;
1035   std::vector<serialization::DeclID> TopLevelDeclIDs;
1036   llvm::SmallVector<ASTUnit::StandaloneDiagnostic, 4> PreambleDiags;
1037 };
1038 
1039 } // namespace
1040 
1041 static bool isNonDriverDiag(const StoredDiagnostic &StoredDiag) {
1042   return StoredDiag.getLocation().isValid();
1043 }
1044 
1045 static void
1046 checkAndRemoveNonDriverDiags(SmallVectorImpl<StoredDiagnostic> &StoredDiags) {
1047   // Get rid of stored diagnostics except the ones from the driver which do not
1048   // have a source location.
1049   StoredDiags.erase(
1050       std::remove_if(StoredDiags.begin(), StoredDiags.end(), isNonDriverDiag),
1051       StoredDiags.end());
1052 }
1053 
1054 static void checkAndSanitizeDiags(SmallVectorImpl<StoredDiagnostic> &
1055                                                               StoredDiagnostics,
1056                                   SourceManager &SM) {
1057   // The stored diagnostic has the old source manager in it; update
1058   // the locations to refer into the new source manager. Since we've
1059   // been careful to make sure that the source manager's state
1060   // before and after are identical, so that we can reuse the source
1061   // location itself.
1062   for (auto &SD : StoredDiagnostics) {
1063     if (SD.getLocation().isValid()) {
1064       FullSourceLoc Loc(SD.getLocation(), SM);
1065       SD.setLocation(Loc);
1066     }
1067   }
1068 }
1069 
1070 /// Parse the source file into a translation unit using the given compiler
1071 /// invocation, replacing the current translation unit.
1072 ///
1073 /// \returns True if a failure occurred that causes the ASTUnit not to
1074 /// contain any translation-unit information, false otherwise.
1075 bool ASTUnit::Parse(std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1076                     std::unique_ptr<llvm::MemoryBuffer> OverrideMainBuffer,
1077                     IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
1078   if (!Invocation)
1079     return true;
1080 
1081   auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation);
1082   if (OverrideMainBuffer) {
1083     assert(Preamble &&
1084            "No preamble was built, but OverrideMainBuffer is not null");
1085     IntrusiveRefCntPtr<vfs::FileSystem> OldVFS = VFS;
1086     Preamble->AddImplicitPreamble(*CCInvocation, VFS, OverrideMainBuffer.get());
1087     if (OldVFS != VFS && FileMgr) {
1088       assert(OldVFS == FileMgr->getVirtualFileSystem() &&
1089              "VFS passed to Parse and VFS in FileMgr are different");
1090       FileMgr = new FileManager(FileMgr->getFileSystemOpts(), VFS);
1091     }
1092   }
1093 
1094   // Create the compiler instance to use for building the AST.
1095   std::unique_ptr<CompilerInstance> Clang(
1096       new CompilerInstance(std::move(PCHContainerOps)));
1097   if (FileMgr && VFS) {
1098     assert(VFS == FileMgr->getVirtualFileSystem() &&
1099            "VFS passed to Parse and VFS in FileMgr are different");
1100   } else if (VFS) {
1101     Clang->setVirtualFileSystem(VFS);
1102   }
1103 
1104   // Recover resources if we crash before exiting this method.
1105   llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1106     CICleanup(Clang.get());
1107 
1108   Clang->setInvocation(CCInvocation);
1109   OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].getFile();
1110 
1111   // Set up diagnostics, capturing any diagnostics that would
1112   // otherwise be dropped.
1113   Clang->setDiagnostics(&getDiagnostics());
1114 
1115   // Create the target instance.
1116   Clang->setTarget(TargetInfo::CreateTargetInfo(
1117       Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
1118   if (!Clang->hasTarget())
1119     return true;
1120 
1121   // Inform the target of the language options.
1122   //
1123   // FIXME: We shouldn't need to do this, the target should be immutable once
1124   // created. This complexity should be lifted elsewhere.
1125   Clang->getTarget().adjust(Clang->getLangOpts());
1126 
1127   assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
1128          "Invocation must have exactly one source file!");
1129   assert(Clang->getFrontendOpts().Inputs[0].getKind().getFormat() ==
1130              InputKind::Source &&
1131          "FIXME: AST inputs not yet supported here!");
1132   assert(Clang->getFrontendOpts().Inputs[0].getKind().getLanguage() !=
1133              InputKind::LLVM_IR &&
1134          "IR inputs not support here!");
1135 
1136   // Configure the various subsystems.
1137   LangOpts = Clang->getInvocation().LangOpts;
1138   FileSystemOpts = Clang->getFileSystemOpts();
1139   if (!FileMgr) {
1140     Clang->createFileManager();
1141     FileMgr = &Clang->getFileManager();
1142   }
1143 
1144   ResetForParse();
1145 
1146   SourceMgr = new SourceManager(getDiagnostics(), *FileMgr,
1147                                 UserFilesAreVolatile);
1148   if (!OverrideMainBuffer) {
1149     checkAndRemoveNonDriverDiags(StoredDiagnostics);
1150     TopLevelDeclsInPreamble.clear();
1151   }
1152 
1153   // Create a file manager object to provide access to and cache the filesystem.
1154   Clang->setFileManager(&getFileManager());
1155 
1156   // Create the source manager.
1157   Clang->setSourceManager(&getSourceManager());
1158 
1159   // If the main file has been overridden due to the use of a preamble,
1160   // make that override happen and introduce the preamble.
1161   if (OverrideMainBuffer) {
1162     // The stored diagnostic has the old source manager in it; update
1163     // the locations to refer into the new source manager. Since we've
1164     // been careful to make sure that the source manager's state
1165     // before and after are identical, so that we can reuse the source
1166     // location itself.
1167     checkAndSanitizeDiags(StoredDiagnostics, getSourceManager());
1168 
1169     // Keep track of the override buffer;
1170     SavedMainFileBuffer = std::move(OverrideMainBuffer);
1171   }
1172 
1173   std::unique_ptr<TopLevelDeclTrackerAction> Act(
1174       new TopLevelDeclTrackerAction(*this));
1175 
1176   // Recover resources if we crash before exiting this method.
1177   llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1178     ActCleanup(Act.get());
1179 
1180   if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
1181     goto error;
1182 
1183   if (SavedMainFileBuffer)
1184     TranslateStoredDiagnostics(getFileManager(), getSourceManager(),
1185                                PreambleDiagnostics, StoredDiagnostics);
1186   else
1187     PreambleSrcLocCache.clear();
1188 
1189   if (!Act->Execute())
1190     goto error;
1191 
1192   transferASTDataFromCompilerInstance(*Clang);
1193 
1194   Act->EndSourceFile();
1195 
1196   FailedParseDiagnostics.clear();
1197 
1198   return false;
1199 
1200 error:
1201   // Remove the overridden buffer we used for the preamble.
1202   SavedMainFileBuffer = nullptr;
1203 
1204   // Keep the ownership of the data in the ASTUnit because the client may
1205   // want to see the diagnostics.
1206   transferASTDataFromCompilerInstance(*Clang);
1207   FailedParseDiagnostics.swap(StoredDiagnostics);
1208   StoredDiagnostics.clear();
1209   NumStoredDiagnosticsFromDriver = 0;
1210   return true;
1211 }
1212 
1213 static std::pair<unsigned, unsigned>
1214 makeStandaloneRange(CharSourceRange Range, const SourceManager &SM,
1215                     const LangOptions &LangOpts) {
1216   CharSourceRange FileRange = Lexer::makeFileCharRange(Range, SM, LangOpts);
1217   unsigned Offset = SM.getFileOffset(FileRange.getBegin());
1218   unsigned EndOffset = SM.getFileOffset(FileRange.getEnd());
1219   return std::make_pair(Offset, EndOffset);
1220 }
1221 
1222 static ASTUnit::StandaloneFixIt makeStandaloneFixIt(const SourceManager &SM,
1223                                                     const LangOptions &LangOpts,
1224                                                     const FixItHint &InFix) {
1225   ASTUnit::StandaloneFixIt OutFix;
1226   OutFix.RemoveRange = makeStandaloneRange(InFix.RemoveRange, SM, LangOpts);
1227   OutFix.InsertFromRange = makeStandaloneRange(InFix.InsertFromRange, SM,
1228                                                LangOpts);
1229   OutFix.CodeToInsert = InFix.CodeToInsert;
1230   OutFix.BeforePreviousInsertions = InFix.BeforePreviousInsertions;
1231   return OutFix;
1232 }
1233 
1234 static ASTUnit::StandaloneDiagnostic
1235 makeStandaloneDiagnostic(const LangOptions &LangOpts,
1236                          const StoredDiagnostic &InDiag) {
1237   ASTUnit::StandaloneDiagnostic OutDiag;
1238   OutDiag.ID = InDiag.getID();
1239   OutDiag.Level = InDiag.getLevel();
1240   OutDiag.Message = InDiag.getMessage();
1241   OutDiag.LocOffset = 0;
1242   if (InDiag.getLocation().isInvalid())
1243     return OutDiag;
1244   const SourceManager &SM = InDiag.getLocation().getManager();
1245   SourceLocation FileLoc = SM.getFileLoc(InDiag.getLocation());
1246   OutDiag.Filename = SM.getFilename(FileLoc);
1247   if (OutDiag.Filename.empty())
1248     return OutDiag;
1249   OutDiag.LocOffset = SM.getFileOffset(FileLoc);
1250   for (const auto &Range : InDiag.getRanges())
1251     OutDiag.Ranges.push_back(makeStandaloneRange(Range, SM, LangOpts));
1252   for (const auto &FixIt : InDiag.getFixIts())
1253     OutDiag.FixIts.push_back(makeStandaloneFixIt(SM, LangOpts, FixIt));
1254 
1255   return OutDiag;
1256 }
1257 
1258 /// Attempt to build or re-use a precompiled preamble when (re-)parsing
1259 /// the source file.
1260 ///
1261 /// This routine will compute the preamble of the main source file. If a
1262 /// non-trivial preamble is found, it will precompile that preamble into a
1263 /// precompiled header so that the precompiled preamble can be used to reduce
1264 /// reparsing time. If a precompiled preamble has already been constructed,
1265 /// this routine will determine if it is still valid and, if so, avoid
1266 /// rebuilding the precompiled preamble.
1267 ///
1268 /// \param AllowRebuild When true (the default), this routine is
1269 /// allowed to rebuild the precompiled preamble if it is found to be
1270 /// out-of-date.
1271 ///
1272 /// \param MaxLines When non-zero, the maximum number of lines that
1273 /// can occur within the preamble.
1274 ///
1275 /// \returns If the precompiled preamble can be used, returns a newly-allocated
1276 /// buffer that should be used in place of the main file when doing so.
1277 /// Otherwise, returns a NULL pointer.
1278 std::unique_ptr<llvm::MemoryBuffer>
1279 ASTUnit::getMainBufferWithPrecompiledPreamble(
1280     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1281     CompilerInvocation &PreambleInvocationIn,
1282     IntrusiveRefCntPtr<vfs::FileSystem> VFS, bool AllowRebuild,
1283     unsigned MaxLines) {
1284   auto MainFilePath =
1285       PreambleInvocationIn.getFrontendOpts().Inputs[0].getFile();
1286   std::unique_ptr<llvm::MemoryBuffer> MainFileBuffer =
1287       getBufferForFileHandlingRemapping(PreambleInvocationIn, VFS.get(),
1288                                         MainFilePath, UserFilesAreVolatile);
1289   if (!MainFileBuffer)
1290     return nullptr;
1291 
1292   PreambleBounds Bounds =
1293       ComputePreambleBounds(*PreambleInvocationIn.getLangOpts(),
1294                             MainFileBuffer.get(), MaxLines);
1295   if (!Bounds.Size)
1296     return nullptr;
1297 
1298   if (Preamble) {
1299     if (Preamble->CanReuse(PreambleInvocationIn, MainFileBuffer.get(), Bounds,
1300                            VFS.get())) {
1301       // Okay! We can re-use the precompiled preamble.
1302 
1303       // Set the state of the diagnostic object to mimic its state
1304       // after parsing the preamble.
1305       getDiagnostics().Reset();
1306       ProcessWarningOptions(getDiagnostics(),
1307                             PreambleInvocationIn.getDiagnosticOpts());
1308       getDiagnostics().setNumWarnings(NumWarningsInPreamble);
1309 
1310       PreambleRebuildCounter = 1;
1311       return MainFileBuffer;
1312     } else {
1313       Preamble.reset();
1314       PreambleDiagnostics.clear();
1315       TopLevelDeclsInPreamble.clear();
1316       PreambleSrcLocCache.clear();
1317       PreambleRebuildCounter = 1;
1318     }
1319   }
1320 
1321   // If the preamble rebuild counter > 1, it's because we previously
1322   // failed to build a preamble and we're not yet ready to try
1323   // again. Decrement the counter and return a failure.
1324   if (PreambleRebuildCounter > 1) {
1325     --PreambleRebuildCounter;
1326     return nullptr;
1327   }
1328 
1329   assert(!Preamble && "No Preamble should be stored at that point");
1330   // If we aren't allowed to rebuild the precompiled preamble, just
1331   // return now.
1332   if (!AllowRebuild)
1333     return nullptr;
1334 
1335   SmallVector<StandaloneDiagnostic, 4> NewPreambleDiagsStandalone;
1336   SmallVector<StoredDiagnostic, 4> NewPreambleDiags;
1337   ASTUnitPreambleCallbacks Callbacks;
1338   {
1339     llvm::Optional<CaptureDroppedDiagnostics> Capture;
1340     if (CaptureDiagnostics)
1341       Capture.emplace(/*RequestCapture=*/true, *Diagnostics, &NewPreambleDiags,
1342                       &NewPreambleDiagsStandalone);
1343 
1344     // We did not previously compute a preamble, or it can't be reused anyway.
1345     SimpleTimer PreambleTimer(WantTiming);
1346     PreambleTimer.setOutput("Precompiling preamble");
1347 
1348     const bool PreviousSkipFunctionBodies =
1349         PreambleInvocationIn.getFrontendOpts().SkipFunctionBodies;
1350     if (SkipFunctionBodies == SkipFunctionBodiesScope::Preamble)
1351       PreambleInvocationIn.getFrontendOpts().SkipFunctionBodies = true;
1352 
1353     llvm::ErrorOr<PrecompiledPreamble> NewPreamble = PrecompiledPreamble::Build(
1354         PreambleInvocationIn, MainFileBuffer.get(), Bounds, *Diagnostics, VFS,
1355         PCHContainerOps, /*StoreInMemory=*/false, Callbacks);
1356 
1357     PreambleInvocationIn.getFrontendOpts().SkipFunctionBodies =
1358         PreviousSkipFunctionBodies;
1359 
1360     if (NewPreamble) {
1361       Preamble = std::move(*NewPreamble);
1362       PreambleRebuildCounter = 1;
1363     } else {
1364       switch (static_cast<BuildPreambleError>(NewPreamble.getError().value())) {
1365       case BuildPreambleError::CouldntCreateTempFile:
1366         // Try again next time.
1367         PreambleRebuildCounter = 1;
1368         return nullptr;
1369       case BuildPreambleError::CouldntCreateTargetInfo:
1370       case BuildPreambleError::BeginSourceFileFailed:
1371       case BuildPreambleError::CouldntEmitPCH:
1372         // These erros are more likely to repeat, retry after some period.
1373         PreambleRebuildCounter = DefaultPreambleRebuildInterval;
1374         return nullptr;
1375       }
1376       llvm_unreachable("unexpected BuildPreambleError");
1377     }
1378   }
1379 
1380   assert(Preamble && "Preamble wasn't built");
1381 
1382   TopLevelDecls.clear();
1383   TopLevelDeclsInPreamble = Callbacks.takeTopLevelDeclIDs();
1384   PreambleTopLevelHashValue = Callbacks.getHash();
1385 
1386   NumWarningsInPreamble = getDiagnostics().getNumWarnings();
1387 
1388   checkAndRemoveNonDriverDiags(NewPreambleDiags);
1389   StoredDiagnostics = std::move(NewPreambleDiags);
1390   PreambleDiagnostics = std::move(NewPreambleDiagsStandalone);
1391 
1392   // If the hash of top-level entities differs from the hash of the top-level
1393   // entities the last time we rebuilt the preamble, clear out the completion
1394   // cache.
1395   if (CurrentTopLevelHashValue != PreambleTopLevelHashValue) {
1396     CompletionCacheTopLevelHashValue = 0;
1397     PreambleTopLevelHashValue = CurrentTopLevelHashValue;
1398   }
1399 
1400   return MainFileBuffer;
1401 }
1402 
1403 void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1404   assert(Preamble && "Should only be called when preamble was built");
1405 
1406   std::vector<Decl *> Resolved;
1407   Resolved.reserve(TopLevelDeclsInPreamble.size());
1408   ExternalASTSource &Source = *getASTContext().getExternalSource();
1409   for (const auto TopLevelDecl : TopLevelDeclsInPreamble) {
1410     // Resolve the declaration ID to an actual declaration, possibly
1411     // deserializing the declaration in the process.
1412     if (Decl *D = Source.GetExternalDecl(TopLevelDecl))
1413       Resolved.push_back(D);
1414   }
1415   TopLevelDeclsInPreamble.clear();
1416   TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1417 }
1418 
1419 void ASTUnit::transferASTDataFromCompilerInstance(CompilerInstance &CI) {
1420   // Steal the created target, context, and preprocessor if they have been
1421   // created.
1422   assert(CI.hasInvocation() && "missing invocation");
1423   LangOpts = CI.getInvocation().LangOpts;
1424   TheSema = CI.takeSema();
1425   Consumer = CI.takeASTConsumer();
1426   if (CI.hasASTContext())
1427     Ctx = &CI.getASTContext();
1428   if (CI.hasPreprocessor())
1429     PP = CI.getPreprocessorPtr();
1430   CI.setSourceManager(nullptr);
1431   CI.setFileManager(nullptr);
1432   if (CI.hasTarget())
1433     Target = &CI.getTarget();
1434   Reader = CI.getModuleManager();
1435   HadModuleLoaderFatalFailure = CI.hadModuleLoaderFatalFailure();
1436 }
1437 
1438 StringRef ASTUnit::getMainFileName() const {
1439   if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) {
1440     const FrontendInputFile &Input = Invocation->getFrontendOpts().Inputs[0];
1441     if (Input.isFile())
1442       return Input.getFile();
1443     else
1444       return Input.getBuffer()->getBufferIdentifier();
1445   }
1446 
1447   if (SourceMgr) {
1448     if (const FileEntry *
1449           FE = SourceMgr->getFileEntryForID(SourceMgr->getMainFileID()))
1450       return FE->getName();
1451   }
1452 
1453   return {};
1454 }
1455 
1456 StringRef ASTUnit::getASTFileName() const {
1457   if (!isMainFileAST())
1458     return {};
1459 
1460   serialization::ModuleFile &
1461     Mod = Reader->getModuleManager().getPrimaryModule();
1462   return Mod.FileName;
1463 }
1464 
1465 std::unique_ptr<ASTUnit>
1466 ASTUnit::create(std::shared_ptr<CompilerInvocation> CI,
1467                 IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
1468                 bool CaptureDiagnostics, bool UserFilesAreVolatile) {
1469   std::unique_ptr<ASTUnit> AST(new ASTUnit(false));
1470   ConfigureDiags(Diags, *AST, CaptureDiagnostics);
1471   IntrusiveRefCntPtr<vfs::FileSystem> VFS =
1472       createVFSFromCompilerInvocation(*CI, *Diags);
1473   AST->Diagnostics = Diags;
1474   AST->FileSystemOpts = CI->getFileSystemOpts();
1475   AST->Invocation = std::move(CI);
1476   AST->FileMgr = new FileManager(AST->FileSystemOpts, VFS);
1477   AST->UserFilesAreVolatile = UserFilesAreVolatile;
1478   AST->SourceMgr = new SourceManager(AST->getDiagnostics(), *AST->FileMgr,
1479                                      UserFilesAreVolatile);
1480   AST->PCMCache = new MemoryBufferCache;
1481 
1482   return AST;
1483 }
1484 
1485 ASTUnit *ASTUnit::LoadFromCompilerInvocationAction(
1486     std::shared_ptr<CompilerInvocation> CI,
1487     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1488     IntrusiveRefCntPtr<DiagnosticsEngine> Diags, FrontendAction *Action,
1489     ASTUnit *Unit, bool Persistent, StringRef ResourceFilesPath,
1490     bool OnlyLocalDecls, bool CaptureDiagnostics,
1491     unsigned PrecompilePreambleAfterNParses, bool CacheCodeCompletionResults,
1492     bool IncludeBriefCommentsInCodeCompletion, bool UserFilesAreVolatile,
1493     std::unique_ptr<ASTUnit> *ErrAST) {
1494   assert(CI && "A CompilerInvocation is required");
1495 
1496   std::unique_ptr<ASTUnit> OwnAST;
1497   ASTUnit *AST = Unit;
1498   if (!AST) {
1499     // Create the AST unit.
1500     OwnAST = create(CI, Diags, CaptureDiagnostics, UserFilesAreVolatile);
1501     AST = OwnAST.get();
1502     if (!AST)
1503       return nullptr;
1504   }
1505 
1506   if (!ResourceFilesPath.empty()) {
1507     // Override the resources path.
1508     CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
1509   }
1510   AST->OnlyLocalDecls = OnlyLocalDecls;
1511   AST->CaptureDiagnostics = CaptureDiagnostics;
1512   if (PrecompilePreambleAfterNParses > 0)
1513     AST->PreambleRebuildCounter = PrecompilePreambleAfterNParses;
1514   AST->TUKind = Action ? Action->getTranslationUnitKind() : TU_Complete;
1515   AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1516   AST->IncludeBriefCommentsInCodeCompletion
1517     = IncludeBriefCommentsInCodeCompletion;
1518 
1519   // Recover resources if we crash before exiting this method.
1520   llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1521     ASTUnitCleanup(OwnAST.get());
1522   llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
1523     llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine>>
1524     DiagCleanup(Diags.get());
1525 
1526   // We'll manage file buffers ourselves.
1527   CI->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1528   CI->getFrontendOpts().DisableFree = false;
1529   ProcessWarningOptions(AST->getDiagnostics(), CI->getDiagnosticOpts());
1530 
1531   // Create the compiler instance to use for building the AST.
1532   std::unique_ptr<CompilerInstance> Clang(
1533       new CompilerInstance(std::move(PCHContainerOps)));
1534 
1535   // Recover resources if we crash before exiting this method.
1536   llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1537     CICleanup(Clang.get());
1538 
1539   Clang->setInvocation(std::move(CI));
1540   AST->OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].getFile();
1541 
1542   // Set up diagnostics, capturing any diagnostics that would
1543   // otherwise be dropped.
1544   Clang->setDiagnostics(&AST->getDiagnostics());
1545 
1546   // Create the target instance.
1547   Clang->setTarget(TargetInfo::CreateTargetInfo(
1548       Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
1549   if (!Clang->hasTarget())
1550     return nullptr;
1551 
1552   // Inform the target of the language options.
1553   //
1554   // FIXME: We shouldn't need to do this, the target should be immutable once
1555   // created. This complexity should be lifted elsewhere.
1556   Clang->getTarget().adjust(Clang->getLangOpts());
1557 
1558   assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
1559          "Invocation must have exactly one source file!");
1560   assert(Clang->getFrontendOpts().Inputs[0].getKind().getFormat() ==
1561              InputKind::Source &&
1562          "FIXME: AST inputs not yet supported here!");
1563   assert(Clang->getFrontendOpts().Inputs[0].getKind().getLanguage() !=
1564              InputKind::LLVM_IR &&
1565          "IR inputs not support here!");
1566 
1567   // Configure the various subsystems.
1568   AST->TheSema.reset();
1569   AST->Ctx = nullptr;
1570   AST->PP = nullptr;
1571   AST->Reader = nullptr;
1572 
1573   // Create a file manager object to provide access to and cache the filesystem.
1574   Clang->setFileManager(&AST->getFileManager());
1575 
1576   // Create the source manager.
1577   Clang->setSourceManager(&AST->getSourceManager());
1578 
1579   FrontendAction *Act = Action;
1580 
1581   std::unique_ptr<TopLevelDeclTrackerAction> TrackerAct;
1582   if (!Act) {
1583     TrackerAct.reset(new TopLevelDeclTrackerAction(*AST));
1584     Act = TrackerAct.get();
1585   }
1586 
1587   // Recover resources if we crash before exiting this method.
1588   llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1589     ActCleanup(TrackerAct.get());
1590 
1591   if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) {
1592     AST->transferASTDataFromCompilerInstance(*Clang);
1593     if (OwnAST && ErrAST)
1594       ErrAST->swap(OwnAST);
1595 
1596     return nullptr;
1597   }
1598 
1599   if (Persistent && !TrackerAct) {
1600     Clang->getPreprocessor().addPPCallbacks(
1601         llvm::make_unique<MacroDefinitionTrackerPPCallbacks>(
1602                                            AST->getCurrentTopLevelHashValue()));
1603     std::vector<std::unique_ptr<ASTConsumer>> Consumers;
1604     if (Clang->hasASTConsumer())
1605       Consumers.push_back(Clang->takeASTConsumer());
1606     Consumers.push_back(llvm::make_unique<TopLevelDeclTrackerConsumer>(
1607         *AST, AST->getCurrentTopLevelHashValue()));
1608     Clang->setASTConsumer(
1609         llvm::make_unique<MultiplexConsumer>(std::move(Consumers)));
1610   }
1611   if (!Act->Execute()) {
1612     AST->transferASTDataFromCompilerInstance(*Clang);
1613     if (OwnAST && ErrAST)
1614       ErrAST->swap(OwnAST);
1615 
1616     return nullptr;
1617   }
1618 
1619   // Steal the created target, context, and preprocessor.
1620   AST->transferASTDataFromCompilerInstance(*Clang);
1621 
1622   Act->EndSourceFile();
1623 
1624   if (OwnAST)
1625     return OwnAST.release();
1626   else
1627     return AST;
1628 }
1629 
1630 bool ASTUnit::LoadFromCompilerInvocation(
1631     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1632     unsigned PrecompilePreambleAfterNParses,
1633     IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
1634   if (!Invocation)
1635     return true;
1636 
1637   assert(VFS && "VFS is null");
1638 
1639   // We'll manage file buffers ourselves.
1640   Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1641   Invocation->getFrontendOpts().DisableFree = false;
1642   getDiagnostics().Reset();
1643   ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1644 
1645   std::unique_ptr<llvm::MemoryBuffer> OverrideMainBuffer;
1646   if (PrecompilePreambleAfterNParses > 0) {
1647     PreambleRebuildCounter = PrecompilePreambleAfterNParses;
1648     OverrideMainBuffer =
1649         getMainBufferWithPrecompiledPreamble(PCHContainerOps, *Invocation, VFS);
1650     getDiagnostics().Reset();
1651     ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1652   }
1653 
1654   SimpleTimer ParsingTimer(WantTiming);
1655   ParsingTimer.setOutput("Parsing " + getMainFileName());
1656 
1657   // Recover resources if we crash before exiting this method.
1658   llvm::CrashRecoveryContextCleanupRegistrar<llvm::MemoryBuffer>
1659     MemBufferCleanup(OverrideMainBuffer.get());
1660 
1661   return Parse(std::move(PCHContainerOps), std::move(OverrideMainBuffer), VFS);
1662 }
1663 
1664 std::unique_ptr<ASTUnit> ASTUnit::LoadFromCompilerInvocation(
1665     std::shared_ptr<CompilerInvocation> CI,
1666     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1667     IntrusiveRefCntPtr<DiagnosticsEngine> Diags, FileManager *FileMgr,
1668     bool OnlyLocalDecls, bool CaptureDiagnostics,
1669     unsigned PrecompilePreambleAfterNParses, TranslationUnitKind TUKind,
1670     bool CacheCodeCompletionResults, bool IncludeBriefCommentsInCodeCompletion,
1671     bool UserFilesAreVolatile) {
1672   // Create the AST unit.
1673   std::unique_ptr<ASTUnit> AST(new ASTUnit(false));
1674   ConfigureDiags(Diags, *AST, CaptureDiagnostics);
1675   AST->Diagnostics = Diags;
1676   AST->OnlyLocalDecls = OnlyLocalDecls;
1677   AST->CaptureDiagnostics = CaptureDiagnostics;
1678   AST->TUKind = TUKind;
1679   AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1680   AST->IncludeBriefCommentsInCodeCompletion
1681     = IncludeBriefCommentsInCodeCompletion;
1682   AST->Invocation = std::move(CI);
1683   AST->FileSystemOpts = FileMgr->getFileSystemOpts();
1684   AST->FileMgr = FileMgr;
1685   AST->UserFilesAreVolatile = UserFilesAreVolatile;
1686 
1687   // Recover resources if we crash before exiting this method.
1688   llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1689     ASTUnitCleanup(AST.get());
1690   llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
1691     llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine>>
1692     DiagCleanup(Diags.get());
1693 
1694   if (AST->LoadFromCompilerInvocation(std::move(PCHContainerOps),
1695                                       PrecompilePreambleAfterNParses,
1696                                       AST->FileMgr->getVirtualFileSystem()))
1697     return nullptr;
1698   return AST;
1699 }
1700 
1701 ASTUnit *ASTUnit::LoadFromCommandLine(
1702     const char **ArgBegin, const char **ArgEnd,
1703     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1704     IntrusiveRefCntPtr<DiagnosticsEngine> Diags, StringRef ResourceFilesPath,
1705     bool OnlyLocalDecls, bool CaptureDiagnostics,
1706     ArrayRef<RemappedFile> RemappedFiles, bool RemappedFilesKeepOriginalName,
1707     unsigned PrecompilePreambleAfterNParses, TranslationUnitKind TUKind,
1708     bool CacheCodeCompletionResults, bool IncludeBriefCommentsInCodeCompletion,
1709     bool AllowPCHWithCompilerErrors, SkipFunctionBodiesScope SkipFunctionBodies,
1710     bool SingleFileParse, bool UserFilesAreVolatile, bool ForSerialization,
1711     llvm::Optional<StringRef> ModuleFormat, std::unique_ptr<ASTUnit> *ErrAST,
1712     IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
1713   assert(Diags.get() && "no DiagnosticsEngine was provided");
1714 
1715   SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
1716 
1717   std::shared_ptr<CompilerInvocation> CI;
1718 
1719   {
1720     CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags,
1721                                       &StoredDiagnostics, nullptr);
1722 
1723     CI = createInvocationFromCommandLine(
1724         llvm::makeArrayRef(ArgBegin, ArgEnd), Diags, VFS);
1725     if (!CI)
1726       return nullptr;
1727   }
1728 
1729   // Override any files that need remapping
1730   for (const auto &RemappedFile : RemappedFiles) {
1731     CI->getPreprocessorOpts().addRemappedFile(RemappedFile.first,
1732                                               RemappedFile.second);
1733   }
1734   PreprocessorOptions &PPOpts = CI->getPreprocessorOpts();
1735   PPOpts.RemappedFilesKeepOriginalName = RemappedFilesKeepOriginalName;
1736   PPOpts.AllowPCHWithCompilerErrors = AllowPCHWithCompilerErrors;
1737   PPOpts.SingleFileParseMode = SingleFileParse;
1738 
1739   // Override the resources path.
1740   CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
1741 
1742   CI->getFrontendOpts().SkipFunctionBodies =
1743       SkipFunctionBodies == SkipFunctionBodiesScope::PreambleAndMainFile;
1744 
1745   if (ModuleFormat)
1746     CI->getHeaderSearchOpts().ModuleFormat = ModuleFormat.getValue();
1747 
1748   // Create the AST unit.
1749   std::unique_ptr<ASTUnit> AST;
1750   AST.reset(new ASTUnit(false));
1751   AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size();
1752   AST->StoredDiagnostics.swap(StoredDiagnostics);
1753   ConfigureDiags(Diags, *AST, CaptureDiagnostics);
1754   AST->Diagnostics = Diags;
1755   AST->FileSystemOpts = CI->getFileSystemOpts();
1756   if (!VFS)
1757     VFS = vfs::getRealFileSystem();
1758   VFS = createVFSFromCompilerInvocation(*CI, *Diags, VFS);
1759   AST->FileMgr = new FileManager(AST->FileSystemOpts, VFS);
1760   AST->PCMCache = new MemoryBufferCache;
1761   AST->OnlyLocalDecls = OnlyLocalDecls;
1762   AST->CaptureDiagnostics = CaptureDiagnostics;
1763   AST->TUKind = TUKind;
1764   AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1765   AST->IncludeBriefCommentsInCodeCompletion
1766     = IncludeBriefCommentsInCodeCompletion;
1767   AST->UserFilesAreVolatile = UserFilesAreVolatile;
1768   AST->Invocation = CI;
1769   AST->SkipFunctionBodies = SkipFunctionBodies;
1770   if (ForSerialization)
1771     AST->WriterData.reset(new ASTWriterData(*AST->PCMCache));
1772   // Zero out now to ease cleanup during crash recovery.
1773   CI = nullptr;
1774   Diags = nullptr;
1775 
1776   // Recover resources if we crash before exiting this method.
1777   llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1778     ASTUnitCleanup(AST.get());
1779 
1780   if (AST->LoadFromCompilerInvocation(std::move(PCHContainerOps),
1781                                       PrecompilePreambleAfterNParses,
1782                                       VFS)) {
1783     // Some error occurred, if caller wants to examine diagnostics, pass it the
1784     // ASTUnit.
1785     if (ErrAST) {
1786       AST->StoredDiagnostics.swap(AST->FailedParseDiagnostics);
1787       ErrAST->swap(AST);
1788     }
1789     return nullptr;
1790   }
1791 
1792   return AST.release();
1793 }
1794 
1795 bool ASTUnit::Reparse(std::shared_ptr<PCHContainerOperations> PCHContainerOps,
1796                       ArrayRef<RemappedFile> RemappedFiles,
1797                       IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
1798   if (!Invocation)
1799     return true;
1800 
1801   if (!VFS) {
1802     assert(FileMgr && "FileMgr is null on Reparse call");
1803     VFS = FileMgr->getVirtualFileSystem();
1804   }
1805 
1806   clearFileLevelDecls();
1807 
1808   SimpleTimer ParsingTimer(WantTiming);
1809   ParsingTimer.setOutput("Reparsing " + getMainFileName());
1810 
1811   // Remap files.
1812   PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1813   for (const auto &RB : PPOpts.RemappedFileBuffers)
1814     delete RB.second;
1815 
1816   Invocation->getPreprocessorOpts().clearRemappedFiles();
1817   for (const auto &RemappedFile : RemappedFiles) {
1818     Invocation->getPreprocessorOpts().addRemappedFile(RemappedFile.first,
1819                                                       RemappedFile.second);
1820   }
1821 
1822   // If we have a preamble file lying around, or if we might try to
1823   // build a precompiled preamble, do so now.
1824   std::unique_ptr<llvm::MemoryBuffer> OverrideMainBuffer;
1825   if (Preamble || PreambleRebuildCounter > 0)
1826     OverrideMainBuffer =
1827         getMainBufferWithPrecompiledPreamble(PCHContainerOps, *Invocation, VFS);
1828 
1829   // Clear out the diagnostics state.
1830   FileMgr.reset();
1831   getDiagnostics().Reset();
1832   ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1833   if (OverrideMainBuffer)
1834     getDiagnostics().setNumWarnings(NumWarningsInPreamble);
1835 
1836   // Parse the sources
1837   bool Result =
1838       Parse(std::move(PCHContainerOps), std::move(OverrideMainBuffer), VFS);
1839 
1840   // If we're caching global code-completion results, and the top-level
1841   // declarations have changed, clear out the code-completion cache.
1842   if (!Result && ShouldCacheCodeCompletionResults &&
1843       CurrentTopLevelHashValue != CompletionCacheTopLevelHashValue)
1844     CacheCodeCompletionResults();
1845 
1846   // We now need to clear out the completion info related to this translation
1847   // unit; it'll be recreated if necessary.
1848   CCTUInfo.reset();
1849 
1850   return Result;
1851 }
1852 
1853 void ASTUnit::ResetForParse() {
1854   SavedMainFileBuffer.reset();
1855 
1856   SourceMgr.reset();
1857   TheSema.reset();
1858   Ctx.reset();
1859   PP.reset();
1860   Reader.reset();
1861 
1862   TopLevelDecls.clear();
1863   clearFileLevelDecls();
1864 }
1865 
1866 //----------------------------------------------------------------------------//
1867 // Code completion
1868 //----------------------------------------------------------------------------//
1869 
1870 namespace {
1871 
1872   /// Code completion consumer that combines the cached code-completion
1873   /// results from an ASTUnit with the code-completion results provided to it,
1874   /// then passes the result on to
1875   class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
1876     uint64_t NormalContexts;
1877     ASTUnit &AST;
1878     CodeCompleteConsumer &Next;
1879 
1880   public:
1881     AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
1882                                   const CodeCompleteOptions &CodeCompleteOpts)
1883         : CodeCompleteConsumer(CodeCompleteOpts, Next.isOutputBinary()),
1884           AST(AST), Next(Next) {
1885       // Compute the set of contexts in which we will look when we don't have
1886       // any information about the specific context.
1887       NormalContexts
1888         = (1LL << CodeCompletionContext::CCC_TopLevel)
1889         | (1LL << CodeCompletionContext::CCC_ObjCInterface)
1890         | (1LL << CodeCompletionContext::CCC_ObjCImplementation)
1891         | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
1892         | (1LL << CodeCompletionContext::CCC_Statement)
1893         | (1LL << CodeCompletionContext::CCC_Expression)
1894         | (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver)
1895         | (1LL << CodeCompletionContext::CCC_DotMemberAccess)
1896         | (1LL << CodeCompletionContext::CCC_ArrowMemberAccess)
1897         | (1LL << CodeCompletionContext::CCC_ObjCPropertyAccess)
1898         | (1LL << CodeCompletionContext::CCC_ObjCProtocolName)
1899         | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression)
1900         | (1LL << CodeCompletionContext::CCC_Recovery);
1901 
1902       if (AST.getASTContext().getLangOpts().CPlusPlus)
1903         NormalContexts |= (1LL << CodeCompletionContext::CCC_EnumTag)
1904                        |  (1LL << CodeCompletionContext::CCC_UnionTag)
1905                        |  (1LL << CodeCompletionContext::CCC_ClassOrStructTag);
1906     }
1907 
1908     void ProcessCodeCompleteResults(Sema &S, CodeCompletionContext Context,
1909                                     CodeCompletionResult *Results,
1910                                     unsigned NumResults) override;
1911 
1912     void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
1913                                    OverloadCandidate *Candidates,
1914                                    unsigned NumCandidates,
1915                                    SourceLocation OpenParLoc) override {
1916       Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates,
1917                                      OpenParLoc);
1918     }
1919 
1920     CodeCompletionAllocator &getAllocator() override {
1921       return Next.getAllocator();
1922     }
1923 
1924     CodeCompletionTUInfo &getCodeCompletionTUInfo() override {
1925       return Next.getCodeCompletionTUInfo();
1926     }
1927   };
1928 
1929 } // namespace
1930 
1931 /// Helper function that computes which global names are hidden by the
1932 /// local code-completion results.
1933 static void CalculateHiddenNames(const CodeCompletionContext &Context,
1934                                  CodeCompletionResult *Results,
1935                                  unsigned NumResults,
1936                                  ASTContext &Ctx,
1937                           llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames){
1938   bool OnlyTagNames = false;
1939   switch (Context.getKind()) {
1940   case CodeCompletionContext::CCC_Recovery:
1941   case CodeCompletionContext::CCC_TopLevel:
1942   case CodeCompletionContext::CCC_ObjCInterface:
1943   case CodeCompletionContext::CCC_ObjCImplementation:
1944   case CodeCompletionContext::CCC_ObjCIvarList:
1945   case CodeCompletionContext::CCC_ClassStructUnion:
1946   case CodeCompletionContext::CCC_Statement:
1947   case CodeCompletionContext::CCC_Expression:
1948   case CodeCompletionContext::CCC_ObjCMessageReceiver:
1949   case CodeCompletionContext::CCC_DotMemberAccess:
1950   case CodeCompletionContext::CCC_ArrowMemberAccess:
1951   case CodeCompletionContext::CCC_ObjCPropertyAccess:
1952   case CodeCompletionContext::CCC_Namespace:
1953   case CodeCompletionContext::CCC_Type:
1954   case CodeCompletionContext::CCC_Name:
1955   case CodeCompletionContext::CCC_PotentiallyQualifiedName:
1956   case CodeCompletionContext::CCC_ParenthesizedExpression:
1957   case CodeCompletionContext::CCC_ObjCInterfaceName:
1958     break;
1959 
1960   case CodeCompletionContext::CCC_EnumTag:
1961   case CodeCompletionContext::CCC_UnionTag:
1962   case CodeCompletionContext::CCC_ClassOrStructTag:
1963     OnlyTagNames = true;
1964     break;
1965 
1966   case CodeCompletionContext::CCC_ObjCProtocolName:
1967   case CodeCompletionContext::CCC_MacroName:
1968   case CodeCompletionContext::CCC_MacroNameUse:
1969   case CodeCompletionContext::CCC_PreprocessorExpression:
1970   case CodeCompletionContext::CCC_PreprocessorDirective:
1971   case CodeCompletionContext::CCC_NaturalLanguage:
1972   case CodeCompletionContext::CCC_SelectorName:
1973   case CodeCompletionContext::CCC_TypeQualifiers:
1974   case CodeCompletionContext::CCC_Other:
1975   case CodeCompletionContext::CCC_OtherWithMacros:
1976   case CodeCompletionContext::CCC_ObjCInstanceMessage:
1977   case CodeCompletionContext::CCC_ObjCClassMessage:
1978   case CodeCompletionContext::CCC_ObjCCategoryName:
1979     // We're looking for nothing, or we're looking for names that cannot
1980     // be hidden.
1981     return;
1982   }
1983 
1984   using Result = CodeCompletionResult;
1985   for (unsigned I = 0; I != NumResults; ++I) {
1986     if (Results[I].Kind != Result::RK_Declaration)
1987       continue;
1988 
1989     unsigned IDNS
1990       = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
1991 
1992     bool Hiding = false;
1993     if (OnlyTagNames)
1994       Hiding = (IDNS & Decl::IDNS_Tag);
1995     else {
1996       unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
1997                              Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
1998                              Decl::IDNS_NonMemberOperator);
1999       if (Ctx.getLangOpts().CPlusPlus)
2000         HiddenIDNS |= Decl::IDNS_Tag;
2001       Hiding = (IDNS & HiddenIDNS);
2002     }
2003 
2004     if (!Hiding)
2005       continue;
2006 
2007     DeclarationName Name = Results[I].Declaration->getDeclName();
2008     if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
2009       HiddenNames.insert(Identifier->getName());
2010     else
2011       HiddenNames.insert(Name.getAsString());
2012   }
2013 }
2014 
2015 void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
2016                                             CodeCompletionContext Context,
2017                                             CodeCompletionResult *Results,
2018                                             unsigned NumResults) {
2019   // Merge the results we were given with the results we cached.
2020   bool AddedResult = false;
2021   uint64_t InContexts =
2022       Context.getKind() == CodeCompletionContext::CCC_Recovery
2023         ? NormalContexts : (1LL << Context.getKind());
2024   // Contains the set of names that are hidden by "local" completion results.
2025   llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
2026   using Result = CodeCompletionResult;
2027   SmallVector<Result, 8> AllResults;
2028   for (ASTUnit::cached_completion_iterator
2029             C = AST.cached_completion_begin(),
2030          CEnd = AST.cached_completion_end();
2031        C != CEnd; ++C) {
2032     // If the context we are in matches any of the contexts we are
2033     // interested in, we'll add this result.
2034     if ((C->ShowInContexts & InContexts) == 0)
2035       continue;
2036 
2037     // If we haven't added any results previously, do so now.
2038     if (!AddedResult) {
2039       CalculateHiddenNames(Context, Results, NumResults, S.Context,
2040                            HiddenNames);
2041       AllResults.insert(AllResults.end(), Results, Results + NumResults);
2042       AddedResult = true;
2043     }
2044 
2045     // Determine whether this global completion result is hidden by a local
2046     // completion result. If so, skip it.
2047     if (C->Kind != CXCursor_MacroDefinition &&
2048         HiddenNames.count(C->Completion->getTypedText()))
2049       continue;
2050 
2051     // Adjust priority based on similar type classes.
2052     unsigned Priority = C->Priority;
2053     CodeCompletionString *Completion = C->Completion;
2054     if (!Context.getPreferredType().isNull()) {
2055       if (C->Kind == CXCursor_MacroDefinition) {
2056         Priority = getMacroUsagePriority(C->Completion->getTypedText(),
2057                                          S.getLangOpts(),
2058                                Context.getPreferredType()->isAnyPointerType());
2059       } else if (C->Type) {
2060         CanQualType Expected
2061           = S.Context.getCanonicalType(
2062                                Context.getPreferredType().getUnqualifiedType());
2063         SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2064         if (ExpectedSTC == C->TypeClass) {
2065           // We know this type is similar; check for an exact match.
2066           llvm::StringMap<unsigned> &CachedCompletionTypes
2067             = AST.getCachedCompletionTypes();
2068           llvm::StringMap<unsigned>::iterator Pos
2069             = CachedCompletionTypes.find(QualType(Expected).getAsString());
2070           if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
2071             Priority /= CCF_ExactTypeMatch;
2072           else
2073             Priority /= CCF_SimilarTypeMatch;
2074         }
2075       }
2076     }
2077 
2078     // Adjust the completion string, if required.
2079     if (C->Kind == CXCursor_MacroDefinition &&
2080         Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
2081       // Create a new code-completion string that just contains the
2082       // macro name, without its arguments.
2083       CodeCompletionBuilder Builder(getAllocator(), getCodeCompletionTUInfo(),
2084                                     CCP_CodePattern, C->Availability);
2085       Builder.AddTypedTextChunk(C->Completion->getTypedText());
2086       Priority = CCP_CodePattern;
2087       Completion = Builder.TakeString();
2088     }
2089 
2090     AllResults.push_back(Result(Completion, Priority, C->Kind,
2091                                 C->Availability));
2092   }
2093 
2094   // If we did not add any cached completion results, just forward the
2095   // results we were given to the next consumer.
2096   if (!AddedResult) {
2097     Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
2098     return;
2099   }
2100 
2101   Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
2102                                   AllResults.size());
2103 }
2104 
2105 void ASTUnit::CodeComplete(
2106     StringRef File, unsigned Line, unsigned Column,
2107     ArrayRef<RemappedFile> RemappedFiles, bool IncludeMacros,
2108     bool IncludeCodePatterns, bool IncludeBriefComments,
2109     CodeCompleteConsumer &Consumer,
2110     std::shared_ptr<PCHContainerOperations> PCHContainerOps,
2111     DiagnosticsEngine &Diag, LangOptions &LangOpts, SourceManager &SourceMgr,
2112     FileManager &FileMgr, SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
2113     SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
2114   if (!Invocation)
2115     return;
2116 
2117   SimpleTimer CompletionTimer(WantTiming);
2118   CompletionTimer.setOutput("Code completion @ " + File + ":" +
2119                             Twine(Line) + ":" + Twine(Column));
2120 
2121   auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation);
2122 
2123   FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts();
2124   CodeCompleteOptions &CodeCompleteOpts = FrontendOpts.CodeCompleteOpts;
2125   PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts();
2126 
2127   CodeCompleteOpts.IncludeMacros = IncludeMacros &&
2128                                    CachedCompletionResults.empty();
2129   CodeCompleteOpts.IncludeCodePatterns = IncludeCodePatterns;
2130   CodeCompleteOpts.IncludeGlobals = CachedCompletionResults.empty();
2131   CodeCompleteOpts.IncludeBriefComments = IncludeBriefComments;
2132   CodeCompleteOpts.LoadExternal = Consumer.loadExternal();
2133   CodeCompleteOpts.IncludeFixIts = Consumer.includeFixIts();
2134 
2135   assert(IncludeBriefComments == this->IncludeBriefCommentsInCodeCompletion);
2136 
2137   FrontendOpts.CodeCompletionAt.FileName = File;
2138   FrontendOpts.CodeCompletionAt.Line = Line;
2139   FrontendOpts.CodeCompletionAt.Column = Column;
2140 
2141   // Set the language options appropriately.
2142   LangOpts = *CCInvocation->getLangOpts();
2143 
2144   // Spell-checking and warnings are wasteful during code-completion.
2145   LangOpts.SpellChecking = false;
2146   CCInvocation->getDiagnosticOpts().IgnoreWarnings = true;
2147 
2148   std::unique_ptr<CompilerInstance> Clang(
2149       new CompilerInstance(PCHContainerOps));
2150 
2151   // Recover resources if we crash before exiting this method.
2152   llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
2153     CICleanup(Clang.get());
2154 
2155   auto &Inv = *CCInvocation;
2156   Clang->setInvocation(std::move(CCInvocation));
2157   OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].getFile();
2158 
2159   // Set up diagnostics, capturing any diagnostics produced.
2160   Clang->setDiagnostics(&Diag);
2161   CaptureDroppedDiagnostics Capture(true,
2162                                     Clang->getDiagnostics(),
2163                                     &StoredDiagnostics, nullptr);
2164   ProcessWarningOptions(Diag, Inv.getDiagnosticOpts());
2165 
2166   // Create the target instance.
2167   Clang->setTarget(TargetInfo::CreateTargetInfo(
2168       Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
2169   if (!Clang->hasTarget()) {
2170     Clang->setInvocation(nullptr);
2171     return;
2172   }
2173 
2174   // Inform the target of the language options.
2175   //
2176   // FIXME: We shouldn't need to do this, the target should be immutable once
2177   // created. This complexity should be lifted elsewhere.
2178   Clang->getTarget().adjust(Clang->getLangOpts());
2179 
2180   assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
2181          "Invocation must have exactly one source file!");
2182   assert(Clang->getFrontendOpts().Inputs[0].getKind().getFormat() ==
2183              InputKind::Source &&
2184          "FIXME: AST inputs not yet supported here!");
2185   assert(Clang->getFrontendOpts().Inputs[0].getKind().getLanguage() !=
2186              InputKind::LLVM_IR &&
2187          "IR inputs not support here!");
2188 
2189   // Use the source and file managers that we were given.
2190   Clang->setFileManager(&FileMgr);
2191   Clang->setSourceManager(&SourceMgr);
2192 
2193   // Remap files.
2194   PreprocessorOpts.clearRemappedFiles();
2195   PreprocessorOpts.RetainRemappedFileBuffers = true;
2196   for (const auto &RemappedFile : RemappedFiles) {
2197     PreprocessorOpts.addRemappedFile(RemappedFile.first, RemappedFile.second);
2198     OwnedBuffers.push_back(RemappedFile.second);
2199   }
2200 
2201   // Use the code completion consumer we were given, but adding any cached
2202   // code-completion results.
2203   AugmentedCodeCompleteConsumer *AugmentedConsumer
2204     = new AugmentedCodeCompleteConsumer(*this, Consumer, CodeCompleteOpts);
2205   Clang->setCodeCompletionConsumer(AugmentedConsumer);
2206 
2207   // If we have a precompiled preamble, try to use it. We only allow
2208   // the use of the precompiled preamble if we're if the completion
2209   // point is within the main file, after the end of the precompiled
2210   // preamble.
2211   std::unique_ptr<llvm::MemoryBuffer> OverrideMainBuffer;
2212   if (Preamble) {
2213     std::string CompleteFilePath(File);
2214 
2215     auto VFS = FileMgr.getVirtualFileSystem();
2216     auto CompleteFileStatus = VFS->status(CompleteFilePath);
2217     if (CompleteFileStatus) {
2218       llvm::sys::fs::UniqueID CompleteFileID = CompleteFileStatus->getUniqueID();
2219 
2220       std::string MainPath(OriginalSourceFile);
2221       auto MainStatus = VFS->status(MainPath);
2222       if (MainStatus) {
2223         llvm::sys::fs::UniqueID MainID = MainStatus->getUniqueID();
2224         if (CompleteFileID == MainID && Line > 1)
2225           OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(
2226               PCHContainerOps, Inv, VFS, false, Line - 1);
2227       }
2228     }
2229   }
2230 
2231   // If the main file has been overridden due to the use of a preamble,
2232   // make that override happen and introduce the preamble.
2233   if (OverrideMainBuffer) {
2234     assert(Preamble &&
2235            "No preamble was built, but OverrideMainBuffer is not null");
2236 
2237     auto VFS = FileMgr.getVirtualFileSystem();
2238     Preamble->AddImplicitPreamble(Clang->getInvocation(), VFS,
2239                                   OverrideMainBuffer.get());
2240     // FIXME: there is no way to update VFS if it was changed by
2241     // AddImplicitPreamble as FileMgr is accepted as a parameter by this method.
2242     // We use on-disk preambles instead and rely on FileMgr's VFS to ensure the
2243     // PCH files are always readable.
2244     OwnedBuffers.push_back(OverrideMainBuffer.release());
2245   } else {
2246     PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
2247     PreprocessorOpts.PrecompiledPreambleBytes.second = false;
2248   }
2249 
2250   // Disable the preprocessing record if modules are not enabled.
2251   if (!Clang->getLangOpts().Modules)
2252     PreprocessorOpts.DetailedRecord = false;
2253 
2254   std::unique_ptr<SyntaxOnlyAction> Act;
2255   Act.reset(new SyntaxOnlyAction);
2256   if (Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) {
2257     Act->Execute();
2258     Act->EndSourceFile();
2259   }
2260 }
2261 
2262 bool ASTUnit::Save(StringRef File) {
2263   if (HadModuleLoaderFatalFailure)
2264     return true;
2265 
2266   // Write to a temporary file and later rename it to the actual file, to avoid
2267   // possible race conditions.
2268   SmallString<128> TempPath;
2269   TempPath = File;
2270   TempPath += "-%%%%%%%%";
2271   int fd;
2272   if (llvm::sys::fs::createUniqueFile(TempPath, fd, TempPath))
2273     return true;
2274 
2275   // FIXME: Can we somehow regenerate the stat cache here, or do we need to
2276   // unconditionally create a stat cache when we parse the file?
2277   llvm::raw_fd_ostream Out(fd, /*shouldClose=*/true);
2278 
2279   serialize(Out);
2280   Out.close();
2281   if (Out.has_error()) {
2282     Out.clear_error();
2283     return true;
2284   }
2285 
2286   if (llvm::sys::fs::rename(TempPath, File)) {
2287     llvm::sys::fs::remove(TempPath);
2288     return true;
2289   }
2290 
2291   return false;
2292 }
2293 
2294 static bool serializeUnit(ASTWriter &Writer,
2295                           SmallVectorImpl<char> &Buffer,
2296                           Sema &S,
2297                           bool hasErrors,
2298                           raw_ostream &OS) {
2299   Writer.WriteAST(S, std::string(), nullptr, "", hasErrors);
2300 
2301   // Write the generated bitstream to "Out".
2302   if (!Buffer.empty())
2303     OS.write(Buffer.data(), Buffer.size());
2304 
2305   return false;
2306 }
2307 
2308 bool ASTUnit::serialize(raw_ostream &OS) {
2309   // For serialization we are lenient if the errors were only warn-as-error kind.
2310   bool hasErrors = getDiagnostics().hasUncompilableErrorOccurred();
2311 
2312   if (WriterData)
2313     return serializeUnit(WriterData->Writer, WriterData->Buffer,
2314                          getSema(), hasErrors, OS);
2315 
2316   SmallString<128> Buffer;
2317   llvm::BitstreamWriter Stream(Buffer);
2318   MemoryBufferCache PCMCache;
2319   ASTWriter Writer(Stream, Buffer, PCMCache, {});
2320   return serializeUnit(Writer, Buffer, getSema(), hasErrors, OS);
2321 }
2322 
2323 using SLocRemap = ContinuousRangeMap<unsigned, int, 2>;
2324 
2325 void ASTUnit::TranslateStoredDiagnostics(
2326                           FileManager &FileMgr,
2327                           SourceManager &SrcMgr,
2328                           const SmallVectorImpl<StandaloneDiagnostic> &Diags,
2329                           SmallVectorImpl<StoredDiagnostic> &Out) {
2330   // Map the standalone diagnostic into the new source manager. We also need to
2331   // remap all the locations to the new view. This includes the diag location,
2332   // any associated source ranges, and the source ranges of associated fix-its.
2333   // FIXME: There should be a cleaner way to do this.
2334   SmallVector<StoredDiagnostic, 4> Result;
2335   Result.reserve(Diags.size());
2336 
2337   for (const auto &SD : Diags) {
2338     // Rebuild the StoredDiagnostic.
2339     if (SD.Filename.empty())
2340       continue;
2341     const FileEntry *FE = FileMgr.getFile(SD.Filename);
2342     if (!FE)
2343       continue;
2344     SourceLocation FileLoc;
2345     auto ItFileID = PreambleSrcLocCache.find(SD.Filename);
2346     if (ItFileID == PreambleSrcLocCache.end()) {
2347       FileID FID = SrcMgr.translateFile(FE);
2348       FileLoc = SrcMgr.getLocForStartOfFile(FID);
2349       PreambleSrcLocCache[SD.Filename] = FileLoc;
2350     } else {
2351       FileLoc = ItFileID->getValue();
2352     }
2353 
2354     if (FileLoc.isInvalid())
2355       continue;
2356     SourceLocation L = FileLoc.getLocWithOffset(SD.LocOffset);
2357     FullSourceLoc Loc(L, SrcMgr);
2358 
2359     SmallVector<CharSourceRange, 4> Ranges;
2360     Ranges.reserve(SD.Ranges.size());
2361     for (const auto &Range : SD.Ranges) {
2362       SourceLocation BL = FileLoc.getLocWithOffset(Range.first);
2363       SourceLocation EL = FileLoc.getLocWithOffset(Range.second);
2364       Ranges.push_back(CharSourceRange::getCharRange(BL, EL));
2365     }
2366 
2367     SmallVector<FixItHint, 2> FixIts;
2368     FixIts.reserve(SD.FixIts.size());
2369     for (const auto &FixIt : SD.FixIts) {
2370       FixIts.push_back(FixItHint());
2371       FixItHint &FH = FixIts.back();
2372       FH.CodeToInsert = FixIt.CodeToInsert;
2373       SourceLocation BL = FileLoc.getLocWithOffset(FixIt.RemoveRange.first);
2374       SourceLocation EL = FileLoc.getLocWithOffset(FixIt.RemoveRange.second);
2375       FH.RemoveRange = CharSourceRange::getCharRange(BL, EL);
2376     }
2377 
2378     Result.push_back(StoredDiagnostic(SD.Level, SD.ID,
2379                                       SD.Message, Loc, Ranges, FixIts));
2380   }
2381   Result.swap(Out);
2382 }
2383 
2384 void ASTUnit::addFileLevelDecl(Decl *D) {
2385   assert(D);
2386 
2387   // We only care about local declarations.
2388   if (D->isFromASTFile())
2389     return;
2390 
2391   SourceManager &SM = *SourceMgr;
2392   SourceLocation Loc = D->getLocation();
2393   if (Loc.isInvalid() || !SM.isLocalSourceLocation(Loc))
2394     return;
2395 
2396   // We only keep track of the file-level declarations of each file.
2397   if (!D->getLexicalDeclContext()->isFileContext())
2398     return;
2399 
2400   SourceLocation FileLoc = SM.getFileLoc(Loc);
2401   assert(SM.isLocalSourceLocation(FileLoc));
2402   FileID FID;
2403   unsigned Offset;
2404   std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);
2405   if (FID.isInvalid())
2406     return;
2407 
2408   LocDeclsTy *&Decls = FileDecls[FID];
2409   if (!Decls)
2410     Decls = new LocDeclsTy();
2411 
2412   std::pair<unsigned, Decl *> LocDecl(Offset, D);
2413 
2414   if (Decls->empty() || Decls->back().first <= Offset) {
2415     Decls->push_back(LocDecl);
2416     return;
2417   }
2418 
2419   LocDeclsTy::iterator I = std::upper_bound(Decls->begin(), Decls->end(),
2420                                             LocDecl, llvm::less_first());
2421 
2422   Decls->insert(I, LocDecl);
2423 }
2424 
2425 void ASTUnit::findFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
2426                                   SmallVectorImpl<Decl *> &Decls) {
2427   if (File.isInvalid())
2428     return;
2429 
2430   if (SourceMgr->isLoadedFileID(File)) {
2431     assert(Ctx->getExternalSource() && "No external source!");
2432     return Ctx->getExternalSource()->FindFileRegionDecls(File, Offset, Length,
2433                                                          Decls);
2434   }
2435 
2436   FileDeclsTy::iterator I = FileDecls.find(File);
2437   if (I == FileDecls.end())
2438     return;
2439 
2440   LocDeclsTy &LocDecls = *I->second;
2441   if (LocDecls.empty())
2442     return;
2443 
2444   LocDeclsTy::iterator BeginIt =
2445       std::lower_bound(LocDecls.begin(), LocDecls.end(),
2446                        std::make_pair(Offset, (Decl *)nullptr),
2447                        llvm::less_first());
2448   if (BeginIt != LocDecls.begin())
2449     --BeginIt;
2450 
2451   // If we are pointing at a top-level decl inside an objc container, we need
2452   // to backtrack until we find it otherwise we will fail to report that the
2453   // region overlaps with an objc container.
2454   while (BeginIt != LocDecls.begin() &&
2455          BeginIt->second->isTopLevelDeclInObjCContainer())
2456     --BeginIt;
2457 
2458   LocDeclsTy::iterator EndIt = std::upper_bound(
2459       LocDecls.begin(), LocDecls.end(),
2460       std::make_pair(Offset + Length, (Decl *)nullptr), llvm::less_first());
2461   if (EndIt != LocDecls.end())
2462     ++EndIt;
2463 
2464   for (LocDeclsTy::iterator DIt = BeginIt; DIt != EndIt; ++DIt)
2465     Decls.push_back(DIt->second);
2466 }
2467 
2468 SourceLocation ASTUnit::getLocation(const FileEntry *File,
2469                                     unsigned Line, unsigned Col) const {
2470   const SourceManager &SM = getSourceManager();
2471   SourceLocation Loc = SM.translateFileLineCol(File, Line, Col);
2472   return SM.getMacroArgExpandedLocation(Loc);
2473 }
2474 
2475 SourceLocation ASTUnit::getLocation(const FileEntry *File,
2476                                     unsigned Offset) const {
2477   const SourceManager &SM = getSourceManager();
2478   SourceLocation FileLoc = SM.translateFileLineCol(File, 1, 1);
2479   return SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Offset));
2480 }
2481 
2482 /// If \arg Loc is a loaded location from the preamble, returns
2483 /// the corresponding local location of the main file, otherwise it returns
2484 /// \arg Loc.
2485 SourceLocation ASTUnit::mapLocationFromPreamble(SourceLocation Loc) const {
2486   FileID PreambleID;
2487   if (SourceMgr)
2488     PreambleID = SourceMgr->getPreambleFileID();
2489 
2490   if (Loc.isInvalid() || !Preamble || PreambleID.isInvalid())
2491     return Loc;
2492 
2493   unsigned Offs;
2494   if (SourceMgr->isInFileID(Loc, PreambleID, &Offs) && Offs < Preamble->getBounds().Size) {
2495     SourceLocation FileLoc
2496         = SourceMgr->getLocForStartOfFile(SourceMgr->getMainFileID());
2497     return FileLoc.getLocWithOffset(Offs);
2498   }
2499 
2500   return Loc;
2501 }
2502 
2503 /// If \arg Loc is a local location of the main file but inside the
2504 /// preamble chunk, returns the corresponding loaded location from the
2505 /// preamble, otherwise it returns \arg Loc.
2506 SourceLocation ASTUnit::mapLocationToPreamble(SourceLocation Loc) const {
2507   FileID PreambleID;
2508   if (SourceMgr)
2509     PreambleID = SourceMgr->getPreambleFileID();
2510 
2511   if (Loc.isInvalid() || !Preamble || PreambleID.isInvalid())
2512     return Loc;
2513 
2514   unsigned Offs;
2515   if (SourceMgr->isInFileID(Loc, SourceMgr->getMainFileID(), &Offs) &&
2516       Offs < Preamble->getBounds().Size) {
2517     SourceLocation FileLoc = SourceMgr->getLocForStartOfFile(PreambleID);
2518     return FileLoc.getLocWithOffset(Offs);
2519   }
2520 
2521   return Loc;
2522 }
2523 
2524 bool ASTUnit::isInPreambleFileID(SourceLocation Loc) const {
2525   FileID FID;
2526   if (SourceMgr)
2527     FID = SourceMgr->getPreambleFileID();
2528 
2529   if (Loc.isInvalid() || FID.isInvalid())
2530     return false;
2531 
2532   return SourceMgr->isInFileID(Loc, FID);
2533 }
2534 
2535 bool ASTUnit::isInMainFileID(SourceLocation Loc) const {
2536   FileID FID;
2537   if (SourceMgr)
2538     FID = SourceMgr->getMainFileID();
2539 
2540   if (Loc.isInvalid() || FID.isInvalid())
2541     return false;
2542 
2543   return SourceMgr->isInFileID(Loc, FID);
2544 }
2545 
2546 SourceLocation ASTUnit::getEndOfPreambleFileID() const {
2547   FileID FID;
2548   if (SourceMgr)
2549     FID = SourceMgr->getPreambleFileID();
2550 
2551   if (FID.isInvalid())
2552     return {};
2553 
2554   return SourceMgr->getLocForEndOfFile(FID);
2555 }
2556 
2557 SourceLocation ASTUnit::getStartOfMainFileID() const {
2558   FileID FID;
2559   if (SourceMgr)
2560     FID = SourceMgr->getMainFileID();
2561 
2562   if (FID.isInvalid())
2563     return {};
2564 
2565   return SourceMgr->getLocForStartOfFile(FID);
2566 }
2567 
2568 llvm::iterator_range<PreprocessingRecord::iterator>
2569 ASTUnit::getLocalPreprocessingEntities() const {
2570   if (isMainFileAST()) {
2571     serialization::ModuleFile &
2572       Mod = Reader->getModuleManager().getPrimaryModule();
2573     return Reader->getModulePreprocessedEntities(Mod);
2574   }
2575 
2576   if (PreprocessingRecord *PPRec = PP->getPreprocessingRecord())
2577     return llvm::make_range(PPRec->local_begin(), PPRec->local_end());
2578 
2579   return llvm::make_range(PreprocessingRecord::iterator(),
2580                           PreprocessingRecord::iterator());
2581 }
2582 
2583 bool ASTUnit::visitLocalTopLevelDecls(void *context, DeclVisitorFn Fn) {
2584   if (isMainFileAST()) {
2585     serialization::ModuleFile &
2586       Mod = Reader->getModuleManager().getPrimaryModule();
2587     for (const auto *D : Reader->getModuleFileLevelDecls(Mod)) {
2588       if (!Fn(context, D))
2589         return false;
2590     }
2591 
2592     return true;
2593   }
2594 
2595   for (ASTUnit::top_level_iterator TL = top_level_begin(),
2596                                 TLEnd = top_level_end();
2597          TL != TLEnd; ++TL) {
2598     if (!Fn(context, *TL))
2599       return false;
2600   }
2601 
2602   return true;
2603 }
2604 
2605 const FileEntry *ASTUnit::getPCHFile() {
2606   if (!Reader)
2607     return nullptr;
2608 
2609   serialization::ModuleFile *Mod = nullptr;
2610   Reader->getModuleManager().visit([&Mod](serialization::ModuleFile &M) {
2611     switch (M.Kind) {
2612     case serialization::MK_ImplicitModule:
2613     case serialization::MK_ExplicitModule:
2614     case serialization::MK_PrebuiltModule:
2615       return true; // skip dependencies.
2616     case serialization::MK_PCH:
2617       Mod = &M;
2618       return true; // found it.
2619     case serialization::MK_Preamble:
2620       return false; // look in dependencies.
2621     case serialization::MK_MainFile:
2622       return false; // look in dependencies.
2623     }
2624 
2625     return true;
2626   });
2627   if (Mod)
2628     return Mod->File;
2629 
2630   return nullptr;
2631 }
2632 
2633 bool ASTUnit::isModuleFile() const {
2634   return isMainFileAST() && getLangOpts().isCompilingModule();
2635 }
2636 
2637 InputKind ASTUnit::getInputKind() const {
2638   auto &LangOpts = getLangOpts();
2639 
2640   InputKind::Language Lang;
2641   if (LangOpts.OpenCL)
2642     Lang = InputKind::OpenCL;
2643   else if (LangOpts.CUDA)
2644     Lang = InputKind::CUDA;
2645   else if (LangOpts.RenderScript)
2646     Lang = InputKind::RenderScript;
2647   else if (LangOpts.CPlusPlus)
2648     Lang = LangOpts.ObjC1 ? InputKind::ObjCXX : InputKind::CXX;
2649   else
2650     Lang = LangOpts.ObjC1 ? InputKind::ObjC : InputKind::C;
2651 
2652   InputKind::Format Fmt = InputKind::Source;
2653   if (LangOpts.getCompilingModule() == LangOptions::CMK_ModuleMap)
2654     Fmt = InputKind::ModuleMap;
2655 
2656   // We don't know if input was preprocessed. Assume not.
2657   bool PP = false;
2658 
2659   return InputKind(Lang, Fmt, PP);
2660 }
2661 
2662 #ifndef NDEBUG
2663 ASTUnit::ConcurrencyState::ConcurrencyState() {
2664   Mutex = new llvm::sys::MutexImpl(/*recursive=*/true);
2665 }
2666 
2667 ASTUnit::ConcurrencyState::~ConcurrencyState() {
2668   delete static_cast<llvm::sys::MutexImpl *>(Mutex);
2669 }
2670 
2671 void ASTUnit::ConcurrencyState::start() {
2672   bool acquired = static_cast<llvm::sys::MutexImpl *>(Mutex)->tryacquire();
2673   assert(acquired && "Concurrent access to ASTUnit!");
2674 }
2675 
2676 void ASTUnit::ConcurrencyState::finish() {
2677   static_cast<llvm::sys::MutexImpl *>(Mutex)->release();
2678 }
2679 
2680 #else // NDEBUG
2681 
2682 ASTUnit::ConcurrencyState::ConcurrencyState() { Mutex = nullptr; }
2683 ASTUnit::ConcurrencyState::~ConcurrencyState() {}
2684 void ASTUnit::ConcurrencyState::start() {}
2685 void ASTUnit::ConcurrencyState::finish() {}
2686 
2687 #endif // NDEBUG
2688