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