clang 23.0.0git
ASTReader.h
Go to the documentation of this file.
1//===- ASTReader.h - AST File Reader ----------------------------*- C++ -*-===//
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// This file defines the ASTReader class, which reads AST files.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_SERIALIZATION_ASTREADER_H
14#define LLVM_CLANG_SERIALIZATION_ASTREADER_H
15
16#include "clang/AST/Type.h"
23#include "clang/Basic/Version.h"
30#include "clang/Sema/Sema.h"
37#include "llvm/ADT/ArrayRef.h"
38#include "llvm/ADT/DenseMap.h"
39#include "llvm/ADT/DenseSet.h"
40#include "llvm/ADT/IntrusiveRefCntPtr.h"
41#include "llvm/ADT/MapVector.h"
42#include "llvm/ADT/PagedVector.h"
43#include "llvm/ADT/STLExtras.h"
44#include "llvm/ADT/SetVector.h"
45#include "llvm/ADT/SmallPtrSet.h"
46#include "llvm/ADT/SmallVector.h"
47#include "llvm/ADT/StringMap.h"
48#include "llvm/ADT/StringRef.h"
49#include "llvm/ADT/iterator.h"
50#include "llvm/ADT/iterator_range.h"
51#include "llvm/Bitstream/BitstreamReader.h"
52#include "llvm/Support/MemoryBuffer.h"
53#include "llvm/Support/SaveAndRestore.h"
54#include "llvm/Support/Timer.h"
55#include "llvm/Support/VersionTuple.h"
56#include <cassert>
57#include <cstddef>
58#include <cstdint>
59#include <ctime>
60#include <deque>
61#include <memory>
62#include <optional>
63#include <set>
64#include <string>
65#include <utility>
66#include <vector>
67
68namespace clang {
69
70class ASTConsumer;
71class ASTContext;
73class ASTReader;
74class ASTRecordReader;
75class CodeGenOptions;
76class CXXTemporary;
77class Decl;
78class DeclarationName;
79class DeclaratorDecl;
80class DeclContext;
81class EnumDecl;
82class Expr;
83class FieldDecl;
84class FileEntry;
85class FileManager;
87class FunctionDecl;
89struct HeaderFileInfo;
91class LangOptions;
92class MacroInfo;
93class ModuleCache;
94class NamedDecl;
95class NamespaceDecl;
99class Preprocessor;
101class Sema;
102class SourceManager;
103class Stmt;
104class SwitchCase;
105class TargetOptions;
106class Token;
107class TypedefNameDecl;
108class ValueDecl;
109class VarDecl;
110
111/// Abstract interface for callback invocations by the ASTReader.
112///
113/// While reading an AST file, the ASTReader will call the methods of the
114/// listener to pass on specific information. Some of the listener methods can
115/// return true to indicate to the ASTReader that the information (and
116/// consequently the AST file) is invalid.
118public:
120
121 /// Receives the full Clang version information.
122 ///
123 /// \returns true to indicate that the version is invalid. Subclasses should
124 /// generally defer to this implementation.
125 virtual bool ReadFullVersionInformation(StringRef FullVersion) {
126 return FullVersion != getClangFullRepositoryVersion();
127 }
128
129 virtual void ReadModuleName(StringRef ModuleName) {}
130 virtual void ReadModuleMapFile(StringRef ModuleMapPath) {}
131
132 /// Receives the language options.
133 ///
134 /// \returns true to indicate the options are invalid or false otherwise.
135 virtual bool ReadLanguageOptions(const LangOptions &LangOpts,
136 StringRef ModuleFilename, bool Complain,
137 bool AllowCompatibleDifferences) {
138 return false;
139 }
140
141 /// Receives the codegen options.
142 ///
143 /// \returns true to indicate the options are invalid or false otherwise.
144 virtual bool ReadCodeGenOptions(const CodeGenOptions &CGOpts,
145 StringRef ModuleFilename, bool Complain,
146 bool AllowCompatibleDifferences) {
147 return false;
148 }
149
150 /// Receives the target options.
151 ///
152 /// \returns true to indicate the target options are invalid, or false
153 /// otherwise.
154 virtual bool ReadTargetOptions(const TargetOptions &TargetOpts,
155 StringRef ModuleFilename, bool Complain,
156 bool AllowCompatibleDifferences) {
157 return false;
158 }
159
160 /// Receives the diagnostic options.
161 ///
162 /// \returns true to indicate the diagnostic options are invalid, or false
163 /// otherwise.
165 StringRef ModuleFilename, bool Complain) {
166 return false;
167 }
168
169 /// Receives the file system options.
170 ///
171 /// \returns true to indicate the file system options are invalid, or false
172 /// otherwise.
173 virtual bool ReadFileSystemOptions(const FileSystemOptions &FSOpts,
174 bool Complain) {
175 return false;
176 }
177
178 /// Receives the header search options.
179 ///
180 /// \param HSOpts The read header search options. The following fields are
181 /// missing and are reported in ReadHeaderSearchPaths():
182 /// UserEntries, SystemHeaderPrefixes, VFSOverlayFiles.
183 ///
184 /// \returns true to indicate the header search options are invalid, or false
185 /// otherwise.
187 StringRef ModuleFilename,
188 StringRef ContextHash, bool Complain) {
189 return false;
190 }
191
192 /// Receives the header search paths.
193 ///
194 /// \param HSOpts The read header search paths. Only the following fields are
195 /// initialized: UserEntries, SystemHeaderPrefixes,
196 /// VFSOverlayFiles. The rest is reported in
197 /// ReadHeaderSearchOptions().
198 ///
199 /// \returns true to indicate the header search paths are invalid, or false
200 /// otherwise.
201 virtual bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts,
202 bool Complain) {
203 return false;
204 }
205
206 /// Receives the preprocessor options.
207 ///
208 /// \param SuggestedPredefines Can be filled in with the set of predefines
209 /// that are suggested by the preprocessor options. Typically only used when
210 /// loading a precompiled header.
211 ///
212 /// \returns true to indicate the preprocessor options are invalid, or false
213 /// otherwise.
215 StringRef ModuleFilename,
216 bool ReadMacros, bool Complain,
217 std::string &SuggestedPredefines) {
218 return false;
219 }
220
221 /// Receives __COUNTER__ value.
222 virtual void ReadCounter(const serialization::ModuleFile &M, uint32_t Value) {
223 }
224
225 /// This is called for each AST file loaded.
226 virtual void visitModuleFile(ModuleFileName Filename,
228 bool DirectlyImported) {}
229
230 /// Returns true if this \c ASTReaderListener wants to receive the
231 /// input files of the AST file via \c visitInputFile, false otherwise.
232 virtual bool needsInputFileVisitation() { return false; }
233
234 /// Returns true if this \c ASTReaderListener wants to receive the
235 /// system input files of the AST file via \c visitInputFile, false otherwise.
236 virtual bool needsSystemInputFileVisitation() { return false; }
237
238 /// if \c needsInputFileVisitation returns true, this is called for
239 /// each non-system input file of the AST File. If
240 /// \c needsSystemInputFileVisitation is true, then it is called for all
241 /// system input files as well.
242 ///
243 /// \returns true to continue receiving the next input file, false to stop.
244 virtual bool visitInputFile(StringRef Filename, bool isSystem,
245 bool isOverridden, bool isExplicitModule) {
246 return true;
247 }
248
249 /// Similiar to member function of \c visitInputFile but should
250 /// be defined when there is a distinction between the file name
251 /// and the name-as-requested. For example, when deserializing input
252 /// files from precompiled AST files.
253 ///
254 /// \returns true to continue receiving the next input file, false to stop.
255 virtual bool visitInputFileAsRequested(StringRef FilenameAsRequested,
256 StringRef Filename, bool isSystem,
257 bool isOverridden, time_t StoredTime,
258 bool isExplicitModule) {
259 return true;
260 }
261
262 /// Returns true if this \c ASTReaderListener wants to receive the
263 /// imports of the AST file via \c visitImport, false otherwise.
264 virtual bool needsImportVisitation() const { return false; }
265
266 /// If needsImportVisitation returns \c true, this is called for each
267 /// AST file imported by this AST file.
268 virtual void visitImport(StringRef ModuleName, StringRef Filename) {}
269
270 /// Indicates that a particular module file extension has been read.
272 const ModuleFileExtensionMetadata &Metadata) {}
273};
274
275/// Simple wrapper class for chaining listeners.
277 std::unique_ptr<ASTReaderListener> First;
278 std::unique_ptr<ASTReaderListener> Second;
279
280public:
281 /// Takes ownership of \p First and \p Second.
282 ChainedASTReaderListener(std::unique_ptr<ASTReaderListener> First,
283 std::unique_ptr<ASTReaderListener> Second)
284 : First(std::move(First)), Second(std::move(Second)) {}
285
286 std::unique_ptr<ASTReaderListener> takeFirst() { return std::move(First); }
287 std::unique_ptr<ASTReaderListener> takeSecond() { return std::move(Second); }
288
289 bool ReadFullVersionInformation(StringRef FullVersion) override;
290 void ReadModuleName(StringRef ModuleName) override;
291 void ReadModuleMapFile(StringRef ModuleMapPath) override;
292 bool ReadLanguageOptions(const LangOptions &LangOpts,
293 StringRef ModuleFilename, bool Complain,
294 bool AllowCompatibleDifferences) override;
295 bool ReadCodeGenOptions(const CodeGenOptions &CGOpts,
296 StringRef ModuleFilename, bool Complain,
297 bool AllowCompatibleDifferences) override;
298 bool ReadTargetOptions(const TargetOptions &TargetOpts,
299 StringRef ModuleFilename, bool Complain,
300 bool AllowCompatibleDifferences) override;
302 StringRef ModuleFilename, bool Complain) override;
303 bool ReadFileSystemOptions(const FileSystemOptions &FSOpts,
304 bool Complain) override;
305
307 StringRef ModuleFilename, StringRef ContextHash,
308 bool Complain) override;
310 StringRef ModuleFilename, bool ReadMacros,
311 bool Complain,
312 std::string &SuggestedPredefines) override;
313
314 void ReadCounter(const serialization::ModuleFile &M, uint32_t Value) override;
315 bool needsInputFileVisitation() override;
316 bool needsSystemInputFileVisitation() override;
318 bool DirectlyImported) override;
319 bool visitInputFile(StringRef Filename, bool isSystem,
320 bool isOverridden, bool isExplicitModule) override;
322 const ModuleFileExtensionMetadata &Metadata) override;
323};
324
325/// ASTReaderListener implementation to validate the information of
326/// the PCH file against an initialized Preprocessor.
328 Preprocessor &PP;
329 ASTReader &Reader;
330
331public:
333 : PP(PP), Reader(Reader) {}
334
335 bool ReadLanguageOptions(const LangOptions &LangOpts,
336 StringRef ModuleFilename, bool Complain,
337 bool AllowCompatibleDifferences) override;
338 bool ReadCodeGenOptions(const CodeGenOptions &CGOpts,
339 StringRef ModuleFilename, bool Complain,
340 bool AllowCompatibleDifferences) override;
341 bool ReadTargetOptions(const TargetOptions &TargetOpts,
342 StringRef ModuleFilename, bool Complain,
343 bool AllowCompatibleDifferences) override;
345 StringRef ModuleFilename, bool Complain) override;
347 StringRef ModuleFilename, bool ReadMacros,
348 bool Complain,
349 std::string &SuggestedPredefines) override;
351 StringRef ModuleFilename, StringRef ContextHash,
352 bool Complain) override;
353 void ReadCounter(const serialization::ModuleFile &M, uint32_t Value) override;
354};
355
356/// ASTReaderListenter implementation to set SuggestedPredefines of
357/// ASTReader which is required to use a pch file. This is the replacement
358/// of PCHValidator or SimplePCHValidator when using a pch file without
359/// validating it.
361 Preprocessor &PP;
362
363public:
365
367 StringRef ModuleFilename, bool ReadMacros,
368 bool Complain,
369 std::string &SuggestedPredefines) override;
370};
371
372namespace serialization {
373
374class ReadMethodPoolVisitor;
375
376namespace reader {
377
379
380/// The on-disk hash table(s) used for DeclContext name lookup.
383
384/// The on-disk hash table(s) used for specialization decls.
386
387} // namespace reader
388
389} // namespace serialization
390
392 uint64_t VisibleOffset = 0;
393 uint64_t ModuleLocalOffset = 0;
394 uint64_t TULocalOffset = 0;
395
396 operator bool() const {
398 }
399};
400
402 uint64_t LexicalOffset = 0;
403
404 operator bool() const {
405 return VisibleLookupBlockOffsets::operator bool() || LexicalOffset;
406 }
407};
408
409/// Reads an AST files chain containing the contents of a translation
410/// unit.
411///
412/// The ASTReader class reads bitstreams (produced by the ASTWriter
413/// class) containing the serialized representation of a given
414/// abstract syntax tree and its supporting data structures. An
415/// instance of the ASTReader can be attached to an ASTContext object,
416/// which will provide access to the contents of the AST files.
417///
418/// The AST reader provides lazy de-serialization of declarations, as
419/// required when traversing the AST. Only those AST nodes that are
420/// actually required will be de-serialized.
424 public ExternalSemaSource,
428public:
429 /// Types of AST files.
430 friend class ASTDeclMerger;
431 friend class ASTDeclReader;
433 friend class ASTRecordReader;
434 friend class ASTUnit; // ASTUnit needs to remap source locations.
435 friend class ASTWriter;
436 friend class PCHValidator;
439 friend class TypeLocReader;
440 friend class LocalDeclID;
441
444
445 /// The result of reading the control block of an AST file, which
446 /// can fail for various reasons.
448 /// The control block was read successfully. Aside from failures,
449 /// the AST file is safe to read into the current context.
451
452 /// The AST file itself appears corrupted.
454
455 /// The AST file was missing.
457
458 /// The AST file is out-of-date relative to its input files,
459 /// and needs to be regenerated.
461
462 /// The AST file was written by a different version of Clang.
464
465 /// The AST file was written with a different language/target
466 /// configuration.
468
469 /// The AST file has errors.
471 };
472
479
480private:
481 /// The receiver of some callbacks invoked by ASTReader.
482 std::unique_ptr<ASTReaderListener> Listener;
483
484 /// The receiver of deserialization events.
485 ASTDeserializationListener *DeserializationListener = nullptr;
486
487 bool OwnsDeserializationListener = false;
488
489 SourceManager &SourceMgr;
490 FileManager &FileMgr;
491 const PCHContainerReader &PCHContainerRdr;
492 DiagnosticsEngine &Diags;
493 // Sema has duplicate logic, but SemaObj can sometimes be null so ASTReader
494 // has its own version.
495 StackExhaustionHandler StackHandler;
496
497 /// The semantic analysis object that will be processing the
498 /// AST files and the translation unit that uses it.
499 Sema *SemaObj = nullptr;
500
501 /// The preprocessor that will be loading the source file.
502 Preprocessor &PP;
503
504 /// The AST context into which we'll read the AST files.
505 ASTContext *ContextObj = nullptr;
506
507 /// The AST consumer.
508 ASTConsumer *Consumer = nullptr;
509
510 /// The codegen options.
511 const CodeGenOptions &CodeGenOpts;
512
513 /// The module manager which manages modules and their dependencies
514 ModuleManager ModuleMgr;
515
516 /// A dummy identifier resolver used to merge TU-scope declarations in
517 /// C, for the cases where we don't have a Sema object to provide a real
518 /// identifier resolver.
519 IdentifierResolver DummyIdResolver;
520
521 /// A mapping from extension block names to module file extensions.
522 llvm::StringMap<std::shared_ptr<ModuleFileExtension>> ModuleFileExtensions;
523
524 /// A timer used to track the time spent deserializing.
525 std::unique_ptr<llvm::Timer> ReadTimer;
526
527 // A TimeRegion used to start and stop ReadTimer via RAII.
528 std::optional<llvm::TimeRegion> ReadTimeRegion;
529
530 /// The location where the module file will be considered as
531 /// imported from. For non-module AST types it should be invalid.
532 SourceLocation CurrentImportLoc;
533
534 /// The module kind that is currently deserializing.
535 std::optional<ModuleKind> CurrentDeserializingModuleKind;
536
537 /// The global module index, if loaded.
538 std::unique_ptr<GlobalModuleIndex> GlobalIndex;
539
540 /// A map of global bit offsets to the module that stores entities
541 /// at those bit offsets.
543
544 /// A map of negated SLocEntryIDs to the modules containing them.
546
547 using GlobalSLocOffsetMapType =
549
550 /// A map of reversed (SourceManager::MaxLoadedOffset - SLocOffset)
551 /// SourceLocation offsets to the modules containing them.
552 GlobalSLocOffsetMapType GlobalSLocOffsetMap;
553
554 /// Types that have already been loaded from the chain.
555 ///
556 /// When the pointer at index I is non-NULL, the type with
557 /// ID = (I + 1) << FastQual::Width has already been loaded
558 llvm::PagedVector<QualType> TypesLoaded;
559
560 /// Declarations that have already been loaded from the chain.
561 ///
562 /// When the pointer at index I is non-NULL, the declaration with ID
563 /// = I + 1 has already been loaded.
564 llvm::PagedVector<Decl *> DeclsLoaded;
565
566 using FileOffset = std::pair<ModuleFile *, uint64_t>;
567 using FileOffsetsTy = SmallVector<FileOffset, 2>;
568 using DeclUpdateOffsetsMap = llvm::DenseMap<GlobalDeclID, FileOffsetsTy>;
569
570 /// Declarations that have modifications residing in a later file
571 /// in the chain.
572 DeclUpdateOffsetsMap DeclUpdateOffsets;
573
574 using DelayedNamespaceOffsetMapTy =
575 llvm::DenseMap<GlobalDeclID, LookupBlockOffsets>;
576
577 /// Mapping from global declaration IDs to the lexical and visible block
578 /// offset for delayed namespace in reduced BMI.
579 ///
580 /// We can't use the existing DeclUpdate mechanism since the DeclUpdate
581 /// may only be applied in an outer most read. However, we need to know
582 /// whether or not a DeclContext has external storage during the recursive
583 /// reading. So we need to apply the offset immediately after we read the
584 /// namespace as if it is not delayed.
585 DelayedNamespaceOffsetMapTy DelayedNamespaceOffsetMap;
586
587 /// Mapping from main decl ID to the related decls IDs.
588 ///
589 /// The key is the main decl ID, and the value is a vector of related decls
590 /// that must be loaded immediately after the main decl. This is necessary
591 /// to ensure that the definition for related decls comes from the same module
592 /// as the enclosing main decl. Without this, due to lazy deserialization,
593 /// the definition for the main decl and related decls may come from different
594 /// modules. It is used for the following cases:
595 /// - Lambda inside a template function definition: The main declaration is
596 /// the enclosing function, and the related declarations are the lambda
597 /// call operators.
598 /// - Friend function defined inside a template CXXRecord declaration: The
599 /// main declaration is the enclosing record, and the related declarations
600 /// are the friend functions.
601 llvm::DenseMap<GlobalDeclID, SmallVector<GlobalDeclID, 4>> RelatedDeclsMap;
602
603 struct PendingUpdateRecord {
604 Decl *D;
605 GlobalDeclID ID;
606
607 // Whether the declaration was just deserialized.
608 bool JustLoaded;
609
610 PendingUpdateRecord(GlobalDeclID ID, Decl *D, bool JustLoaded)
611 : D(D), ID(ID), JustLoaded(JustLoaded) {}
612 };
613
614 /// Declaration updates for already-loaded declarations that we need
615 /// to apply once we finish processing an import.
617
618 enum class PendingFakeDefinitionKind { NotFake, Fake, FakeLoaded };
619
620 /// The DefinitionData pointers that we faked up for class definitions
621 /// that we needed but hadn't loaded yet.
622 llvm::DenseMap<void *, PendingFakeDefinitionKind> PendingFakeDefinitionData;
623
624 /// Exception specification updates that have been loaded but not yet
625 /// propagated across the relevant redeclaration chain. The map key is the
626 /// canonical declaration (used only for deduplication) and the value is a
627 /// declaration that has an exception specification.
628 llvm::SmallMapVector<Decl *, FunctionDecl *, 4> PendingExceptionSpecUpdates;
629
630 /// Deduced return type updates that have been loaded but not yet propagated
631 /// across the relevant redeclaration chain. The map key is the canonical
632 /// declaration and the value is the deduced return type.
633 llvm::SmallMapVector<FunctionDecl *, QualType, 4> PendingDeducedTypeUpdates;
634
635 /// Functions has undededuced return type and we wish we can find the deduced
636 /// return type by iterating the redecls in other modules.
637 llvm::SmallVector<FunctionDecl *, 4> PendingUndeducedFunctionDecls;
638
639 /// Declarations that have been imported and have typedef names for
640 /// linkage purposes.
641 llvm::DenseMap<std::pair<DeclContext *, IdentifierInfo *>, NamedDecl *>
642 ImportedTypedefNamesForLinkage;
643
644 /// Mergeable declaration contexts that have anonymous declarations
645 /// within them, and those anonymous declarations.
646 llvm::DenseMap<Decl*, llvm::SmallVector<NamedDecl*, 2>>
647 AnonymousDeclarationsForMerging;
648
649 /// Map from numbering information for lambdas to the corresponding lambdas.
650 llvm::DenseMap<std::pair<const Decl *, unsigned>, NamedDecl *>
651 LambdaDeclarationsForMerging;
652
653 /// Key used to identify LifetimeExtendedTemporaryDecl for merging,
654 /// containing the lifetime-extending declaration and the mangling number.
655 using LETemporaryKey = std::pair<Decl *, unsigned>;
656
657 /// Map of already deserialiazed temporaries.
658 llvm::DenseMap<LETemporaryKey, LifetimeExtendedTemporaryDecl *>
659 LETemporaryForMerging;
660
661 struct FileDeclsInfo {
662 ModuleFile *Mod = nullptr;
664
665 FileDeclsInfo() = default;
666 FileDeclsInfo(ModuleFile *Mod,
668 : Mod(Mod), Decls(Decls) {}
669 };
670
671 /// Map from a FileID to the file-level declarations that it contains.
672 llvm::DenseMap<FileID, FileDeclsInfo> FileDeclIDs;
673
674 /// An array of lexical contents of a declaration context, as a sequence of
675 /// Decl::Kind, DeclID pairs.
676 using LexicalContents = ArrayRef<serialization::unaligned_decl_id_t>;
677
678 /// Map from a DeclContext to its lexical contents.
679 llvm::DenseMap<const DeclContext*, std::pair<ModuleFile*, LexicalContents>>
680 LexicalDecls;
681
682 /// Map from the TU to its lexical contents from each module file.
683 std::vector<std::pair<ModuleFile*, LexicalContents>> TULexicalDecls;
684
685 /// Map from a DeclContext to its lookup tables.
686 llvm::DenseMap<const DeclContext *,
687 serialization::reader::DeclContextLookupTable> Lookups;
688 llvm::DenseMap<const DeclContext *,
689 serialization::reader::ModuleLocalLookupTable>
690 ModuleLocalLookups;
691 llvm::DenseMap<const DeclContext *,
692 serialization::reader::DeclContextLookupTable>
693 TULocalLookups;
694
695 using SpecLookupTableTy =
696 llvm::DenseMap<const Decl *,
697 serialization::reader::LazySpecializationInfoLookupTable>;
698 /// Map from decls to specialized decls.
699 SpecLookupTableTy SpecializationsLookups;
700 /// Split partial specialization from specialization to speed up lookups.
701 SpecLookupTableTy PartialSpecializationsLookups;
702
703 bool LoadExternalSpecializationsImpl(SpecLookupTableTy &SpecLookups,
704 const Decl *D);
705 bool LoadExternalSpecializationsImpl(SpecLookupTableTy &SpecLookups,
706 const Decl *D,
707 ArrayRef<TemplateArgument> TemplateArgs);
708
709 // Updates for visible decls can occur for other contexts than just the
710 // TU, and when we read those update records, the actual context may not
711 // be available yet, so have this pending map using the ID as a key. It
712 // will be realized when the data is actually loaded.
713 struct UpdateData {
714 ModuleFile *Mod;
715 const unsigned char *Data;
716 };
717 using DeclContextVisibleUpdates = SmallVector<UpdateData, 1>;
718
719 /// Updates to the visible declarations of declaration contexts that
720 /// haven't been loaded yet.
721 llvm::DenseMap<GlobalDeclID, DeclContextVisibleUpdates> PendingVisibleUpdates;
722 llvm::DenseMap<GlobalDeclID, DeclContextVisibleUpdates>
723 PendingModuleLocalVisibleUpdates;
724 llvm::DenseMap<GlobalDeclID, DeclContextVisibleUpdates> TULocalUpdates;
725
726 using SpecializationsUpdate = SmallVector<UpdateData, 1>;
727 using SpecializationsUpdateMap =
728 llvm::DenseMap<GlobalDeclID, SpecializationsUpdate>;
729 SpecializationsUpdateMap PendingSpecializationsUpdates;
730 SpecializationsUpdateMap PendingPartialSpecializationsUpdates;
731
732 /// The set of C++ or Objective-C classes that have forward
733 /// declarations that have not yet been linked to their definitions.
734 llvm::SmallPtrSet<Decl *, 4> PendingDefinitions;
735
736 using PendingBodiesMap =
737 llvm::MapVector<Decl *, uint64_t,
738 llvm::SmallDenseMap<Decl *, unsigned, 4>,
739 SmallVector<std::pair<Decl *, uint64_t>, 4>>;
740
741 /// Functions or methods that have bodies that will be attached.
742 PendingBodiesMap PendingBodies;
743
744 /// Definitions for which we have added merged definitions but not yet
745 /// performed deduplication.
746 llvm::SetVector<NamedDecl *> PendingMergedDefinitionsToDeduplicate;
747
748 /// The duplicated definitions in module units which are pending to be warned.
749 /// We need to delay it to wait for the loading of definitions since we don't
750 /// want to warn for forward declarations.
751 llvm::SmallVector<std::pair<Decl *, Decl *>>
752 PendingWarningForDuplicatedDefsInModuleUnits;
753
754 /// Read the record that describes the lexical contents of a DC.
755 bool ReadLexicalDeclContextStorage(ModuleFile &M,
756 llvm::BitstreamCursor &Cursor,
757 uint64_t Offset, DeclContext *DC);
758
759 enum class VisibleDeclContextStorageKind {
760 GenerallyVisible,
761 ModuleLocalVisible,
762 TULocalVisible,
763 };
764
765 /// Read the record that describes the visible contents of a DC.
766 bool ReadVisibleDeclContextStorage(ModuleFile &M,
767 llvm::BitstreamCursor &Cursor,
768 uint64_t Offset, GlobalDeclID ID,
769 VisibleDeclContextStorageKind VisibleKind);
770
771 bool ReadSpecializations(ModuleFile &M, llvm::BitstreamCursor &Cursor,
772 uint64_t Offset, Decl *D, bool IsPartial);
773 void AddSpecializations(const Decl *D, const unsigned char *Data,
774 ModuleFile &M, bool IsPartial);
775
776 /// A vector containing identifiers that have already been
777 /// loaded.
778 ///
779 /// If the pointer at index I is non-NULL, then it refers to the
780 /// IdentifierInfo for the identifier with ID=I+1 that has already
781 /// been loaded.
782 std::vector<IdentifierInfo *> IdentifiersLoaded;
783
784 /// A vector containing macros that have already been
785 /// loaded.
786 ///
787 /// If the pointer at index I is non-NULL, then it refers to the
788 /// MacroInfo for the identifier with ID=I+1 that has already
789 /// been loaded.
790 std::vector<MacroInfo *> MacrosLoaded;
791
792 using LoadedMacroInfo =
793 std::pair<IdentifierInfo *, serialization::SubmoduleID>;
794
795 /// A set of #undef directives that we have loaded; used to
796 /// deduplicate the same #undef information coming from multiple module
797 /// files.
798 llvm::DenseSet<LoadedMacroInfo> LoadedUndefs;
799
800 /// A vector containing submodules that have already been loaded.
801 ///
802 /// This vector is indexed by the Submodule ID (-1). NULL submodule entries
803 /// indicate that the particular submodule ID has not yet been loaded.
804 SmallVector<Module *, 2> SubmodulesLoaded;
805
806 using GlobalSubmoduleMapType =
807 ContinuousRangeMap<serialization::SubmoduleID, ModuleFile *, 4>;
808
809 /// Mapping from global submodule IDs to the module file in which the
810 /// submodule resides along with the offset that should be added to the
811 /// global submodule ID to produce a local ID.
812 GlobalSubmoduleMapType GlobalSubmoduleMap;
813
814 /// A set of hidden declarations.
815 using HiddenNames = SmallVector<Decl *, 2>;
816 using HiddenNamesMapType = llvm::DenseMap<Module *, HiddenNames>;
817
818 /// A mapping from each of the hidden submodules to the deserialized
819 /// declarations in that submodule that could be made visible.
820 HiddenNamesMapType HiddenNamesMap;
821
822 /// A vector containing selectors that have already been loaded.
823 ///
824 /// This vector is indexed by the Selector ID (-1). NULL selector
825 /// entries indicate that the particular selector ID has not yet
826 /// been loaded.
827 SmallVector<Selector, 16> SelectorsLoaded;
828
829 using GlobalSelectorMapType =
830 ContinuousRangeMap<serialization::SelectorID, ModuleFile *, 4>;
831
832 /// Mapping from global selector IDs to the module in which the
833 /// global selector ID to produce a local ID.
834 GlobalSelectorMapType GlobalSelectorMap;
835
836 /// The generation number of the last time we loaded data from the
837 /// global method pool for this selector.
838 llvm::DenseMap<Selector, unsigned> SelectorGeneration;
839
840 /// Whether a selector is out of date. We mark a selector as out of date
841 /// if we load another module after the method pool entry was pulled in.
842 llvm::DenseMap<Selector, bool> SelectorOutOfDate;
843
844 struct PendingMacroInfo {
845 ModuleFile *M;
846 /// Offset relative to ModuleFile::MacroOffsetsBase.
847 uint32_t MacroDirectivesOffset;
848
849 PendingMacroInfo(ModuleFile *M, uint32_t MacroDirectivesOffset)
850 : M(M), MacroDirectivesOffset(MacroDirectivesOffset) {}
851 };
852
853 using PendingMacroIDsMap =
854 llvm::MapVector<IdentifierInfo *, SmallVector<PendingMacroInfo, 2>>;
855
856 /// Mapping from identifiers that have a macro history to the global
857 /// IDs have not yet been deserialized to the global IDs of those macros.
858 PendingMacroIDsMap PendingMacroIDs;
859
860 using GlobalPreprocessedEntityMapType =
861 ContinuousRangeMap<unsigned, ModuleFile *, 4>;
862
863 /// Mapping from global preprocessing entity IDs to the module in
864 /// which the preprocessed entity resides along with the offset that should be
865 /// added to the global preprocessing entity ID to produce a local ID.
866 GlobalPreprocessedEntityMapType GlobalPreprocessedEntityMap;
867
868 using GlobalSkippedRangeMapType =
869 ContinuousRangeMap<unsigned, ModuleFile *, 4>;
870
871 /// Mapping from global skipped range base IDs to the module in which
872 /// the skipped ranges reside.
873 GlobalSkippedRangeMapType GlobalSkippedRangeMap;
874
875 /// \name CodeGen-relevant special data
876 /// Fields containing data that is relevant to CodeGen.
877 //@{
878
879 /// The IDs of all declarations that fulfill the criteria of
880 /// "interesting" decls.
881 ///
882 /// This contains the data loaded from all EAGERLY_DESERIALIZED_DECLS blocks
883 /// in the chain. The referenced declarations are deserialized and passed to
884 /// the consumer eagerly.
885 SmallVector<GlobalDeclID, 16> EagerlyDeserializedDecls;
886
887 /// The IDs of all vtables to emit. The referenced declarations are passed
888 /// to the consumers' HandleVTable eagerly after passing
889 /// EagerlyDeserializedDecls.
890 SmallVector<GlobalDeclID, 16> VTablesToEmit;
891
892 /// The IDs of all tentative definitions stored in the chain.
893 ///
894 /// Sema keeps track of all tentative definitions in a TU because it has to
895 /// complete them and pass them on to CodeGen. Thus, tentative definitions in
896 /// the PCH chain must be eagerly deserialized.
897 SmallVector<GlobalDeclID, 16> TentativeDefinitions;
898
899 /// The IDs of all CXXRecordDecls stored in the chain whose VTables are
900 /// used.
901 ///
902 /// CodeGen has to emit VTables for these records, so they have to be eagerly
903 /// deserialized.
904 struct VTableUse {
905 GlobalDeclID ID;
907 bool Used;
908 };
909 SmallVector<VTableUse> VTableUses;
910
911 /// A snapshot of the pending instantiations in the chain.
912 ///
913 /// This record tracks the instantiations that Sema has to perform at the
914 /// end of the TU. It consists of a pair of values for every pending
915 /// instantiation where the first value is the ID of the decl and the second
916 /// is the instantiation location.
917 struct PendingInstantiation {
918 GlobalDeclID ID;
920 };
921 SmallVector<PendingInstantiation, 64> PendingInstantiations;
922
923 //@}
924
925 /// \name DiagnosticsEngine-relevant special data
926 /// Fields containing data that is used for generating diagnostics
927 //@{
928
929 /// A snapshot of Sema's unused file-scoped variable tracking, for
930 /// generating warnings.
931 SmallVector<GlobalDeclID, 16> UnusedFileScopedDecls;
932
933 /// A list of all the delegating constructors we've seen, to diagnose
934 /// cycles.
935 SmallVector<GlobalDeclID, 4> DelegatingCtorDecls;
936
937 /// Method selectors used in a @selector expression. Used for
938 /// implementation of -Wselector.
939 SmallVector<serialization::SelectorID, 64> ReferencedSelectorsData;
940
941 /// A snapshot of Sema's weak undeclared identifier tracking, for
942 /// generating warnings. Note that this vector has 3n entries, being triplets
943 /// of the form C name, alias if any, and source location.
944 SmallVector<serialization::IdentifierID, 64> WeakUndeclaredIdentifiers;
945
946 /// A snapshot of Sema's #redefine_extname'd undeclared identifier tracking,
947 /// for generating warnings. Note that this vector has 3n entries, being
948 /// triplets in the order of C name, asm name, and source location.
949 SmallVector<serialization::IdentifierID, 64> ExtnameUndeclaredIdentifiers;
950
951 /// The IDs of type aliases for ext_vectors that exist in the chain.
952 ///
953 /// Used by Sema for finding sugared names for ext_vectors in diagnostics.
954 SmallVector<GlobalDeclID, 4> ExtVectorDecls;
955
956 //@}
957
958 /// \name Sema-relevant special data
959 /// Fields containing data that is used for semantic analysis
960 //@{
961
962 /// The IDs of all potentially unused typedef names in the chain.
963 ///
964 /// Sema tracks these to emit warnings.
965 SmallVector<GlobalDeclID, 16> UnusedLocalTypedefNameCandidates;
966
967 /// Our current depth in #pragma cuda force_host_device begin/end
968 /// macros.
969 unsigned ForceHostDeviceDepth = 0;
970
971 /// The IDs of the declarations Sema stores directly.
972 ///
973 /// Sema tracks a few important decls, such as namespace std, directly.
974 SmallVector<GlobalDeclID, 4> SemaDeclRefs;
975
976 /// The IDs of the types ASTContext stores directly.
977 ///
978 /// The AST context tracks a few important types, such as va_list, directly.
979 SmallVector<serialization::TypeID, 16> SpecialTypes;
980
981 /// The IDs of CUDA-specific declarations ASTContext stores directly.
982 ///
983 /// The AST context tracks a few important decls, currently cudaConfigureCall,
984 /// directly.
985 SmallVector<GlobalDeclID, 4> CUDASpecialDeclRefs;
986
987 /// The floating point pragma option settings.
988 SmallVector<uint64_t, 1> FPPragmaOptions;
989
990 /// The pragma clang optimize location (if the pragma state is "off").
991 SourceLocation OptimizeOffPragmaLocation;
992
993 /// The PragmaMSStructKind pragma ms_struct state if set, or -1.
994 int PragmaMSStructState = -1;
995
996 /// The PragmaMSPointersToMembersKind pragma pointers_to_members state.
997 int PragmaMSPointersToMembersState = -1;
998 SourceLocation PointersToMembersPragmaLocation;
999
1000 /// The pragma float_control state.
1001 std::optional<FPOptionsOverride> FpPragmaCurrentValue;
1002 SourceLocation FpPragmaCurrentLocation;
1003 struct FpPragmaStackEntry {
1004 FPOptionsOverride Value;
1005 SourceLocation Location;
1006 SourceLocation PushLocation;
1007 StringRef SlotLabel;
1008 };
1009 llvm::SmallVector<FpPragmaStackEntry, 2> FpPragmaStack;
1010 llvm::SmallVector<std::string, 2> FpPragmaStrings;
1011
1012 /// The pragma align/pack state.
1013 std::optional<Sema::AlignPackInfo> PragmaAlignPackCurrentValue;
1014 SourceLocation PragmaAlignPackCurrentLocation;
1015 struct PragmaAlignPackStackEntry {
1016 Sema::AlignPackInfo Value;
1017 SourceLocation Location;
1018 SourceLocation PushLocation;
1019 StringRef SlotLabel;
1020 };
1021 llvm::SmallVector<PragmaAlignPackStackEntry, 2> PragmaAlignPackStack;
1022 llvm::SmallVector<std::string, 2> PragmaAlignPackStrings;
1023
1024 /// The OpenCL extension settings.
1025 OpenCLOptions OpenCLExtensions;
1026
1027 /// Extensions required by an OpenCL type.
1028 llvm::DenseMap<const Type *, std::set<std::string>> OpenCLTypeExtMap;
1029
1030 /// Extensions required by an OpenCL declaration.
1031 llvm::DenseMap<const Decl *, std::set<std::string>> OpenCLDeclExtMap;
1032
1033 /// A list of the namespaces we've seen.
1034 SmallVector<GlobalDeclID, 4> KnownNamespaces;
1035
1036 /// A list of undefined decls with internal linkage followed by the
1037 /// SourceLocation of a matching ODR-use.
1038 struct UndefinedButUsedDecl {
1039 GlobalDeclID ID;
1041 };
1042 SmallVector<UndefinedButUsedDecl, 8> UndefinedButUsed;
1043
1044 /// Delete expressions to analyze at the end of translation unit.
1045 SmallVector<uint64_t, 8> DelayedDeleteExprs;
1046
1047 // A list of late parsed template function data with their module files.
1048 SmallVector<std::pair<ModuleFile *, SmallVector<uint64_t, 1>>, 4>
1049 LateParsedTemplates;
1050
1051 /// The IDs of all decls to be checked for deferred diags.
1052 ///
1053 /// Sema tracks these to emit deferred diags.
1054 llvm::SmallSetVector<GlobalDeclID, 4> DeclsToCheckForDeferredDiags;
1055
1056 /// The IDs of all decls with function effects to be checked.
1057 SmallVector<GlobalDeclID> DeclsWithEffectsToVerify;
1058
1059 /// The RISC-V intrinsic pragma(including RVV, SiFive and Andes).
1060 SmallVector<bool, 3> RISCVVecIntrinsicPragma;
1061
1062private:
1063 struct ImportedSubmodule {
1065 SourceLocation ImportLoc;
1066
1067 ImportedSubmodule(serialization::SubmoduleID ID, SourceLocation ImportLoc)
1068 : ID(ID), ImportLoc(ImportLoc) {}
1069 };
1070
1071 /// A list of modules that were imported by precompiled headers or
1072 /// any other non-module AST file and have not yet been made visible. If a
1073 /// module is made visible in the ASTReader, it will be transfered to
1074 /// \c PendingImportedModulesSema.
1075 SmallVector<ImportedSubmodule, 2> PendingImportedModules;
1076
1077 /// A list of modules that were imported by precompiled headers or
1078 /// any other non-module AST file and have not yet been made visible for Sema.
1079 SmallVector<ImportedSubmodule, 2> PendingImportedModulesSema;
1080 //@}
1081
1082 /// The system include root to be used when loading the
1083 /// precompiled header.
1084 std::string isysroot;
1085
1086 /// Whether to disable the normal validation performed on precompiled
1087 /// headers and module files when they are loaded.
1088 DisableValidationForModuleKind DisableValidationKind;
1089
1090 /// Whether to accept an AST file with compiler errors.
1091 bool AllowASTWithCompilerErrors;
1092
1093 /// Whether to accept an AST file that has a different configuration
1094 /// from the current compiler instance.
1095 bool AllowConfigurationMismatch;
1096
1097 /// Whether to validate system input files.
1098 bool ValidateSystemInputs;
1099
1100 /// Whether to force the validation of user input files.
1101 bool ForceValidateUserInputs;
1102
1103 /// Whether validate headers and module maps using hash based on contents.
1104 bool ValidateASTInputFilesContent;
1105
1106 /// Whether we are allowed to use the global module index.
1107 bool UseGlobalIndex;
1108
1109 /// Whether we have tried loading the global module index yet.
1110 bool TriedLoadingGlobalIndex = false;
1111
1112 ///Whether we are currently processing update records.
1113 bool ProcessingUpdateRecords = false;
1114
1115 using SwitchCaseMapTy = llvm::DenseMap<unsigned, SwitchCase *>;
1116
1117 /// Mapping from switch-case IDs in the chain to switch-case statements
1118 ///
1119 /// Statements usually don't have IDs, but switch cases need them, so that the
1120 /// switch statement can refer to them.
1121 SwitchCaseMapTy SwitchCaseStmts;
1122
1123 SwitchCaseMapTy *CurrSwitchCaseStmts;
1124
1125 /// The number of source location entries de-serialized from
1126 /// the PCH file.
1127 unsigned NumSLocEntriesRead = 0;
1128
1129 /// The number of source location entries in the chain.
1130 unsigned TotalNumSLocEntries = 0;
1131
1132 /// The number of statements (and expressions) de-serialized
1133 /// from the chain.
1134 unsigned NumStatementsRead = 0;
1135
1136 /// The total number of statements (and expressions) stored
1137 /// in the chain.
1138 unsigned TotalNumStatements = 0;
1139
1140 /// The number of macros de-serialized from the chain.
1141 unsigned NumMacrosRead = 0;
1142
1143 /// The total number of macros stored in the chain.
1144 unsigned TotalNumMacros = 0;
1145
1146 /// The number of lookups into identifier tables.
1147 unsigned NumIdentifierLookups = 0;
1148
1149 /// The number of lookups into identifier tables that succeed.
1150 unsigned NumIdentifierLookupHits = 0;
1151
1152 /// The number of selectors that have been read.
1153 unsigned NumSelectorsRead = 0;
1154
1155 /// The number of method pool entries that have been read.
1156 unsigned NumMethodPoolEntriesRead = 0;
1157
1158 /// The number of times we have looked up a selector in the method
1159 /// pool.
1160 unsigned NumMethodPoolLookups = 0;
1161
1162 /// The number of times we have looked up a selector in the method
1163 /// pool and found something.
1164 unsigned NumMethodPoolHits = 0;
1165
1166 /// The number of times we have looked up a selector in the method
1167 /// pool within a specific module.
1168 unsigned NumMethodPoolTableLookups = 0;
1169
1170 /// The number of times we have looked up a selector in the method
1171 /// pool within a specific module and found something.
1172 unsigned NumMethodPoolTableHits = 0;
1173
1174 /// The total number of method pool entries in the selector table.
1175 unsigned TotalNumMethodPoolEntries = 0;
1176
1177 /// Number of lexical decl contexts read/total.
1178 unsigned NumLexicalDeclContextsRead = 0, TotalLexicalDeclContexts = 0;
1179
1180 /// Number of visible decl contexts read/total.
1181 unsigned NumVisibleDeclContextsRead = 0, TotalVisibleDeclContexts = 0;
1182
1183 /// Number of module local visible decl contexts read/total.
1184 unsigned NumModuleLocalVisibleDeclContexts = 0,
1185 TotalModuleLocalVisibleDeclContexts = 0;
1186
1187 /// Number of TU Local decl contexts read/total
1188 unsigned NumTULocalVisibleDeclContexts = 0,
1189 TotalTULocalVisibleDeclContexts = 0;
1190
1191 /// Total size of modules, in bits, currently loaded
1192 uint64_t TotalModulesSizeInBits = 0;
1193
1194 /// Number of Decl/types that are currently deserializing.
1195 unsigned NumCurrentElementsDeserializing = 0;
1196
1197 /// Set false while we are in a state where we cannot safely pass deserialized
1198 /// "interesting" decls to the consumer inside FinishedDeserializing().
1199 /// This is used as a guard to avoid recursively entering the process of
1200 /// passing decls to consumer.
1201 bool CanPassDeclsToConsumer = true;
1202
1203 /// The set of identifiers that were read while the AST reader was
1204 /// (recursively) loading declarations.
1205 ///
1206 /// The declarations on the identifier chain for these identifiers will be
1207 /// loaded once the recursive loading has completed.
1208 llvm::MapVector<IdentifierInfo *, SmallVector<GlobalDeclID, 4>>
1209 PendingIdentifierInfos;
1210
1211 /// The set of lookup results that we have faked in order to support
1212 /// merging of partially deserialized decls but that we have not yet removed.
1213 llvm::SmallMapVector<const IdentifierInfo *, SmallVector<NamedDecl *, 2>, 16>
1214 PendingFakeLookupResults;
1215
1216 /// The generation number of each identifier, which keeps track of
1217 /// the last time we loaded information about this identifier.
1218 llvm::DenseMap<const IdentifierInfo *, unsigned> IdentifierGeneration;
1219
1220 /// Contains declarations and definitions that could be
1221 /// "interesting" to the ASTConsumer, when we get that AST consumer.
1222 ///
1223 /// "Interesting" declarations are those that have data that may
1224 /// need to be emitted, such as inline function definitions or
1225 /// Objective-C protocols.
1226 std::deque<Decl *> PotentiallyInterestingDecls;
1227
1228 /// The list of deduced function types that we have not yet read, because
1229 /// they might contain a deduced return type that refers to a local type
1230 /// declared within the function.
1231 SmallVector<std::pair<FunctionDecl *, serialization::TypeID>, 16>
1232 PendingDeducedFunctionTypes;
1233
1234 /// The list of deduced variable types that we have not yet read, because
1235 /// they might contain a deduced type that refers to a local type declared
1236 /// within the variable.
1237 SmallVector<std::pair<VarDecl *, serialization::TypeID>, 16>
1238 PendingDeducedVarTypes;
1239
1240 /// The list of redeclaration chains that still need to be
1241 /// reconstructed, and the local offset to the corresponding list
1242 /// of redeclarations.
1243 SmallVector<std::pair<Decl *, uint64_t>, 16> PendingDeclChains;
1244
1245 /// The list of canonical declarations whose redeclaration chains
1246 /// need to be marked as incomplete once we're done deserializing things.
1247 SmallVector<Decl *, 16> PendingIncompleteDeclChains;
1248
1249 /// The Decl IDs for the Sema/Lexical DeclContext of a Decl that has
1250 /// been loaded but its DeclContext was not set yet.
1251 struct PendingDeclContextInfo {
1252 Decl *D;
1253 GlobalDeclID SemaDC;
1254 GlobalDeclID LexicalDC;
1255 };
1256
1257 /// The set of Decls that have been loaded but their DeclContexts are
1258 /// not set yet.
1259 ///
1260 /// The DeclContexts for these Decls will be set once recursive loading has
1261 /// been completed.
1262 std::deque<PendingDeclContextInfo> PendingDeclContextInfos;
1263
1264 template <typename DeclTy>
1265 using DuplicateObjCDecls = std::pair<DeclTy *, DeclTy *>;
1266
1267 /// When resolving duplicate ivars from Objective-C extensions we don't error
1268 /// out immediately but check if can merge identical extensions. Not checking
1269 /// extensions for equality immediately because ivar deserialization isn't
1270 /// over yet at that point.
1271 llvm::SmallMapVector<DuplicateObjCDecls<ObjCCategoryDecl>,
1272 llvm::SmallVector<DuplicateObjCDecls<ObjCIvarDecl>, 4>,
1273 2>
1274 PendingObjCExtensionIvarRedeclarations;
1275
1276 /// Members that have been added to classes, for which the class has not yet
1277 /// been notified. CXXRecordDecl::addedMember will be called for each of
1278 /// these once recursive deserialization is complete.
1279 SmallVector<std::pair<CXXRecordDecl*, Decl*>, 4> PendingAddedClassMembers;
1280
1281 /// The set of NamedDecls that have been loaded, but are members of a
1282 /// context that has been merged into another context where the corresponding
1283 /// declaration is either missing or has not yet been loaded.
1284 ///
1285 /// We will check whether the corresponding declaration is in fact missing
1286 /// once recursing loading has been completed.
1287 llvm::SmallVector<NamedDecl *, 16> PendingOdrMergeChecks;
1288
1289 using DataPointers =
1290 std::pair<CXXRecordDecl *, struct CXXRecordDecl::DefinitionData *>;
1291 using ObjCInterfaceDataPointers =
1292 std::pair<ObjCInterfaceDecl *,
1293 struct ObjCInterfaceDecl::DefinitionData *>;
1294 using ObjCProtocolDataPointers =
1295 std::pair<ObjCProtocolDecl *, struct ObjCProtocolDecl::DefinitionData *>;
1296
1297 /// Record definitions in which we found an ODR violation.
1298 llvm::SmallDenseMap<CXXRecordDecl *, llvm::SmallVector<DataPointers, 2>, 2>
1299 PendingOdrMergeFailures;
1300
1301 /// C/ObjC record definitions in which we found an ODR violation.
1302 llvm::SmallDenseMap<RecordDecl *, llvm::SmallVector<RecordDecl *, 2>, 2>
1303 PendingRecordOdrMergeFailures;
1304
1305 /// Function definitions in which we found an ODR violation.
1306 llvm::SmallDenseMap<FunctionDecl *, llvm::SmallVector<FunctionDecl *, 2>, 2>
1307 PendingFunctionOdrMergeFailures;
1308
1309 /// Enum definitions in which we found an ODR violation.
1310 llvm::SmallDenseMap<EnumDecl *, llvm::SmallVector<EnumDecl *, 2>, 2>
1311 PendingEnumOdrMergeFailures;
1312
1313 /// ObjCInterfaceDecl in which we found an ODR violation.
1314 llvm::SmallDenseMap<ObjCInterfaceDecl *,
1315 llvm::SmallVector<ObjCInterfaceDataPointers, 2>, 2>
1316 PendingObjCInterfaceOdrMergeFailures;
1317
1318 /// ObjCProtocolDecl in which we found an ODR violation.
1319 llvm::SmallDenseMap<ObjCProtocolDecl *,
1320 llvm::SmallVector<ObjCProtocolDataPointers, 2>, 2>
1321 PendingObjCProtocolOdrMergeFailures;
1322
1323 /// DeclContexts in which we have diagnosed an ODR violation.
1324 llvm::SmallPtrSet<DeclContext*, 2> DiagnosedOdrMergeFailures;
1325
1326 /// The set of Objective-C categories that have been deserialized
1327 /// since the last time the declaration chains were linked.
1328 llvm::SmallPtrSet<ObjCCategoryDecl *, 16> CategoriesDeserialized;
1329
1330 /// The set of Objective-C class definitions that have already been
1331 /// loaded, for which we will need to check for categories whenever a new
1332 /// module is loaded.
1333 SmallVector<ObjCInterfaceDecl *, 16> ObjCClassesLoaded;
1334
1335 using KeyDeclsMap = llvm::DenseMap<Decl *, SmallVector<GlobalDeclID, 2>>;
1336
1337 /// A mapping from canonical declarations to the set of global
1338 /// declaration IDs for key declaration that have been merged with that
1339 /// canonical declaration. A key declaration is a formerly-canonical
1340 /// declaration whose module did not import any other key declaration for that
1341 /// entity. These are the IDs that we use as keys when finding redecl chains.
1342 KeyDeclsMap KeyDecls;
1343
1344 /// A mapping from DeclContexts to the semantic DeclContext that we
1345 /// are treating as the definition of the entity. This is used, for instance,
1346 /// when merging implicit instantiations of class templates across modules.
1347 llvm::DenseMap<DeclContext *, DeclContext *> MergedDeclContexts;
1348
1349 /// A mapping from canonical declarations of enums to their canonical
1350 /// definitions. Only populated when using modules in C++.
1351 llvm::DenseMap<EnumDecl *, EnumDecl *> EnumDefinitions;
1352
1353 /// A mapping from canonical declarations of records to their canonical
1354 /// definitions. Doesn't cover CXXRecordDecl.
1355 llvm::DenseMap<RecordDecl *, RecordDecl *> RecordDefinitions;
1356
1357 /// When reading a Stmt tree, Stmt operands are placed in this stack.
1358 SmallVector<Stmt *, 16> StmtStack;
1359
1360 /// What kind of records we are reading.
1361 enum ReadingKind {
1362 Read_None, Read_Decl, Read_Type, Read_Stmt
1363 };
1364
1365 /// What kind of records we are reading.
1366 ReadingKind ReadingKind = Read_None;
1367
1368 /// RAII object to change the reading kind.
1369 class ReadingKindTracker {
1370 ASTReader &Reader;
1371 enum ReadingKind PrevKind;
1372
1373 public:
1374 ReadingKindTracker(enum ReadingKind newKind, ASTReader &reader)
1375 : Reader(reader), PrevKind(Reader.ReadingKind) {
1376 Reader.ReadingKind = newKind;
1377 }
1378
1379 ReadingKindTracker(const ReadingKindTracker &) = delete;
1380 ReadingKindTracker &operator=(const ReadingKindTracker &) = delete;
1381 ~ReadingKindTracker() { Reader.ReadingKind = PrevKind; }
1382 };
1383
1384 /// RAII object to mark the start of processing updates.
1385 class ProcessingUpdatesRAIIObj {
1386 ASTReader &Reader;
1387 bool PrevState;
1388
1389 public:
1390 ProcessingUpdatesRAIIObj(ASTReader &reader)
1391 : Reader(reader), PrevState(Reader.ProcessingUpdateRecords) {
1392 Reader.ProcessingUpdateRecords = true;
1393 }
1394
1395 ProcessingUpdatesRAIIObj(const ProcessingUpdatesRAIIObj &) = delete;
1396 ProcessingUpdatesRAIIObj &
1397 operator=(const ProcessingUpdatesRAIIObj &) = delete;
1398 ~ProcessingUpdatesRAIIObj() { Reader.ProcessingUpdateRecords = PrevState; }
1399 };
1400
1401 /// Suggested contents of the predefines buffer, after this
1402 /// PCH file has been processed.
1403 ///
1404 /// In most cases, this string will be empty, because the predefines
1405 /// buffer computed to build the PCH file will be identical to the
1406 /// predefines buffer computed from the command line. However, when
1407 /// there are differences that the PCH reader can work around, this
1408 /// predefines buffer may contain additional definitions.
1409 std::string SuggestedPredefines;
1410
1411 llvm::DenseMap<const Decl *, bool> DefinitionSource;
1412
1413 /// Friend functions that were defined but might have had their bodies
1414 /// removed.
1415 llvm::DenseSet<const FunctionDecl *> ThisDeclarationWasADefinitionSet;
1416
1417 bool shouldDisableValidationForFile(const serialization::ModuleFile &M) const;
1418
1419 /// Reads a statement from the specified cursor.
1420 Stmt *ReadStmtFromStream(ModuleFile &F);
1421
1422 /// Retrieve the stored information about an input file.
1423 serialization::InputFileInfo getInputFileInfo(ModuleFile &F, unsigned ID);
1424
1425 /// Retrieve the file entry and 'overridden' bit for an input
1426 /// file in the given module file.
1427 serialization::InputFile getInputFile(ModuleFile &F, unsigned ID,
1428 bool Complain = true);
1429
1430 /// The buffer used as the temporary backing storage for resolved paths.
1431 SmallString<0> PathBuf;
1432
1433 /// A wrapper around StringRef that temporarily borrows the underlying buffer.
1434 class TemporarilyOwnedStringRef {
1435 StringRef String;
1436 llvm::SaveAndRestore<SmallString<0>> UnderlyingBuffer;
1437
1438 public:
1439 TemporarilyOwnedStringRef(StringRef S, SmallString<0> &UnderlyingBuffer)
1440 : String(S), UnderlyingBuffer(UnderlyingBuffer, {}) {}
1441
1442 /// Return the wrapped \c StringRef that must be outlived by \c this.
1443 const StringRef *operator->() const & { return &String; }
1444 const StringRef &operator*() const & { return String; }
1445
1446 /// Make it harder to get a \c StringRef that outlives \c this.
1447 const StringRef *operator->() && = delete;
1448 const StringRef &operator*() && = delete;
1449 };
1450
1451public:
1452 /// Get the buffer for resolving paths.
1453 SmallString<0> &getPathBuf() { return PathBuf; }
1454
1455 /// Resolve \c Path in the context of module file \c M. The return value
1456 /// must go out of scope before the next call to \c ResolveImportedPath.
1457 static TemporarilyOwnedStringRef
1458 ResolveImportedPath(SmallString<0> &Buf, StringRef Path, ModuleFile &ModF);
1459 /// Resolve \c Path in the context of the \c Prefix directory. The return
1460 /// value must go out of scope before the next call to \c ResolveImportedPath.
1461 static TemporarilyOwnedStringRef
1462 ResolveImportedPath(SmallString<0> &Buf, StringRef Path, StringRef Prefix);
1463
1464 /// Resolve \c Path in the context of module file \c M.
1465 static std::string ResolveImportedPathAndAllocate(SmallString<0> &Buf,
1466 StringRef Path,
1467 ModuleFile &ModF);
1468 /// Resolve \c Path in the context of the \c Prefix directory.
1469 static std::string ResolveImportedPathAndAllocate(SmallString<0> &Buf,
1470 StringRef Path,
1471 StringRef Prefix);
1472
1473 /// Returns the first key declaration for the given declaration. This
1474 /// is one that is formerly-canonical (or still canonical) and whose module
1475 /// did not import any other key declaration of the entity.
1477 D = D->getCanonicalDecl();
1478 if (D->isFromASTFile())
1479 return D;
1480
1481 auto I = KeyDecls.find(D);
1482 if (I == KeyDecls.end() || I->second.empty())
1483 return D;
1484 return GetExistingDecl(I->second[0]);
1485 }
1486 const Decl *getKeyDeclaration(const Decl *D) {
1487 return getKeyDeclaration(const_cast<Decl*>(D));
1488 }
1489
1490 /// Run a callback on each imported key declaration of \p D.
1491 template <typename Fn>
1492 void forEachImportedKeyDecl(const Decl *D, Fn Visit) {
1493 D = D->getCanonicalDecl();
1494 if (D->isFromASTFile())
1495 Visit(D);
1496
1497 auto It = KeyDecls.find(const_cast<Decl*>(D));
1498 if (It != KeyDecls.end())
1499 for (auto ID : It->second)
1500 Visit(GetExistingDecl(ID));
1501 }
1502
1503 /// Get the loaded lookup tables for \p Primary, if any.
1505 getLoadedLookupTables(DeclContext *Primary) const;
1506
1509
1511 getTULocalLookupTables(DeclContext *Primary) const;
1512
1513 /// Get the loaded specializations lookup tables for \p D,
1514 /// if any.
1516 getLoadedSpecializationsLookupTables(const Decl *D, bool IsPartial);
1517
1518 /// If we have any unloaded specialization for \p D
1519 bool haveUnloadedSpecializations(const Decl *D) const;
1520
1531
1533 SourceLocation ImportLoc, ModuleFile *ImportedBy,
1535 off_t ExpectedSize, time_t ExpectedModTime,
1536 ASTFileSignature ExpectedSignature,
1537 unsigned ClientLoadCapabilities);
1538
1539private:
1540 ASTReadResult ReadControlBlock(ModuleFile &F,
1542 const ModuleFile *ImportedBy,
1543 unsigned ClientLoadCapabilities);
1544 static ASTReadResult
1545 ReadOptionsBlock(llvm::BitstreamCursor &Stream, StringRef Filename,
1546 unsigned ClientLoadCapabilities,
1547 bool AllowCompatibleConfigurationMismatch,
1548 ASTReaderListener &Listener,
1549 std::string &SuggestedPredefines);
1550
1551 /// Read the unhashed control block.
1552 ///
1553 /// This has no effect on \c F.Stream, instead creating a fresh cursor from
1554 /// \c F.Data and reading ahead.
1555 ASTReadResult readUnhashedControlBlock(ModuleFile &F, bool WasImportedBy,
1556 unsigned ClientLoadCapabilities);
1557
1558 static ASTReadResult readUnhashedControlBlockImpl(
1559 ModuleFile *F, llvm::StringRef StreamData, StringRef Filename,
1560 unsigned ClientLoadCapabilities,
1561 bool AllowCompatibleConfigurationMismatch, ASTReaderListener *Listener,
1562 bool ValidateDiagnosticOptions);
1563
1564 llvm::Error ReadASTBlock(ModuleFile &F, unsigned ClientLoadCapabilities);
1565 llvm::Error ReadExtensionBlock(ModuleFile &F);
1566 void ReadModuleOffsetMap(ModuleFile &F) const;
1567 void ParseLineTable(ModuleFile &F, const RecordData &Record);
1568 llvm::Error ReadSourceManagerBlock(ModuleFile &F);
1569 SourceLocation getImportLocation(ModuleFile *F);
1570
1571 /// The first element is `std::nullopt` if relocation check should be skipped.
1572 /// Otherwise, the optional holds a pointer to the discovered module.
1573 /// The pointer can be `nullptr` if the discovery was unsuccessful.
1574 /// The second element determines whether to emit related errors.
1575 using RelocationResult = std::pair<std::optional<Module *>, bool>;
1576
1577 /// Determine whether a relocation check for a module should be performed
1578 /// by attempting to resolve the same module via lookup.
1579 /// If so, also determine whether to emit errors for the relocation.
1580 /// A relocated module is defined as a module that is either no longer
1581 /// resolvable from the modulemap or search path it originally compiled it's
1582 /// definition from.
1583 RelocationResult getModuleForRelocationChecks(ModuleFile &F,
1584 bool DirectoryCheck = false);
1585 ASTReadResult ReadModuleMapFileBlock(RecordData &Record, ModuleFile &F,
1586 const ModuleFile *ImportedBy,
1587 unsigned ClientLoadCapabilities);
1588 static bool ParseLanguageOptions(const RecordData &Record,
1589 StringRef ModuleFilename, bool Complain,
1590 ASTReaderListener &Listener,
1591 bool AllowCompatibleDifferences);
1592 static bool ParseCodeGenOptions(const RecordData &Record,
1593 StringRef ModuleFilename, bool Complain,
1594 ASTReaderListener &Listener,
1595 bool AllowCompatibleDifferences);
1596 static bool ParseTargetOptions(const RecordData &Record,
1597 StringRef ModuleFilename, bool Complain,
1598 ASTReaderListener &Listener,
1599 bool AllowCompatibleDifferences);
1600 static bool ParseDiagnosticOptions(const RecordData &Record,
1601 StringRef ModuleFilename, bool Complain,
1602 ASTReaderListener &Listener);
1603 static bool ParseFileSystemOptions(const RecordData &Record, bool Complain,
1604 ASTReaderListener &Listener);
1605 static bool ParseHeaderSearchOptions(const RecordData &Record,
1606 StringRef ModuleFilename, bool Complain,
1607 ASTReaderListener &Listener);
1608 static bool ParseHeaderSearchPaths(const RecordData &Record, bool Complain,
1609 ASTReaderListener &Listener);
1610 static bool ParsePreprocessorOptions(const RecordData &Record,
1611 StringRef ModuleFilename, bool Complain,
1612 ASTReaderListener &Listener,
1613 std::string &SuggestedPredefines);
1614
1615 struct RecordLocation {
1616 ModuleFile *F;
1617 uint64_t Offset;
1618
1619 RecordLocation(ModuleFile *M, uint64_t O) : F(M), Offset(O) {}
1620 };
1621
1622 QualType readTypeRecord(serialization::TypeID ID);
1623 RecordLocation TypeCursorForIndex(serialization::TypeID ID);
1624 void LoadedDecl(unsigned Index, Decl *D);
1625 Decl *ReadDeclRecord(GlobalDeclID ID);
1626 void markIncompleteDeclChain(Decl *D);
1627
1628 /// Returns the most recent declaration of a declaration (which must be
1629 /// of a redeclarable kind) that is either local or has already been loaded
1630 /// merged into its redecl chain.
1631 Decl *getMostRecentExistingDecl(Decl *D);
1632
1633 RecordLocation DeclCursorForID(GlobalDeclID ID, SourceLocation &Location);
1634 void loadDeclUpdateRecords(PendingUpdateRecord &Record);
1635 void loadPendingDeclChain(Decl *D, uint64_t LocalOffset);
1636 void loadObjCCategories(GlobalDeclID ID, ObjCInterfaceDecl *D,
1637 unsigned PreviousGeneration = 0);
1638
1639 RecordLocation getLocalBitOffset(uint64_t GlobalOffset);
1640 uint64_t getGlobalBitOffset(ModuleFile &M, uint64_t LocalOffset);
1641
1642 /// Returns the first preprocessed entity ID that begins or ends after
1643 /// \arg Loc.
1644 unsigned findPreprocessedEntity(SourceLocation Loc, bool EndsAfter) const;
1645
1646 /// Find the next module that contains entities and return the ID
1647 /// of the first entry.
1648 ///
1649 /// \param SLocMapI points at a chunk of a module that contains no
1650 /// preprocessed entities or the entities it contains are not the
1651 /// ones we are looking for.
1652 unsigned findNextPreprocessedEntity(
1654
1655 /// Returns (ModuleFile, Local index) pair for \p GlobalIndex of a
1656 /// preprocessed entity.
1657 std::pair<ModuleFile *, unsigned>
1658 getModulePreprocessedEntity(unsigned GlobalIndex);
1659
1660 /// Returns (begin, end) pair for the preprocessed entities of a
1661 /// particular module.
1662 llvm::iterator_range<PreprocessingRecord::iterator>
1663 getModulePreprocessedEntities(ModuleFile &Mod) const;
1664
1665 bool canRecoverFromOutOfDate(StringRef ModuleFileName,
1666 unsigned ClientLoadCapabilities);
1667
1668public:
1670 : public llvm::iterator_adaptor_base<
1671 ModuleDeclIterator, const serialization::unaligned_decl_id_t *,
1672 std::random_access_iterator_tag, const Decl *, ptrdiff_t,
1673 const Decl *, const Decl *> {
1674 ASTReader *Reader = nullptr;
1675 ModuleFile *Mod = nullptr;
1676
1677 public:
1678 ModuleDeclIterator() : iterator_adaptor_base(nullptr) {}
1679
1682 : iterator_adaptor_base(Pos), Reader(Reader), Mod(Mod) {}
1683
1684 value_type operator*() const {
1685 LocalDeclID ID = LocalDeclID::get(*Reader, *Mod, *I);
1686 return Reader->GetDecl(Reader->getGlobalDeclID(*Mod, ID));
1687 }
1688
1689 value_type operator->() const { return **this; }
1690
1691 bool operator==(const ModuleDeclIterator &RHS) const {
1692 assert(Reader == RHS.Reader && Mod == RHS.Mod);
1693 return I == RHS.I;
1694 }
1695 };
1696
1697 llvm::iterator_range<ModuleDeclIterator>
1699
1700private:
1701 bool isConsumerInterestedIn(Decl *D);
1702 void PassInterestingDeclsToConsumer();
1703 void PassInterestingDeclToConsumer(Decl *D);
1704 void PassVTableToConsumer(CXXRecordDecl *RD);
1705
1706 void finishPendingActions();
1707 void diagnoseOdrViolations();
1708
1709 void pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name);
1710
1711 void addPendingDeclContextInfo(Decl *D, GlobalDeclID SemaDC,
1712 GlobalDeclID LexicalDC) {
1713 assert(D);
1714 PendingDeclContextInfo Info = { D, SemaDC, LexicalDC };
1715 PendingDeclContextInfos.push_back(Info);
1716 }
1717
1718 /// Produce an error diagnostic and return true.
1719 ///
1720 /// This routine should only be used for fatal errors that have to
1721 /// do with non-routine failures (e.g., corrupted AST file).
1722 void Error(StringRef Msg) const;
1723 void Error(unsigned DiagID, StringRef Arg1 = StringRef(),
1724 StringRef Arg2 = StringRef(), StringRef Arg3 = StringRef()) const;
1725 void Error(llvm::Error &&Err) const;
1726
1727 /// Translate a \param GlobalDeclID to the index of DeclsLoaded array.
1728 unsigned translateGlobalDeclIDToIndex(GlobalDeclID ID) const;
1729
1730 /// Translate an \param IdentifierID ID to the index of IdentifiersLoaded
1731 /// array and the corresponding module file.
1732 std::pair<ModuleFile *, unsigned>
1733 translateIdentifierIDToIndex(serialization::IdentifierID ID) const;
1734
1735 /// Translate an \param MacroID ID to the index of MacrosLoaded
1736 /// array and the corresponding module file.
1737 std::pair<ModuleFile *, unsigned>
1738 translateMacroIDToIndex(serialization::MacroID ID) const;
1739
1740 unsigned translatePreprocessedEntityIDToIndex(
1742
1743 /// Translate an \param TypeID ID to the index of TypesLoaded
1744 /// array and the corresponding module file.
1745 std::pair<ModuleFile *, unsigned>
1746 translateTypeIDToIndex(serialization::TypeID ID) const;
1747
1748 /// Get a predefined Decl from ASTContext.
1749 Decl *getPredefinedDecl(PredefinedDeclIDs ID);
1750
1751public:
1752 /// Load the AST file and validate its contents against the given
1753 /// Preprocessor.
1754 ///
1755 /// \param PP the preprocessor associated with the context in which this
1756 /// precompiled header will be loaded.
1757 ///
1758 /// \param Context the AST context that this precompiled header will be
1759 /// loaded into, if any.
1760 ///
1761 /// \param PCHContainerRdr the PCHContainerOperations to use for loading and
1762 /// creating modules.
1763 ///
1764 /// \param Extensions the list of module file extensions that can be loaded
1765 /// from the AST files.
1766 ///
1767 /// \param isysroot If non-NULL, the system include path specified by the
1768 /// user. This is only used with relocatable PCH files. If non-NULL,
1769 /// a relocatable PCH file will use the default path "/".
1770 ///
1771 /// \param DisableValidationKind If set, the AST reader will suppress most
1772 /// of its regular consistency checking, allowing the use of precompiled
1773 /// headers and module files that cannot be determined to be compatible.
1774 ///
1775 /// \param AllowASTWithCompilerErrors If true, the AST reader will accept an
1776 /// AST file the was created out of an AST with compiler errors,
1777 /// otherwise it will reject it.
1778 ///
1779 /// \param AllowConfigurationMismatch If true, the AST reader will not check
1780 /// for configuration differences between the AST file and the invocation.
1781 ///
1782 /// \param ValidateSystemInputs If true, the AST reader will validate
1783 /// system input files in addition to user input files. This is only
1784 /// meaningful if \p DisableValidation is false.
1785 ///
1786 /// \param UseGlobalIndex If true, the AST reader will try to load and use
1787 /// the global module index.
1788 ///
1789 /// \param ReadTimer If non-null, a timer used to track the time spent
1790 /// deserializing.
1791 ASTReader(Preprocessor &PP, ModuleCache &ModCache, ASTContext *Context,
1792 const PCHContainerReader &PCHContainerRdr,
1793 const CodeGenOptions &CodeGenOpts,
1794 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
1795 StringRef isysroot = "",
1796 DisableValidationForModuleKind DisableValidationKind =
1798 bool AllowASTWithCompilerErrors = false,
1799 bool AllowConfigurationMismatch = false,
1800 bool ValidateSystemInputs = false,
1801 bool ForceValidateUserInputs = true,
1802 bool ValidateASTInputFilesContent = false,
1803 bool UseGlobalIndex = true,
1804 std::unique_ptr<llvm::Timer> ReadTimer = {});
1805 ASTReader(const ASTReader &) = delete;
1806 ASTReader &operator=(const ASTReader &) = delete;
1807 ~ASTReader() override;
1808
1809 SourceManager &getSourceManager() const { return SourceMgr; }
1810 FileManager &getFileManager() const { return FileMgr; }
1811 DiagnosticsEngine &getDiags() const { return Diags; }
1812 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
1813
1814 /// Flags that indicate what kind of AST loading failures the client
1815 /// of the AST reader can directly handle.
1816 ///
1817 /// When a client states that it can handle a particular kind of failure,
1818 /// the AST reader will not emit errors when producing that kind of failure.
1820 /// The client can't handle any AST loading failures.
1822
1823 /// The client can handle an AST file that cannot load because it
1824 /// is missing.
1826
1827 /// The client can handle an AST file that cannot load because it
1828 /// is out-of-date relative to its input files.
1830
1831 /// The client can handle an AST file that cannot load because it
1832 /// was built with a different version of Clang.
1834
1835 /// The client can handle an AST file that cannot load because it's
1836 /// compiled configuration doesn't match that of the context it was
1837 /// loaded into.
1839
1840 /// If a module file is marked with errors treat it as out-of-date so the
1841 /// caller can rebuild it.
1843 };
1844
1845 /// Load the AST file designated by the given file name.
1846 ///
1847 /// \param FileName The name of the AST file to load.
1848 ///
1849 /// \param Type The kind of AST being loaded, e.g., PCH, module, main file,
1850 /// or preamble.
1851 ///
1852 /// \param ImportLoc the location where the module file will be considered as
1853 /// imported from. For non-module AST types it should be invalid.
1854 ///
1855 /// \param ClientLoadCapabilities The set of client load-failure
1856 /// capabilities, represented as a bitset of the enumerators of
1857 /// LoadFailureCapabilities.
1858 ///
1859 /// \param LoadedModuleFile The optional out-parameter refers to the new
1860 /// loaded modules. In case the module specified by FileName is already
1861 /// loaded, the module file pointer referred by NewLoadedModuleFile wouldn't
1862 /// change. Otherwise if the AST file get loaded successfully,
1863 /// NewLoadedModuleFile would refer to the address of the new loaded top level
1864 /// module. The state of NewLoadedModuleFile is unspecified if the AST file
1865 /// isn't loaded successfully.
1867 SourceLocation ImportLoc,
1868 unsigned ClientLoadCapabilities,
1869 ModuleFile **NewLoadedModuleFile = nullptr);
1870
1871 /// Make the entities in the given module and any of its (non-explicit)
1872 /// submodules visible to name lookup.
1873 ///
1874 /// \param Mod The module whose names should be made visible.
1875 ///
1876 /// \param NameVisibility The level of visibility to give the names in the
1877 /// module. Visibility can only be increased over time.
1878 ///
1879 /// \param ImportLoc The location at which the import occurs.
1880 void makeModuleVisible(Module *Mod,
1881 Module::NameVisibilityKind NameVisibility,
1882 SourceLocation ImportLoc);
1883
1884 /// Make the names within this set of hidden names visible.
1885 void makeNamesVisible(const HiddenNames &Names, Module *Owner);
1886
1887 /// Note that MergedDef is a redefinition of the canonical definition
1888 /// Def, so Def should be visible whenever MergedDef is.
1889 void mergeDefinitionVisibility(NamedDecl *Def, NamedDecl *MergedDef);
1890
1891 /// Take the AST callbacks listener.
1892 std::unique_ptr<ASTReaderListener> takeListener() {
1893 return std::move(Listener);
1894 }
1895
1896 /// Set the AST callbacks listener.
1897 void setListener(std::unique_ptr<ASTReaderListener> Listener) {
1898 this->Listener = std::move(Listener);
1899 }
1900
1901 /// Add an AST callback listener.
1902 ///
1903 /// Takes ownership of \p L.
1904 void addListener(std::unique_ptr<ASTReaderListener> L) {
1905 if (Listener)
1906 L = std::make_unique<ChainedASTReaderListener>(std::move(L),
1907 std::move(Listener));
1908 Listener = std::move(L);
1909 }
1910
1911 /// RAII object to temporarily add an AST callback listener.
1913 ASTReader &Reader;
1914 bool Chained = false;
1915
1916 public:
1917 ListenerScope(ASTReader &Reader, std::unique_ptr<ASTReaderListener> L)
1918 : Reader(Reader) {
1919 auto Old = Reader.takeListener();
1920 if (Old) {
1921 Chained = true;
1922 L = std::make_unique<ChainedASTReaderListener>(std::move(L),
1923 std::move(Old));
1924 }
1925 Reader.setListener(std::move(L));
1926 }
1927
1929 auto New = Reader.takeListener();
1930 if (Chained)
1931 Reader.setListener(static_cast<ChainedASTReaderListener *>(New.get())
1932 ->takeSecond());
1933 }
1934 };
1935
1936 /// Set the AST deserialization listener.
1938 bool TakeOwnership = false);
1939
1940 /// Get the AST deserialization listener.
1942 return DeserializationListener;
1943 }
1944
1945 /// Determine whether this AST reader has a global index.
1946 bool hasGlobalIndex() const { return (bool)GlobalIndex; }
1947
1948 /// Return global module index.
1949 GlobalModuleIndex *getGlobalIndex() { return GlobalIndex.get(); }
1950
1951 /// Reset reader for a reload try.
1952 void resetForReload() { TriedLoadingGlobalIndex = false; }
1953
1954 /// Attempts to load the global index.
1955 ///
1956 /// \returns true if loading the global index has failed for any reason.
1957 bool loadGlobalIndex();
1958
1959 /// Determine whether we tried to load the global index, but failed,
1960 /// e.g., because it is out-of-date or does not exist.
1961 bool isGlobalIndexUnavailable() const;
1962
1963 /// Initializes the ASTContext
1964 void InitializeContext();
1965
1966 /// Update the state of Sema after loading some additional modules.
1967 void UpdateSema();
1968
1969 /// Finalizes the AST reader's state before writing an AST file to
1970 /// disk.
1971 ///
1972 /// This operation may undo temporary state in the AST that should not be
1973 /// emitted.
1974 void finalizeForWriting();
1975
1976 /// Retrieve the module manager.
1977 ModuleManager &getModuleManager() { return ModuleMgr; }
1978 const ModuleManager &getModuleManager() const { return ModuleMgr; }
1979
1980 /// Retrieve the preprocessor.
1981 Preprocessor &getPreprocessor() const { return PP; }
1982
1983 /// Retrieve the name of the original source file name for the primary
1984 /// module file.
1986 return ModuleMgr.getPrimaryModule().OriginalSourceFileName;
1987 }
1988
1989 /// Retrieve the name of the original source file name directly from
1990 /// the AST file, without actually loading the AST file.
1991 static std::string
1992 getOriginalSourceFile(const std::string &ASTFileName, FileManager &FileMgr,
1993 const PCHContainerReader &PCHContainerRdr,
1994 DiagnosticsEngine &Diags);
1995
1996 /// Read the control block for the named AST file.
1997 ///
1998 /// \returns true if an error occurred, false otherwise.
1999 static bool readASTFileControlBlock(
2000 StringRef Filename, FileManager &FileMgr, const ModuleCache &ModCache,
2001 const PCHContainerReader &PCHContainerRdr, bool FindModuleFileExtensions,
2002 ASTReaderListener &Listener, bool ValidateDiagnosticOptions,
2003 unsigned ClientLoadCapabilities = ARR_ConfigurationMismatch |
2005
2006 /// Determine whether the given AST file is acceptable to load into a
2007 /// translation unit with the given language and target options.
2008 static bool isAcceptableASTFile(
2009 StringRef Filename, FileManager &FileMgr, const ModuleCache &ModCache,
2010 const PCHContainerReader &PCHContainerRdr, const LangOptions &LangOpts,
2011 const CodeGenOptions &CGOpts, const TargetOptions &TargetOpts,
2012 const PreprocessorOptions &PPOpts, const HeaderSearchOptions &HSOpts,
2013 StringRef SpecificModuleCachePath,
2014 bool RequireStrictOptionMatches = false);
2015
2016 /// Returns the suggested contents of the predefines buffer,
2017 /// which contains a (typically-empty) subset of the predefines
2018 /// build prior to including the precompiled header.
2019 const std::string &getSuggestedPredefines() { return SuggestedPredefines; }
2020
2021 /// Read a preallocated preprocessed entity from the external source.
2022 ///
2023 /// \returns null if an error occurred that prevented the preprocessed
2024 /// entity from being loaded.
2025 PreprocessedEntity *ReadPreprocessedEntity(unsigned Index) override;
2026
2027 /// Returns a pair of [Begin, End) indices of preallocated
2028 /// preprocessed entities that \p Range encompasses.
2029 std::pair<unsigned, unsigned>
2031
2032 /// Optionally returns true or false if the preallocated preprocessed
2033 /// entity with index \p Index came from file \p FID.
2034 std::optional<bool> isPreprocessedEntityInFileID(unsigned Index,
2035 FileID FID) override;
2036
2037 /// Read a preallocated skipped range from the external source.
2038 SourceRange ReadSkippedRange(unsigned Index) override;
2039
2040 /// Read the header file information for the given file entry.
2042
2044
2045 /// Returns the number of source locations found in the chain.
2046 unsigned getTotalNumSLocs() const {
2047 return TotalNumSLocEntries;
2048 }
2049
2050 /// Returns the number of identifiers found in the chain.
2051 unsigned getTotalNumIdentifiers() const {
2052 return static_cast<unsigned>(IdentifiersLoaded.size());
2053 }
2054
2055 /// Returns the number of macros found in the chain.
2056 unsigned getTotalNumMacros() const {
2057 return static_cast<unsigned>(MacrosLoaded.size());
2058 }
2059
2060 /// Returns the number of types found in the chain.
2061 unsigned getTotalNumTypes() const {
2062 return static_cast<unsigned>(TypesLoaded.size());
2063 }
2064
2065 /// Returns the number of declarations found in the chain.
2066 unsigned getTotalNumDecls() const {
2067 return static_cast<unsigned>(DeclsLoaded.size());
2068 }
2069
2070 /// Returns the number of submodules known.
2071 unsigned getTotalNumSubmodules() const {
2072 return static_cast<unsigned>(SubmodulesLoaded.size());
2073 }
2074
2075 /// Returns the number of selectors found in the chain.
2076 unsigned getTotalNumSelectors() const {
2077 return static_cast<unsigned>(SelectorsLoaded.size());
2078 }
2079
2080 /// Returns the number of preprocessed entities known to the AST
2081 /// reader.
2083 unsigned Result = 0;
2084 for (const auto &M : ModuleMgr)
2085 Result += M.NumPreprocessedEntities;
2086 return Result;
2087 }
2088
2089 /// Resolve a type ID into a type, potentially building a new
2090 /// type.
2092
2093 /// Resolve a local type ID within a given AST file into a type.
2095
2096 /// Map a local type ID within a given AST file into a global type ID.
2099
2100 /// Read a type from the current position in the given record, which
2101 /// was read from the given AST file.
2102 QualType readType(ModuleFile &F, const RecordData &Record, unsigned &Idx) {
2103 if (Idx >= Record.size())
2104 return {};
2105
2106 return getLocalType(F, Record[Idx++]);
2107 }
2108
2109 /// Map from a local declaration ID within a given module to a
2110 /// global declaration ID.
2112
2113 /// Returns true if global DeclID \p ID originated from module \p M.
2114 bool isDeclIDFromModule(GlobalDeclID ID, ModuleFile &M) const;
2115
2116 /// Retrieve the module file that owns the given declaration, or NULL
2117 /// if the declaration is not from a module file.
2118 ModuleFile *getOwningModuleFile(const Decl *D) const;
2120
2121 /// Returns the source location for the decl \p ID.
2123
2124 /// Resolve a declaration ID into a declaration, potentially
2125 /// building a new declaration.
2127 Decl *GetExternalDecl(GlobalDeclID ID) override;
2128
2129 /// Resolve a declaration ID into a declaration. Return 0 if it's not
2130 /// been loaded yet.
2132
2133 /// Reads a declaration with the given local ID in the given module.
2135 return GetDecl(getGlobalDeclID(F, LocalID));
2136 }
2137
2138 /// Reads a declaration with the given local ID in the given module.
2139 ///
2140 /// \returns The requested declaration, casted to the given return type.
2141 template <typename T> T *GetLocalDeclAs(ModuleFile &F, LocalDeclID LocalID) {
2142 return cast_or_null<T>(GetLocalDecl(F, LocalID));
2143 }
2144
2145 /// Map a global declaration ID into the declaration ID used to
2146 /// refer to this declaration within the given module fule.
2147 ///
2148 /// \returns the global ID of the given declaration as known in the given
2149 /// module file.
2151 GlobalDeclID GlobalID);
2152
2153 /// Reads a macro ID from the given position in a record in the
2154 /// given module.
2155 ///
2156 /// \returns The declaration ID read from the record, adjusted to a global
2157 /// Macro ID.
2159 ReadMacroID(ModuleFile &F, const RecordDataImpl &Record, unsigned &Idx);
2160
2161 /// Reads a declaration ID from the given position in a record in the
2162 /// given module.
2163 ///
2164 /// \returns The declaration ID read from the record, adjusted to a global ID.
2166 unsigned &Idx);
2167
2168 /// Reads a declaration from the given position in a record in the
2169 /// given module.
2170 Decl *ReadDecl(ModuleFile &F, const RecordDataImpl &R, unsigned &I) {
2171 return GetDecl(ReadDeclID(F, R, I));
2172 }
2173
2174 /// Reads a declaration from the given position in a record in the
2175 /// given module.
2176 ///
2177 /// \returns The declaration read from this location, casted to the given
2178 /// result type.
2179 template <typename T>
2180 T *ReadDeclAs(ModuleFile &F, const RecordDataImpl &R, unsigned &I) {
2181 return cast_or_null<T>(GetDecl(ReadDeclID(F, R, I)));
2182 }
2183
2184 /// If any redeclarations of \p D have been imported since it was
2185 /// last checked, this digs out those redeclarations and adds them to the
2186 /// redeclaration chain for \p D.
2187 void CompleteRedeclChain(const Decl *D) override;
2188
2189 CXXBaseSpecifier *GetExternalCXXBaseSpecifiers(uint64_t Offset) override;
2190
2191 /// Resolve the offset of a statement into a statement.
2192 ///
2193 /// This operation will read a new statement from the external
2194 /// source each time it is called, and is meant to be used via a
2195 /// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
2196 Stmt *GetExternalDeclStmt(uint64_t Offset) override;
2197
2198 /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
2199 /// specified cursor. Read the abbreviations that are at the top of the block
2200 /// and then leave the cursor pointing into the block.
2201 static llvm::Error ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
2202 unsigned BlockID,
2203 uint64_t *StartOfBlockOffset = nullptr);
2204
2205 bool LoadExternalSpecializations(const Decl *D, bool OnlyPartial) override;
2206
2207 bool
2209 ArrayRef<TemplateArgument> TemplateArgs) override;
2210
2211 /// Finds all the visible declarations with a given name.
2212 /// The current implementation of this method just loads the entire
2213 /// lookup table as unmaterialized references.
2215 DeclarationName Name,
2216 const DeclContext *OriginalDC) override;
2217
2218 /// Read all of the declarations lexically stored in a
2219 /// declaration context.
2220 ///
2221 /// \param DC The declaration context whose declarations will be
2222 /// read.
2223 ///
2224 /// \param IsKindWeWant A predicate indicating which declaration kinds
2225 /// we are interested in.
2226 ///
2227 /// \param Decls Vector that will contain the declarations loaded
2228 /// from the external source. The caller is responsible for merging
2229 /// these declarations with any declarations already stored in the
2230 /// declaration context.
2231 void
2233 llvm::function_ref<bool(Decl::Kind)> IsKindWeWant,
2234 SmallVectorImpl<Decl *> &Decls) override;
2235
2236 /// Get the decls that are contained in a file in the Offset/Length
2237 /// range. \p Length can be 0 to indicate a point at \p Offset instead of
2238 /// a range.
2239 void FindFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
2240 SmallVectorImpl<Decl *> &Decls) override;
2241
2242 /// Notify ASTReader that we started deserialization of
2243 /// a decl or type so until FinishedDeserializing is called there may be
2244 /// decls that are initializing. Must be paired with FinishedDeserializing.
2245 void StartedDeserializing() override;
2246
2247 /// Notify ASTReader that we finished the deserialization of
2248 /// a decl or type. Must be paired with StartedDeserializing.
2249 void FinishedDeserializing() override;
2250
2251 /// Function that will be invoked when we begin parsing a new
2252 /// translation unit involving this external AST source.
2253 ///
2254 /// This function will provide all of the external definitions to
2255 /// the ASTConsumer.
2256 void StartTranslationUnit(ASTConsumer *Consumer) override;
2257
2258 /// Print some statistics about AST usage.
2259 void PrintStats() override;
2260
2261 /// Dump information about the AST reader to standard error.
2262 void dump();
2263
2264 /// Return the amount of memory used by memory buffers, breaking down
2265 /// by heap-backed versus mmap'ed memory.
2266 void getMemoryBufferSizes(MemoryBufferSizes &sizes) const override;
2267
2268 /// Initialize the semantic source with the Sema instance
2269 /// being used to perform semantic analysis on the abstract syntax
2270 /// tree.
2271 void InitializeSema(Sema &S) override;
2272
2273 /// Inform the semantic consumer that Sema is no longer available.
2274 void ForgetSema() override { SemaObj = nullptr; }
2275
2276 /// Retrieve the IdentifierInfo for the named identifier.
2277 ///
2278 /// This routine builds a new IdentifierInfo for the given identifier. If any
2279 /// declarations with this name are visible from translation unit scope, their
2280 /// declarations will be deserialized and introduced into the declaration
2281 /// chain of the identifier.
2282 IdentifierInfo *get(StringRef Name) override;
2283
2284 /// Retrieve an iterator into the set of all identifiers
2285 /// in all loaded AST files.
2287
2288 /// Load the contents of the global method pool for a given
2289 /// selector.
2290 void ReadMethodPool(Selector Sel) override;
2291
2292 /// Load the contents of the global method pool for a given
2293 /// selector if necessary.
2294 void updateOutOfDateSelector(Selector Sel) override;
2295
2296 /// Load the set of namespaces that are known to the external source,
2297 /// which will be used during typo correction.
2299 SmallVectorImpl<NamespaceDecl *> &Namespaces) override;
2300
2302 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) override;
2303
2304 void ReadMismatchingDeleteExpressions(llvm::MapVector<
2305 FieldDecl *, llvm::SmallVector<std::pair<SourceLocation, bool>, 4>> &
2306 Exprs) override;
2307
2309 SmallVectorImpl<VarDecl *> &TentativeDefs) override;
2310
2313
2316
2318
2321
2323 llvm::SmallSetVector<Decl *, 4> &Decls) override;
2324
2326 SmallVectorImpl<std::pair<Selector, SourceLocation>> &Sels) override;
2327
2329 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo>> &WeakIDs) override;
2330
2332 SmallVectorImpl<std::pair<IdentifierInfo *, AsmLabelAttr *>> &ExtnameIDs)
2333 override;
2334
2336
2338 SmallVectorImpl<std::pair<ValueDecl *,
2339 SourceLocation>> &Pending) override;
2340
2342 llvm::MapVector<const FunctionDecl *, std::unique_ptr<LateParsedTemplate>>
2343 &LPTMap) override;
2344
2345 void AssignedLambdaNumbering(CXXRecordDecl *Lambda) override;
2346
2347 /// Load a selector from disk, registering its ID if it exists.
2348 void LoadSelector(Selector Sel);
2349
2352 const SmallVectorImpl<GlobalDeclID> &DeclIDs,
2353 SmallVectorImpl<Decl *> *Decls = nullptr);
2354
2355 /// Report a diagnostic.
2356 DiagnosticBuilder Diag(unsigned DiagID) const;
2357
2358 /// Report a diagnostic.
2359 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) const;
2360
2362 llvm::function_ref<void()> Fn);
2363
2365
2367 unsigned &Idx) {
2369 }
2370
2372 // Note that we are loading an identifier.
2373 Deserializing AnIdentifier(this);
2374
2375 return DecodeIdentifierInfo(ID);
2376 }
2377
2378 IdentifierInfo *getLocalIdentifier(ModuleFile &M, uint64_t LocalID);
2379
2381 uint64_t LocalID);
2382
2383 void resolvePendingMacro(IdentifierInfo *II, const PendingMacroInfo &PMInfo);
2384
2385 /// Retrieve the macro with the given ID.
2387
2388 /// Retrieve the global macro ID corresponding to the given local
2389 /// ID within the given module file.
2391 serialization::MacroID LocalID);
2392
2393 /// Read the source location entry with index ID.
2394 bool ReadSLocEntry(int ID) override;
2395 /// Get the index ID for the loaded SourceLocation offset.
2396 int getSLocEntryID(SourceLocation::UIntTy SLocOffset) override;
2397 /// Try to read the offset of the SLocEntry at the given index in the given
2398 /// module file.
2400 unsigned Index);
2401
2402 /// Retrieve the module import location and module name for the
2403 /// given source manager entry ID.
2404 std::pair<SourceLocation, StringRef> getModuleImportLoc(int ID) override;
2405
2406 /// Retrieve the global submodule ID given a module and its local ID
2407 /// number.
2409 unsigned LocalID) const;
2410
2411 /// Retrieve the submodule that corresponds to a global submodule ID.
2412 Module *getSubmodule(uint32_t GlobalID) override;
2413
2414 /// Retrieve the module that corresponds to the given module ID.
2415 ///
2416 /// Note: overrides method in ExternalASTSource
2417 Module *getModule(unsigned ID) override;
2418
2419 /// Retrieve the module file with a given local ID within the specified
2420 /// ModuleFile.
2421 ModuleFile *getLocalModuleFile(ModuleFile &M, unsigned ID) const;
2422
2423 /// Get an ID for the given module file.
2424 unsigned getModuleFileID(ModuleFile *M);
2425
2426 /// Return a descriptor for the corresponding module.
2427 std::optional<ASTSourceDescriptor> getSourceDescriptor(unsigned ID) override;
2428
2429 ExtKind hasExternalDefinitions(const Decl *D) override;
2430
2431 bool wasThisDeclarationADefinition(const FunctionDecl *FD) override;
2432
2433 /// Retrieve a selector from the given module with its local ID
2434 /// number.
2435 Selector getLocalSelector(ModuleFile &M, unsigned LocalID);
2436
2438
2440 uint32_t GetNumExternalSelectors() override;
2441
2442 Selector ReadSelector(ModuleFile &M, const RecordData &Record, unsigned &Idx) {
2443 return getLocalSelector(M, Record[Idx++]);
2444 }
2445
2446 /// Retrieve the global selector ID that corresponds to this
2447 /// the local selector ID in a given module.
2449 unsigned LocalID) const;
2450
2451 /// Read the contents of a CXXCtorInitializer array.
2452 CXXCtorInitializer **GetExternalCXXCtorInitializers(uint64_t Offset) override;
2453
2454 /// Read a AlignPackInfo from raw form.
2458
2460
2461 /// Read a source location from raw form and return it in its
2462 /// originating module file's source location space.
2463 std::pair<SourceLocation, unsigned>
2467
2468 /// Read a source location from raw form.
2470 if (!MF.ModuleOffsetMap.empty())
2471 ReadModuleOffsetMap(MF);
2472
2473 auto [Loc, ModuleFileIndex] = ReadUntranslatedSourceLocation(Raw);
2474 ModuleFile *OwningModuleFile =
2475 ModuleFileIndex == 0 ? &MF : MF.TransitiveImports[ModuleFileIndex - 1];
2476
2477 assert(!SourceMgr.isLoadedSourceLocation(Loc) &&
2478 "Run out source location space");
2479
2480 return TranslateSourceLocation(*OwningModuleFile, Loc);
2481 }
2482
2483 /// Translate a source location from another module file's source
2484 /// location space into ours.
2486 SourceLocation Loc) const {
2487 if (Loc.isInvalid())
2488 return Loc;
2489
2490 // FIXME: TranslateSourceLocation is not re-enterable. It is problematic
2491 // to call TranslateSourceLocation on a translated source location.
2492 // We either need a method to know whether or not a source location is
2493 // translated or refactor the code to make it clear that
2494 // TranslateSourceLocation won't be called with translated source location.
2495
2496 return Loc.getLocWithOffset(ModuleFile.SLocEntryBaseOffset - 2);
2497 }
2498
2499 /// Read a source location.
2501 const RecordDataImpl &Record,
2502 unsigned &Idx) {
2503 return ReadSourceLocation(ModuleFile, Record[Idx++]);
2504 }
2505
2506 /// Read a FileID.
2508 unsigned &Idx) const {
2509 return TranslateFileID(F, FileID::get(Record[Idx++]));
2510 }
2511
2512 /// Translate a FileID from another module file's FileID space into ours.
2514 assert(FID.ID >= 0 && "Reading non-local FileID.");
2515 if (FID.isInvalid())
2516 return FID;
2517 return FileID::get(F.SLocEntryBaseID + FID.ID - 1);
2518 }
2519
2520 /// Read a source range.
2522 unsigned &Idx);
2523
2524 static llvm::BitVector ReadBitVector(const RecordData &Record,
2525 const StringRef Blob);
2526
2527 // Read a string
2528 static std::string ReadString(const RecordDataImpl &Record, unsigned &Idx);
2529 static StringRef ReadStringBlob(const RecordDataImpl &Record, unsigned &Idx,
2530 StringRef &Blob);
2531
2532 // Read a path
2533 std::string ReadPath(ModuleFile &F, const RecordData &Record, unsigned &Idx);
2534
2535 // Read a path
2536 std::string ReadPath(StringRef BaseDirectory, const RecordData &Record,
2537 unsigned &Idx);
2538 std::string ReadPathBlob(StringRef BaseDirectory, const RecordData &Record,
2539 unsigned &Idx, StringRef &Blob);
2540
2541 /// Read a version tuple.
2542 static VersionTuple ReadVersionTuple(const RecordData &Record, unsigned &Idx);
2543
2545 unsigned &Idx);
2546
2547 /// Reads a statement.
2549
2550 /// Reads an expression.
2552
2553 /// Reads a sub-statement operand during statement reading.
2555 assert(ReadingKind == Read_Stmt &&
2556 "Should be called only during statement reading!");
2557 // Subexpressions are stored from last to first, so the next Stmt we need
2558 // is at the back of the stack.
2559 assert(!StmtStack.empty() && "Read too many sub-statements!");
2560 return StmtStack.pop_back_val();
2561 }
2562
2563 /// Reads a sub-expression operand during statement reading.
2564 Expr *ReadSubExpr();
2565
2566 /// Reads a token out of a record.
2567 Token ReadToken(ModuleFile &M, const RecordDataImpl &Record, unsigned &Idx);
2568
2569 /// Reads the macro record located at the given offset.
2570 MacroInfo *ReadMacroRecord(ModuleFile &F, uint64_t Offset);
2571
2572 /// Determine the global preprocessed entity ID that corresponds to
2573 /// the given local ID within the given module.
2576
2577 /// Add a macro to deserialize its macro directive history.
2578 ///
2579 /// \param II The name of the macro.
2580 /// \param M The module file.
2581 /// \param MacroDirectivesOffset Offset of the serialized macro directive
2582 /// history.
2584 uint32_t MacroDirectivesOffset);
2585
2586 /// Read the set of macros defined by this external macro source.
2587 void ReadDefinedMacros() override;
2588
2589 /// Update an out-of-date identifier.
2590 void updateOutOfDateIdentifier(const IdentifierInfo &II) override;
2591
2592 /// Note that this identifier is up-to-date.
2593 void markIdentifierUpToDate(const IdentifierInfo *II);
2594
2595 /// Load all external visible decls in the given DeclContext.
2596 void completeVisibleDeclsMap(const DeclContext *DC) override;
2597
2598 /// Retrieve the AST context that this AST reader supplements.
2600 assert(ContextObj && "requested AST context when not loading AST");
2601 return *ContextObj;
2602 }
2603
2604 // Contains the IDs for declarations that were requested before we have
2605 // access to a Sema object.
2607
2608 /// Retrieve the semantic analysis object used to analyze the
2609 /// translation unit in which the precompiled header is being
2610 /// imported.
2611 Sema *getSema() { return SemaObj; }
2612
2613 /// Get the identifier resolver used for name lookup / updates
2614 /// in the translation unit scope. We have one of these even if we don't
2615 /// have a Sema object.
2617
2618 /// Retrieve the identifier table associated with the
2619 /// preprocessor.
2621
2622 /// Record that the given ID maps to the given switch-case
2623 /// statement.
2624 void RecordSwitchCaseID(SwitchCase *SC, unsigned ID);
2625
2626 /// Retrieve the switch-case statement with the given ID.
2627 SwitchCase *getSwitchCaseWithID(unsigned ID);
2628
2629 void ClearSwitchCaseIDs();
2630
2631 /// Cursors for comments blocks.
2632 SmallVector<std::pair<llvm::BitstreamCursor,
2634
2635 /// Loads comments ranges.
2636 void ReadComments() override;
2637
2638 /// Visit all the input file infos of the given module file.
2640 serialization::ModuleFile &MF, bool IncludeSystem,
2641 llvm::function_ref<void(const serialization::InputFileInfo &IFI,
2642 bool IsSystem)>
2643 Visitor);
2644
2645 /// Visit all the input files of the given module file.
2647 bool IncludeSystem, bool Complain,
2648 llvm::function_ref<void(const serialization::InputFile &IF,
2649 bool isSystem)> Visitor);
2650
2651 /// Visit all the top-level module maps loaded when building the given module
2652 /// file.
2654 llvm::function_ref<void(FileEntryRef)> Visitor);
2655
2656 bool isProcessingUpdateRecords() { return ProcessingUpdateRecords; }
2657};
2658
2659/// A simple helper class to unpack an integer to bits and consuming
2660/// the bits in order.
2662 constexpr static uint32_t BitsIndexUpbound = 32;
2663
2664public:
2665 BitsUnpacker(uint32_t V) { updateValue(V); }
2666 BitsUnpacker(const BitsUnpacker &) = delete;
2670 ~BitsUnpacker() = default;
2671
2672 void updateValue(uint32_t V) {
2673 Value = V;
2674 CurrentBitsIndex = 0;
2675 }
2676
2677 void advance(uint32_t BitsWidth) { CurrentBitsIndex += BitsWidth; }
2678
2679 bool getNextBit() {
2680 assert(isValid());
2681 return Value & (1 << CurrentBitsIndex++);
2682 }
2683
2684 uint32_t getNextBits(uint32_t Width) {
2685 assert(isValid());
2686 assert(Width < BitsIndexUpbound);
2687 uint32_t Ret = (Value >> CurrentBitsIndex) & ((1 << Width) - 1);
2688 CurrentBitsIndex += Width;
2689 return Ret;
2690 }
2691
2692 bool canGetNextNBits(uint32_t Width) const {
2693 return CurrentBitsIndex + Width < BitsIndexUpbound;
2694 }
2695
2696private:
2697 bool isValid() const { return CurrentBitsIndex < BitsIndexUpbound; }
2698
2699 uint32_t Value;
2700 uint32_t CurrentBitsIndex = ~0;
2701};
2702
2703inline bool shouldSkipCheckingODR(const Decl *D) {
2704 return D->getASTContext().getLangOpts().SkipODRCheckInGMF &&
2705 (D->isFromGlobalModule() || D->isFromHeaderUnit());
2706}
2707
2708/// Calculate a hash value for the primary module name of the given module.
2709/// \returns std::nullopt if M is not a C++ standard module.
2710UnsignedOrNone getPrimaryModuleHash(const Module *M);
2711
2712} // namespace clang
2713
2714#endif // LLVM_CLANG_SERIALIZATION_ASTREADER_H
#define V(N, I)
Defines the Diagnostic-related interfaces.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
llvm::MachO::Record Record
Definition MachO.h:31
Defines the clang::OpenCLOptions class.
Defines the clang::SourceLocation class and associated facilities.
Defines a utilitiy for warning once when close to out of stack space.
C Language Family Type Representation.
Defines version macros and version-related utility functions for Clang.
ASTConsumer - This is an abstract interface that should be implemented by clients that read ASTs.
Definition ASTConsumer.h:35
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:229
const LangOptions & getLangOpts() const
Definition ASTContext.h:961
Abstract interface for callback invocations by the ASTReader.
Definition ASTReader.h:117
virtual bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, StringRef ModuleFilename, StringRef ContextHash, bool Complain)
Receives the header search options.
Definition ASTReader.h:186
virtual void ReadModuleMapFile(StringRef ModuleMapPath)
Definition ASTReader.h:130
virtual bool needsInputFileVisitation()
Returns true if this ASTReaderListener wants to receive the input files of the AST file via visitInpu...
Definition ASTReader.h:232
virtual bool ReadDiagnosticOptions(DiagnosticOptions &DiagOpts, StringRef ModuleFilename, bool Complain)
Receives the diagnostic options.
Definition ASTReader.h:164
virtual bool ReadTargetOptions(const TargetOptions &TargetOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences)
Receives the target options.
Definition ASTReader.h:154
virtual bool visitInputFile(StringRef Filename, bool isSystem, bool isOverridden, bool isExplicitModule)
if needsInputFileVisitation returns true, this is called for each non-system input file of the AST Fi...
Definition ASTReader.h:244
virtual bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, bool Complain)
Receives the header search paths.
Definition ASTReader.h:201
virtual bool ReadFileSystemOptions(const FileSystemOptions &FSOpts, bool Complain)
Receives the file system options.
Definition ASTReader.h:173
virtual void visitModuleFile(ModuleFileName Filename, serialization::ModuleKind Kind, bool DirectlyImported)
This is called for each AST file loaded.
Definition ASTReader.h:226
virtual bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, StringRef ModuleFilename, bool ReadMacros, bool Complain, std::string &SuggestedPredefines)
Receives the preprocessor options.
Definition ASTReader.h:214
virtual void readModuleFileExtension(const ModuleFileExtensionMetadata &Metadata)
Indicates that a particular module file extension has been read.
Definition ASTReader.h:271
virtual bool ReadLanguageOptions(const LangOptions &LangOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences)
Receives the language options.
Definition ASTReader.h:135
virtual bool visitInputFileAsRequested(StringRef FilenameAsRequested, StringRef Filename, bool isSystem, bool isOverridden, time_t StoredTime, bool isExplicitModule)
Similiar to member function of visitInputFile but should be defined when there is a distinction betwe...
Definition ASTReader.h:255
virtual void visitImport(StringRef ModuleName, StringRef Filename)
If needsImportVisitation returns true, this is called for each AST file imported by this AST file.
Definition ASTReader.h:268
virtual bool needsImportVisitation() const
Returns true if this ASTReaderListener wants to receive the imports of the AST file via visitImport,...
Definition ASTReader.h:264
virtual bool ReadFullVersionInformation(StringRef FullVersion)
Receives the full Clang version information.
Definition ASTReader.h:125
virtual void ReadModuleName(StringRef ModuleName)
Definition ASTReader.h:129
virtual void ReadCounter(const serialization::ModuleFile &M, uint32_t Value)
Receives COUNTER value.
Definition ASTReader.h:222
virtual bool needsSystemInputFileVisitation()
Returns true if this ASTReaderListener wants to receive the system input files of the AST file via vi...
Definition ASTReader.h:236
virtual bool ReadCodeGenOptions(const CodeGenOptions &CGOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences)
Receives the codegen options.
Definition ASTReader.h:144
ListenerScope(ASTReader &Reader, std::unique_ptr< ASTReaderListener > L)
Definition ASTReader.h:1917
bool operator==(const ModuleDeclIterator &RHS) const
Definition ASTReader.h:1691
ModuleDeclIterator(ASTReader *Reader, ModuleFile *Mod, const serialization::unaligned_decl_id_t *Pos)
Definition ASTReader.h:1680
Reads an AST files chain containing the contents of a translation unit.
Definition ASTReader.h:427
std::optional< bool > isPreprocessedEntityInFileID(unsigned Index, FileID FID) override
Optionally returns true or false if the preallocated preprocessed entity with index Index came from f...
PreprocessedEntity * ReadPreprocessedEntity(unsigned Index) override
Read a preallocated preprocessed entity from the external source.
void markIdentifierUpToDate(const IdentifierInfo *II)
Note that this identifier is up-to-date.
void visitTopLevelModuleMaps(serialization::ModuleFile &MF, llvm::function_ref< void(FileEntryRef)> Visitor)
Visit all the top-level module maps loaded when building the given module file.
friend class ASTWriter
Definition ASTReader.h:435
void setDeserializationListener(ASTDeserializationListener *Listener, bool TakeOwnership=false)
Set the AST deserialization listener.
SmallVectorImpl< uint64_t > RecordDataImpl
Definition ASTReader.h:443
serialization::SubmoduleID getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) const
Retrieve the global submodule ID given a module and its local ID number.
ExtKind hasExternalDefinitions(const Decl *D) override
IdentifierTable & getIdentifierTable()
Retrieve the identifier table associated with the preprocessor.
SourceLocationEncoding::RawLocEncoding RawLocEncoding
Definition ASTReader.h:2459
ModuleManager & getModuleManager()
Retrieve the module manager.
Definition ASTReader.h:1977
ASTReader & operator=(const ASTReader &)=delete
bool isDeclIDFromModule(GlobalDeclID ID, ModuleFile &M) const
Returns true if global DeclID ID originated from module M.
friend class ASTIdentifierIterator
Definition ASTReader.h:432
bool ReadSLocEntry(int ID) override
Read the source location entry with index ID.
void RecordSwitchCaseID(SwitchCase *SC, unsigned ID)
Record that the given ID maps to the given switch-case statement.
DiagnosticBuilder Diag(unsigned DiagID) const
Report a diagnostic.
unsigned getTotalNumPreprocessedEntities() const
Returns the number of preprocessed entities known to the AST reader.
Definition ASTReader.h:2082
ASTContext & getContext()
Retrieve the AST context that this AST reader supplements.
Definition ASTReader.h:2599
Decl * ReadDecl(ModuleFile &F, const RecordDataImpl &R, unsigned &I)
Reads a declaration from the given position in a record in the given module.
Definition ASTReader.h:2170
ModuleManager::ModuleIterator ModuleIterator
Definition ASTReader.h:476
static std::string ReadString(const RecordDataImpl &Record, unsigned &Idx)
void ReadDeclsToCheckForDeferredDiags(llvm::SmallSetVector< Decl *, 4 > &Decls) override
Read the set of decls to be checked for deferred diags.
void InitializeSema(Sema &S) override
Initialize the semantic source with the Sema instance being used to perform semantic analysis on the ...
LoadFailureCapabilities
Flags that indicate what kind of AST loading failures the client of the AST reader can directly handl...
Definition ASTReader.h:1819
@ ARR_Missing
The client can handle an AST file that cannot load because it is missing.
Definition ASTReader.h:1825
@ ARR_None
The client can't handle any AST loading failures.
Definition ASTReader.h:1821
@ ARR_ConfigurationMismatch
The client can handle an AST file that cannot load because it's compiled configuration doesn't match ...
Definition ASTReader.h:1838
@ ARR_OutOfDate
The client can handle an AST file that cannot load because it is out-of-date relative to its input fi...
Definition ASTReader.h:1829
@ ARR_TreatModuleWithErrorsAsOutOfDate
If a module file is marked with errors treat it as out-of-date so the caller can rebuild it.
Definition ASTReader.h:1842
@ ARR_VersionMismatch
The client can handle an AST file that cannot load because it was built with a different version of C...
Definition ASTReader.h:1833
void ReadMismatchingDeleteExpressions(llvm::MapVector< FieldDecl *, llvm::SmallVector< std::pair< SourceLocation, bool >, 4 > > &Exprs) override
void FindFileRegionDecls(FileID File, unsigned Offset, unsigned Length, SmallVectorImpl< Decl * > &Decls) override
Get the decls that are contained in a file in the Offset/Length range.
std::string ReadPathBlob(StringRef BaseDirectory, const RecordData &Record, unsigned &Idx, StringRef &Blob)
SourceRange ReadSkippedRange(unsigned Index) override
Read a preallocated skipped range from the external source.
serialization::TypeID getGlobalTypeID(ModuleFile &F, serialization::LocalTypeID LocalID) const
Map a local type ID within a given AST file into a global type ID.
const std::string & getSuggestedPredefines()
Returns the suggested contents of the predefines buffer, which contains a (typically-empty) subset of...
Definition ASTReader.h:2019
void dump()
Dump information about the AST reader to standard error.
MacroInfo * ReadMacroRecord(ModuleFile &F, uint64_t Offset)
Reads the macro record located at the given offset.
SmallVector< std::pair< llvm::BitstreamCursor, serialization::ModuleFile * >, 8 > CommentsCursors
Cursors for comments blocks.
Definition ASTReader.h:2633
Selector getLocalSelector(ModuleFile &M, unsigned LocalID)
Retrieve a selector from the given module with its local ID number.
void FindExternalLexicalDecls(const DeclContext *DC, llvm::function_ref< bool(Decl::Kind)> IsKindWeWant, SmallVectorImpl< Decl * > &Decls) override
Read all of the declarations lexically stored in a declaration context.
ModuleFile * getOwningModuleFile(const Decl *D) const
Retrieve the module file that owns the given declaration, or NULL if the declaration is not from a mo...
std::optional< ASTSourceDescriptor > getSourceDescriptor(unsigned ID) override
Return a descriptor for the corresponding module.
const serialization::reader::DeclContextLookupTable * getLoadedLookupTables(DeclContext *Primary) const
Get the loaded lookup tables for Primary, if any.
T * ReadDeclAs(ModuleFile &F, const RecordDataImpl &R, unsigned &I)
Reads a declaration from the given position in a record in the given module.
Definition ASTReader.h:2180
QualType getLocalType(ModuleFile &F, serialization::LocalTypeID LocalID)
Resolve a local type ID within a given AST file into a type.
void ReadExtnameUndeclaredIdentifiers(SmallVectorImpl< std::pair< IdentifierInfo *, AsmLabelAttr * > > &ExtnameIDs) override
Read the set of pragma redefine_extname'd, undeclared identifiers known to the external Sema source.
friend class LocalDeclID
Definition ASTReader.h:440
Sema::AlignPackInfo ReadAlignPackInfo(uint32_t Raw) const
Read a AlignPackInfo from raw form.
Definition ASTReader.h:2455
QualType readType(ModuleFile &F, const RecordData &Record, unsigned &Idx)
Read a type from the current position in the given record, which was read from the given AST file.
Definition ASTReader.h:2102
void SetGloballyVisibleDecls(IdentifierInfo *II, const SmallVectorImpl< GlobalDeclID > &DeclIDs, SmallVectorImpl< Decl * > *Decls=nullptr)
Set the globally-visible declarations associated with the given identifier.
serialization::ModuleKind ModuleKind
Definition ASTReader.h:474
bool loadGlobalIndex()
Attempts to load the global index.
void ReadComments() override
Loads comments ranges.
SourceManager & getSourceManager() const
Definition ASTReader.h:1809
const serialization::reader::ModuleLocalLookupTable * getModuleLocalLookupTables(DeclContext *Primary) const
SourceLocation getSourceLocationForDeclID(GlobalDeclID ID)
Returns the source location for the decl ID.
const CodeGenOptions & getCodeGenOpts() const
Definition ASTReader.h:1812
void makeModuleVisible(Module *Mod, Module::NameVisibilityKind NameVisibility, SourceLocation ImportLoc)
Make the entities in the given module and any of its (non-explicit) submodules visible to name lookup...
unsigned getTotalNumSubmodules() const
Returns the number of submodules known.
Definition ASTReader.h:2071
ASTReader(const ASTReader &)=delete
SourceRange ReadSourceRange(ModuleFile &F, const RecordData &Record, unsigned &Idx)
Read a source range.
bool LoadExternalSpecializations(const Decl *D, bool OnlyPartial) override
Load all the external specializations for the Decl.
ASTReadResult ReadASTCore(ModuleFileName FileName, ModuleKind Type, SourceLocation ImportLoc, ModuleFile *ImportedBy, SmallVectorImpl< ImportedModule > &Loaded, off_t ExpectedSize, time_t ExpectedModTime, ASTFileSignature ExpectedSignature, unsigned ClientLoadCapabilities)
void finalizeForWriting()
Finalizes the AST reader's state before writing an AST file to disk.
Sema * getSema()
Retrieve the semantic analysis object used to analyze the translation unit in which the precompiled h...
Definition ASTReader.h:2611
static std::string ResolveImportedPathAndAllocate(SmallString< 0 > &Buf, StringRef Path, ModuleFile &ModF)
Resolve Path in the context of module file M.
friend class ASTDeclMerger
Types of AST files.
Definition ASTReader.h:430
static StringRef ReadStringBlob(const RecordDataImpl &Record, unsigned &Idx, StringRef &Blob)
unsigned getTotalNumIdentifiers() const
Returns the number of identifiers found in the chain.
Definition ASTReader.h:2051
CXXCtorInitializer ** GetExternalCXXCtorInitializers(uint64_t Offset) override
Read the contents of a CXXCtorInitializer array.
void visitInputFileInfos(serialization::ModuleFile &MF, bool IncludeSystem, llvm::function_ref< void(const serialization::InputFileInfo &IFI, bool IsSystem)> Visitor)
Visit all the input file infos of the given module file.
const ModuleManager & getModuleManager() const
Definition ASTReader.h:1978
unsigned getTotalNumSLocs() const
Returns the number of source locations found in the chain.
Definition ASTReader.h:2046
void StartTranslationUnit(ASTConsumer *Consumer) override
Function that will be invoked when we begin parsing a new translation unit involving this external AS...
LocalDeclID mapGlobalIDToModuleFileGlobalID(ModuleFile &M, GlobalDeclID GlobalID)
Map a global declaration ID into the declaration ID used to refer to this declaration within the give...
void resolvePendingMacro(IdentifierInfo *II, const PendingMacroInfo &PMInfo)
void ReadTentativeDefinitions(SmallVectorImpl< VarDecl * > &TentativeDefs) override
Read the set of tentative definitions known to the external Sema source.
Decl * GetExternalDecl(GlobalDeclID ID) override
Resolve a declaration ID into a declaration, potentially building a new declaration.
serialization::MacroID ReadMacroID(ModuleFile &F, const RecordDataImpl &Record, unsigned &Idx)
Reads a macro ID from the given position in a record in the given module.
GlobalDeclID ReadDeclID(ModuleFile &F, const RecordDataImpl &Record, unsigned &Idx)
Reads a declaration ID from the given position in a record in the given module.
llvm::Expected< SourceLocation::UIntTy > readSLocOffset(ModuleFile *F, unsigned Index)
Try to read the offset of the SLocEntry at the given index in the given module file.
void forEachImportedKeyDecl(const Decl *D, Fn Visit)
Run a callback on each imported key declaration of D.
Definition ASTReader.h:1492
~ASTReader() override
bool haveUnloadedSpecializations(const Decl *D) const
If we have any unloaded specialization for D.
friend class TypeLocReader
Definition ASTReader.h:439
friend class PCHValidator
Definition ASTReader.h:436
Stmt * ReadSubStmt()
Reads a sub-statement operand during statement reading.
Definition ASTReader.h:2554
void CompleteRedeclChain(const Decl *D) override
If any redeclarations of D have been imported since it was last checked, this digs out those redeclar...
Expr * ReadSubExpr()
Reads a sub-expression operand during statement reading.
SourceLocation TranslateSourceLocation(ModuleFile &ModuleFile, SourceLocation Loc) const
Translate a source location from another module file's source location space into ours.
Definition ASTReader.h:2485
static llvm::Error ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID, uint64_t *StartOfBlockOffset=nullptr)
ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the specified cursor.
void SetIdentifierInfo(serialization::IdentifierID ID, IdentifierInfo *II)
std::pair< unsigned, unsigned > findPreprocessedEntitiesInRange(SourceRange Range) override
Returns a pair of [Begin, End) indices of preallocated preprocessed entities that Range encompasses.
IdentifierInfo * get(StringRef Name) override
Retrieve the IdentifierInfo for the named identifier.
IdentifierInfo * getLocalIdentifier(ModuleFile &M, uint64_t LocalID)
void visitInputFiles(serialization::ModuleFile &MF, bool IncludeSystem, bool Complain, llvm::function_ref< void(const serialization::InputFile &IF, bool isSystem)> Visitor)
Visit all the input files of the given module file.
Module * getModule(unsigned ID) override
Retrieve the module that corresponds to the given module ID.
friend class ASTDeclReader
Definition ASTReader.h:431
llvm::iterator_range< ModuleDeclIterator > getModuleFileLevelDecls(ModuleFile &Mod)
Stmt * GetExternalDeclStmt(uint64_t Offset) override
Resolve the offset of a statement into a statement.
Selector GetExternalSelector(serialization::SelectorID ID) override
Resolve a selector ID into a selector.
unsigned getTotalNumSelectors() const
Returns the number of selectors found in the chain.
Definition ASTReader.h:2076
MacroInfo * getMacro(serialization::MacroID ID)
Retrieve the macro with the given ID.
void ReadUndefinedButUsed(llvm::MapVector< NamedDecl *, SourceLocation > &Undefined) override
Load the set of used but not defined functions or variables with internal linkage,...
void ReadDelegatingConstructors(SmallVectorImpl< CXXConstructorDecl * > &Decls) override
Read the set of delegating constructors known to the external Sema source.
unsigned getTotalNumTypes() const
Returns the number of types found in the chain.
Definition ASTReader.h:2061
QualType GetType(serialization::TypeID ID)
Resolve a type ID into a type, potentially building a new type.
void addPendingMacro(IdentifierInfo *II, ModuleFile *M, uint32_t MacroDirectivesOffset)
Add a macro to deserialize its macro directive history.
GlobalDeclID getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const
Map from a local declaration ID within a given module to a global declaration ID.
Expr * ReadExpr(ModuleFile &F)
Reads an expression.
void ReadWeakUndeclaredIdentifiers(SmallVectorImpl< std::pair< IdentifierInfo *, WeakInfo > > &WeakIDs) override
Read the set of weak, undeclared identifiers known to the external Sema source.
void completeVisibleDeclsMap(const DeclContext *DC) override
Load all external visible decls in the given DeclContext.
void AssignedLambdaNumbering(CXXRecordDecl *Lambda) override
Notify the external source that a lambda was assigned a mangling number.
void ReadUnusedLocalTypedefNameCandidates(llvm::SmallSetVector< const TypedefNameDecl *, 4 > &Decls) override
Read the set of potentially unused typedefs known to the source.
IdentifierResolver & getIdResolver()
Get the identifier resolver used for name lookup / updates in the translation unit scope.
static bool readASTFileControlBlock(StringRef Filename, FileManager &FileMgr, const ModuleCache &ModCache, const PCHContainerReader &PCHContainerRdr, bool FindModuleFileExtensions, ASTReaderListener &Listener, bool ValidateDiagnosticOptions, unsigned ClientLoadCapabilities=ARR_ConfigurationMismatch|ARR_OutOfDate)
Read the control block for the named AST file.
Module * getSubmodule(uint32_t GlobalID) override
Retrieve the submodule that corresponds to a global submodule ID.
void ReadExtVectorDecls(SmallVectorImpl< TypedefNameDecl * > &Decls) override
Read the set of ext_vector type declarations known to the external Sema source.
SmallVector< GlobalDeclID, 16 > PreloadedDeclIDs
Definition ASTReader.h:2606
std::pair< SourceLocation, StringRef > getModuleImportLoc(int ID) override
Retrieve the module import location and module name for the given source manager entry ID.
void ReadUnusedFileScopedDecls(SmallVectorImpl< const DeclaratorDecl * > &Decls) override
Read the set of unused file-scope declarations known to the external Sema source.
void ReadReferencedSelectors(SmallVectorImpl< std::pair< Selector, SourceLocation > > &Sels) override
Read the set of referenced selectors known to the external Sema source.
Selector DecodeSelector(serialization::SelectorID Idx)
StringRef getOriginalSourceFile()
Retrieve the name of the original source file name for the primary module file.
Definition ASTReader.h:1985
std::string ReadPath(ModuleFile &F, const RecordData &Record, unsigned &Idx)
ASTDeserializationListener * getDeserializationListener()
Get the AST deserialization listener.
Definition ASTReader.h:1941
void addListener(std::unique_ptr< ASTReaderListener > L)
Add an AST callback listener.
Definition ASTReader.h:1904
unsigned getModuleFileID(ModuleFile *M)
Get an ID for the given module file.
Decl * getKeyDeclaration(Decl *D)
Returns the first key declaration for the given declaration.
Definition ASTReader.h:1476
bool FindExternalVisibleDeclsByName(const DeclContext *DC, DeclarationName Name, const DeclContext *OriginalDC) override
Finds all the visible declarations with a given name.
void setListener(std::unique_ptr< ASTReaderListener > Listener)
Set the AST callbacks listener.
Definition ASTReader.h:1897
Selector ReadSelector(ModuleFile &M, const RecordData &Record, unsigned &Idx)
Definition ASTReader.h:2442
ModuleManager::ModuleReverseIterator ModuleReverseIterator
Definition ASTReader.h:478
IdentifierInfo * DecodeIdentifierInfo(serialization::IdentifierID ID)
ASTReadResult
The result of reading the control block of an AST file, which can fail for various reasons.
Definition ASTReader.h:447
@ Success
The control block was read successfully.
Definition ASTReader.h:450
@ ConfigurationMismatch
The AST file was written with a different language/target configuration.
Definition ASTReader.h:467
@ OutOfDate
The AST file is out-of-date relative to its input files, and needs to be regenerated.
Definition ASTReader.h:460
@ Failure
The AST file itself appears corrupted.
Definition ASTReader.h:453
@ VersionMismatch
The AST file was written by a different version of Clang.
Definition ASTReader.h:463
@ HadErrors
The AST file has errors.
Definition ASTReader.h:470
@ Missing
The AST file was missing.
Definition ASTReader.h:456
static VersionTuple ReadVersionTuple(const RecordData &Record, unsigned &Idx)
Read a version tuple.
SmallString< 0 > & getPathBuf()
Get the buffer for resolving paths.
Definition ASTReader.h:1453
Token ReadToken(ModuleFile &M, const RecordDataImpl &Record, unsigned &Idx)
Reads a token out of a record.
SwitchCase * getSwitchCaseWithID(unsigned ID)
Retrieve the switch-case statement with the given ID.
serialization::IdentifierID getGlobalIdentifierID(ModuleFile &M, uint64_t LocalID)
FileID TranslateFileID(ModuleFile &F, FileID FID) const
Translate a FileID from another module file's FileID space into ours.
Definition ASTReader.h:2513
void ReadLateParsedTemplates(llvm::MapVector< const FunctionDecl *, std::unique_ptr< LateParsedTemplate > > &LPTMap) override
Read the set of late parsed template functions for this source.
IdentifierIterator * getIdentifiers() override
Retrieve an iterator into the set of all identifiers in all loaded AST files.
serialization::ModuleManager ModuleManager
Definition ASTReader.h:475
void ReadUsedVTables(SmallVectorImpl< ExternalVTableUse > &VTables) override
Read the set of used vtables known to the external Sema source.
bool isGlobalIndexUnavailable() const
Determine whether we tried to load the global index, but failed, e.g., because it is out-of-date or d...
uint32_t GetNumExternalSelectors() override
Returns the number of selectors known to the external AST source.
static TemporarilyOwnedStringRef ResolveImportedPath(SmallString< 0 > &Buf, StringRef Path, ModuleFile &ModF)
Resolve Path in the context of module file M.
void updateOutOfDateSelector(Selector Sel) override
Load the contents of the global method pool for a given selector if necessary.
Decl * GetExistingDecl(GlobalDeclID ID)
Resolve a declaration ID into a declaration.
Stmt * ReadStmt(ModuleFile &F)
Reads a statement.
static llvm::BitVector ReadBitVector(const RecordData &Record, const StringRef Blob)
ModuleFile * getLocalModuleFile(ModuleFile &M, unsigned ID) const
Retrieve the module file with a given local ID within the specified ModuleFile.
SourceLocation ReadSourceLocation(ModuleFile &ModuleFile, const RecordDataImpl &Record, unsigned &Idx)
Read a source location.
Definition ASTReader.h:2500
ASTReader(Preprocessor &PP, ModuleCache &ModCache, ASTContext *Context, const PCHContainerReader &PCHContainerRdr, const CodeGenOptions &CodeGenOpts, ArrayRef< std::shared_ptr< ModuleFileExtension > > Extensions, StringRef isysroot="", DisableValidationForModuleKind DisableValidationKind=DisableValidationForModuleKind::None, bool AllowASTWithCompilerErrors=false, bool AllowConfigurationMismatch=false, bool ValidateSystemInputs=false, bool ForceValidateUserInputs=true, bool ValidateASTInputFilesContent=false, bool UseGlobalIndex=true, std::unique_ptr< llvm::Timer > ReadTimer={})
Load the AST file and validate its contents against the given Preprocessor.
void ForgetSema() override
Inform the semantic consumer that Sema is no longer available.
Definition ASTReader.h:2274
DiagnosticsEngine & getDiags() const
Definition ASTReader.h:1811
void LoadSelector(Selector Sel)
Load a selector from disk, registering its ID if it exists.
void ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag)
void makeNamesVisible(const HiddenNames &Names, Module *Owner)
Make the names within this set of hidden names visible.
void UpdateSema()
Update the state of Sema after loading some additional modules.
Decl * GetDecl(GlobalDeclID ID)
Resolve a declaration ID into a declaration, potentially building a new declaration.
Decl * GetLocalDecl(ModuleFile &F, LocalDeclID LocalID)
Reads a declaration with the given local ID in the given module.
Definition ASTReader.h:2134
bool isProcessingUpdateRecords()
Definition ASTReader.h:2656
T * GetLocalDeclAs(ModuleFile &F, LocalDeclID LocalID)
Reads a declaration with the given local ID in the given module.
Definition ASTReader.h:2141
int getSLocEntryID(SourceLocation::UIntTy SLocOffset) override
Get the index ID for the loaded SourceLocation offset.
SourceLocation ReadSourceLocation(ModuleFile &MF, RawLocEncoding Raw) const
Read a source location from raw form.
Definition ASTReader.h:2469
void ReadPendingInstantiations(SmallVectorImpl< std::pair< ValueDecl *, SourceLocation > > &Pending) override
Read the set of pending instantiations known to the external Sema source.
Preprocessor & getPreprocessor() const
Retrieve the preprocessor.
Definition ASTReader.h:1981
serialization::reader::LazySpecializationInfoLookupTable * getLoadedSpecializationsLookupTables(const Decl *D, bool IsPartial)
Get the loaded specializations lookup tables for D, if any.
CXXTemporary * ReadCXXTemporary(ModuleFile &F, const RecordData &Record, unsigned &Idx)
void ReadKnownNamespaces(SmallVectorImpl< NamespaceDecl * > &Namespaces) override
Load the set of namespaces that are known to the external source, which will be used during typo corr...
const Decl * getKeyDeclaration(const Decl *D)
Definition ASTReader.h:1486
ModuleManager::ModuleConstIterator ModuleConstIterator
Definition ASTReader.h:477
std::pair< SourceLocation, unsigned > ReadUntranslatedSourceLocation(RawLocEncoding Raw) const
Read a source location from raw form and return it in its originating module file's source location s...
Definition ASTReader.h:2464
void PrintStats() override
Print some statistics about AST usage.
static bool isAcceptableASTFile(StringRef Filename, FileManager &FileMgr, const ModuleCache &ModCache, const PCHContainerReader &PCHContainerRdr, const LangOptions &LangOpts, const CodeGenOptions &CGOpts, const TargetOptions &TargetOpts, const PreprocessorOptions &PPOpts, const HeaderSearchOptions &HSOpts, StringRef SpecificModuleCachePath, bool RequireStrictOptionMatches=false)
Determine whether the given AST file is acceptable to load into a translation unit with the given lan...
void mergeDefinitionVisibility(NamedDecl *Def, NamedDecl *MergedDef)
Note that MergedDef is a redefinition of the canonical definition Def, so Def should be visible whene...
serialization::SelectorID getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const
Retrieve the global selector ID that corresponds to this the local selector ID in a given module.
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
friend class ASTRecordReader
Definition ASTReader.h:433
SmallVector< uint64_t, 64 > RecordData
Definition ASTReader.h:442
unsigned getTotalNumMacros() const
Returns the number of macros found in the chain.
Definition ASTReader.h:2056
FileID ReadFileID(ModuleFile &F, const RecordDataImpl &Record, unsigned &Idx) const
Read a FileID.
Definition ASTReader.h:2507
void StartedDeserializing() override
Notify ASTReader that we started deserialization of a decl or type so until FinishedDeserializing is ...
serialization::MacroID getGlobalMacroID(ModuleFile &M, serialization::MacroID LocalID)
Retrieve the global macro ID corresponding to the given local ID within the given module file.
void ReadMethodPool(Selector Sel) override
Load the contents of the global method pool for a given selector.
void InitializeContext()
Initializes the ASTContext.
CXXBaseSpecifier * GetExternalCXXBaseSpecifiers(uint64_t Offset) override
Resolve the offset of a set of C++ base specifiers in the decl stream into an array of specifiers.
std::unique_ptr< ASTReaderListener > takeListener()
Take the AST callbacks listener.
Definition ASTReader.h:1892
const serialization::reader::DeclContextLookupTable * getTULocalLookupTables(DeclContext *Primary) const
void resetForReload()
Reset reader for a reload try.
Definition ASTReader.h:1952
FileManager & getFileManager() const
Definition ASTReader.h:1810
unsigned getTotalNumDecls() const
Returns the number of declarations found in the chain.
Definition ASTReader.h:2066
bool wasThisDeclarationADefinition(const FunctionDecl *FD) override
True if this function declaration was a definition before in its own module.
friend class ASTUnit
Definition ASTReader.h:434
void FinishedDeserializing() override
Notify ASTReader that we finished the deserialization of a decl or type.
IdentifierInfo * readIdentifier(ModuleFile &M, const RecordData &Record, unsigned &Idx)
Definition ASTReader.h:2366
void updateOutOfDateIdentifier(const IdentifierInfo &II) override
Update an out-of-date identifier.
ASTReadResult ReadAST(ModuleFileName FileName, ModuleKind Type, SourceLocation ImportLoc, unsigned ClientLoadCapabilities, ModuleFile **NewLoadedModuleFile=nullptr)
Load the AST file designated by the given file name.
void ReadDefinedMacros() override
Read the set of macros defined by this external macro source.
GlobalModuleIndex * getGlobalIndex()
Return global module index.
Definition ASTReader.h:1949
IdentifierInfo * GetIdentifier(serialization::IdentifierID ID) override
Return the identifier associated with the given ID number.
Definition ASTReader.h:2371
HeaderFileInfo GetHeaderFileInfo(FileEntryRef FE) override
Read the header file information for the given file entry.
serialization::ModuleFile ModuleFile
Definition ASTReader.h:473
bool hasGlobalIndex() const
Determine whether this AST reader has a global index.
Definition ASTReader.h:1946
serialization::PreprocessedEntityID getGlobalPreprocessedEntityID(ModuleFile &M, serialization::PreprocessedEntityID LocalID) const
Determine the global preprocessed entity ID that corresponds to the given local ID within the given m...
An object for streaming information from a record.
BitsUnpacker operator=(const BitsUnpacker &)=delete
uint32_t getNextBits(uint32_t Width)
Definition ASTReader.h:2684
void advance(uint32_t BitsWidth)
Definition ASTReader.h:2677
bool canGetNextNBits(uint32_t Width) const
Definition ASTReader.h:2692
BitsUnpacker(BitsUnpacker &&)=delete
BitsUnpacker(const BitsUnpacker &)=delete
void updateValue(uint32_t V)
Definition ASTReader.h:2672
BitsUnpacker operator=(BitsUnpacker &&)=delete
BitsUnpacker(uint32_t V)
Definition ASTReader.h:2665
~BitsUnpacker()=default
Represents a base class of a C++ class.
Definition DeclCXX.h:146
Represents a C++ base or member initializer.
Definition DeclCXX.h:2385
Represents a C++ struct/union/class.
Definition DeclCXX.h:258
Represents a C++ temporary.
Definition ExprCXX.h:1463
Simple wrapper class for chaining listeners.
Definition ASTReader.h:276
void ReadCounter(const serialization::ModuleFile &M, uint32_t Value) override
Receives COUNTER value.
bool visitInputFile(StringRef Filename, bool isSystem, bool isOverridden, bool isExplicitModule) override
if needsInputFileVisitation returns true, this is called for each non-system input file of the AST Fi...
bool ReadCodeGenOptions(const CodeGenOptions &CGOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the codegen options.
std::unique_ptr< ASTReaderListener > takeSecond()
Definition ASTReader.h:287
bool ReadFullVersionInformation(StringRef FullVersion) override
Receives the full Clang version information.
bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, StringRef ModuleFilename, StringRef ContextHash, bool Complain) override
Receives the header search options.
bool ReadFileSystemOptions(const FileSystemOptions &FSOpts, bool Complain) override
Receives the file system options.
std::unique_ptr< ASTReaderListener > takeFirst()
Definition ASTReader.h:286
void ReadModuleMapFile(StringRef ModuleMapPath) override
bool ReadLanguageOptions(const LangOptions &LangOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the language options.
void visitModuleFile(ModuleFileName Filename, serialization::ModuleKind Kind, bool DirectlyImported) override
This is called for each AST file loaded.
bool ReadTargetOptions(const TargetOptions &TargetOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the target options.
void ReadModuleName(StringRef ModuleName) override
bool needsInputFileVisitation() override
Returns true if this ASTReaderListener wants to receive the input files of the AST file via visitInpu...
bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, StringRef ModuleFilename, bool ReadMacros, bool Complain, std::string &SuggestedPredefines) override
Receives the preprocessor options.
ChainedASTReaderListener(std::unique_ptr< ASTReaderListener > First, std::unique_ptr< ASTReaderListener > Second)
Takes ownership of First and Second.
Definition ASTReader.h:282
void readModuleFileExtension(const ModuleFileExtensionMetadata &Metadata) override
Indicates that a particular module file extension has been read.
bool needsSystemInputFileVisitation() override
Returns true if this ASTReaderListener wants to receive the system input files of the AST file via vi...
bool ReadDiagnosticOptions(DiagnosticOptions &DiagOpts, StringRef ModuleFilename, bool Complain) override
Receives the diagnostic options.
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
A map from continuous integer ranges to some value, with a very specialized interface.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition DeclBase.h:1462
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
bool isFromGlobalModule() const
Whether this declaration comes from global module.
ASTContext & getASTContext() const LLVM_READONLY
Definition DeclBase.cpp:547
Kind
Lists the kind of concrete classes of Decl.
Definition DeclBase.h:89
bool isFromASTFile() const
Determine whether this declaration came from an AST file (such as a precompiled header or module) rat...
Definition DeclBase.h:801
bool isFromHeaderUnit() const
Whether this declaration comes from a header unit.
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
Definition DeclBase.h:991
The name of a declaration.
Represents a ValueDecl that came out of a declarator.
Definition Decl.h:780
A little helper class used to produce diagnostics.
Options for controlling the compiler diagnostics engine.
Concrete class used by the front-end to report problems and issues.
Definition Diagnostic.h:233
Represents an enum.
Definition Decl.h:4033
This represents one expression.
Definition Expr.h:112
RAII class for safely pairing a StartedDeserializing call with FinishedDeserializing.
MemoryBufferSizes getMemoryBufferSizes() const
Return the amount of memory used by memory buffers, breaking down by heap-backed versus mmap'ed memor...
An external source of header file information, which may supply information about header files alread...
An abstract class that should be subclassed by any external source of preprocessing record entries.
Abstract interface for external sources of preprocessor information.
External source of source location entries.
Interface for on-demand deserialization of submodules stored in a PCM file.
Definition Module.h:56
Represents a member of a struct/union/class.
Definition Decl.h:3182
A reference to a FileEntry that includes the name of the file as it was accessed by the FileManager's...
Definition FileEntry.h:57
Cached information about one file (either on disk or in the virtual file system).
Definition FileEntry.h:302
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
bool isInvalid() const
Implements support for file system lookup, file system caching, and directory search management.
Definition FileManager.h:54
Keeps track of options that affect how file operations are performed.
Represents a function declaration or definition.
Definition Decl.h:2018
A global index for a set of module files, providing information about the identifiers within those mo...
HeaderSearchOptions - Helper class for storing options related to the initialization of the HeaderSea...
Provides lookups to, and iteration over, IdentiferInfo objects.
One of these records is kept for each identifier that is lexed.
An iterator that walks over all of the known identifiers in the lookup table.
IdentifierResolver - Keeps track of shadowed decls on enclosing scopes.
Implements an efficient mapping from strings to IdentifierInfo nodes.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
static LocalDeclID get(ASTReader &Reader, serialization::ModuleFile &MF, DeclID ID)
Encapsulates the data about a macro definition (e.g.
Definition MacroInfo.h:40
The module cache used for compiling modules implicitly.
Definition ModuleCache.h:37
Identifies a module file to be loaded.
Definition Module.h:109
Describes a module or submodule.
Definition Module.h:340
NameVisibilityKind
Describes the visibility of the various names within a particular module.
Definition Module.h:643
This represents a decl that may have a name.
Definition Decl.h:274
Represent a C++ namespace.
Definition Decl.h:592
ObjCCategoryDecl - Represents a category declaration.
Definition DeclObjC.h:2329
Represents an ObjC class declaration.
Definition DeclObjC.h:1154
This abstract interface provides operations for unwrapping containers for serialized ASTs (precompile...
bool ReadDiagnosticOptions(DiagnosticOptions &DiagOpts, StringRef ModuleFilename, bool Complain) override
Receives the diagnostic options.
bool ReadLanguageOptions(const LangOptions &LangOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the language options.
PCHValidator(Preprocessor &PP, ASTReader &Reader)
Definition ASTReader.h:332
void ReadCounter(const serialization::ModuleFile &M, uint32_t Value) override
Receives COUNTER value.
bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, StringRef ModuleFilename, bool ReadMacros, bool Complain, std::string &SuggestedPredefines) override
Receives the preprocessor options.
bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, StringRef ModuleFilename, StringRef ContextHash, bool Complain) override
Receives the header search options.
bool ReadCodeGenOptions(const CodeGenOptions &CGOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the codegen options.
bool ReadTargetOptions(const TargetOptions &TargetOpts, StringRef ModuleFilename, bool Complain, bool AllowCompatibleDifferences) override
Receives the target options.
Base class that describes a preprocessed entity, which may be a preprocessor directive or macro expan...
PreprocessorOptions - This class is used for passing the various options used in preprocessor initial...
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
A (possibly-)qualified type.
Definition TypeBase.h:937
Smart pointer class that efficiently represents Objective-C method names.
static AlignPackInfo getFromRawEncoding(unsigned Encoding)
Definition Sema.h:1905
Sema - This implements semantic analysis and AST building for C.
Definition Sema.h:868
SimpleASTReaderListener(Preprocessor &PP)
Definition ASTReader.h:364
bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, StringRef ModuleFilename, bool ReadMacros, bool Complain, std::string &SuggestedPredefines) override
Receives the preprocessor options.
static std::pair< SourceLocation, unsigned > decode(RawLocEncoding)
Encodes a location in the source.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
This class handles loading and caching of source files into memory.
A trivial tuple used to represent a source range.
Stmt - This represents one statement.
Definition Stmt.h:86
Options for controlling the target.
Token - This structure provides full information about a lexed token.
Definition Token.h:36
The base class of the type hierarchy.
Definition TypeBase.h:1875
Base class for declarations which introduce a typedef-name.
Definition Decl.h:3584
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition Decl.h:712
Represents a variable declaration or definition.
Definition Decl.h:924
The input file that has been loaded from this AST file, along with bools indicating whether this was ...
Definition ModuleFile.h:85
Information about a module that has been loaded by the ASTReader.
Definition ModuleFile.h:158
int SLocEntryBaseID
The base ID in the source manager's view of this module.
Definition ModuleFile.h:336
StringRef ModuleOffsetMap
The module offset map data for this file.
Definition ModuleFile.h:288
llvm::SmallVector< ModuleFile *, 16 > TransitiveImports
List of modules which this modules dependent on.
Definition ModuleFile.h:563
Manages the set of modules loaded by an AST reader.
llvm::pointee_iterator< SmallVectorImpl< std::unique_ptr< ModuleFile > >::iterator > ModuleIterator
llvm::pointee_iterator< SmallVectorImpl< std::unique_ptr< ModuleFile > >::const_iterator > ModuleConstIterator
llvm::pointee_iterator< SmallVectorImpl< std::unique_ptr< ModuleFile > >::reverse_iterator > ModuleReverseIterator
Class that performs lookup for an identifier stored in an AST file.
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
uint32_t SelectorID
An ID number that refers to an ObjC selector in an AST file.
uint64_t PreprocessedEntityID
An ID number that refers to an entity in the detailed preprocessing record.
llvm::support::detail::packed_endian_specific_integral< serialization::DeclID, llvm::endianness::native, llvm::support::unaligned > unaligned_decl_id_t
uint64_t MacroID
An ID number that refers to a macro in an AST file.
uint64_t TypeID
An ID number that refers to a type in an AST file.
Definition ASTBitCodes.h:88
ModuleKind
Specifies the kind of module that has been loaded.
Definition ModuleFile.h:44
uint32_t SubmoduleID
An ID number that refers to a submodule in a module file.
TypeID LocalTypeID
Same with TypeID except that the LocalTypeID is only meaningful with the corresponding ModuleFile.
Definition ASTBitCodes.h:94
uint64_t IdentifierID
An ID number that refers to an identifier in an AST file.
Definition ASTBitCodes.h:63
The JSON file list parser is used to communicate input to InstallAPI.
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
PredefinedDeclIDs
Predefined declaration IDs.
Definition DeclID.h:31
@ Result
The result type of a method or function.
Definition TypeBase.h:905
OptionalUnsigned< unsigned > UnsignedOrNone
DisableValidationForModuleKind
Whether to disable the normal validation performed on precompiled headers and module files when they ...
@ None
Perform validation, don't disable it.
bool shouldSkipCheckingODR(const Decl *D)
Definition ASTReader.h:2703
std::string getClangFullRepositoryVersion()
Retrieves the full repository version that is an amalgamation of the information in getClangRepositor...
Definition Version.cpp:68
UnsignedOrNone getPrimaryModuleHash(const Module *M)
Calculate a hash value for the primary module name of the given module.
unsigned long uint64_t
unsigned int uint32_t
The signature of a module, which is a hash of the AST content.
Definition Module.h:198
ImportedModule(ModuleFile *Mod, ModuleFile *ImportedBy, SourceLocation ImportLoc)
Definition ASTReader.h:1526
The preprocessor keeps track of this information for each file that is #included.
Metadata for a module file extension.
The input file info that has been loaded from an AST file.
Definition ModuleFile.h:65