xref: /freebsd/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1 //===- ModuleFile.h - Module file description -------------------*- 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 Module class, which describes a module that has
10 //  been loaded from an AST file.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_CLANG_SERIALIZATION_MODULEFILE_H
15 #define LLVM_CLANG_SERIALIZATION_MODULEFILE_H
16 
17 #include "clang/Basic/FileManager.h"
18 #include "clang/Basic/Module.h"
19 #include "clang/Basic/SourceLocation.h"
20 #include "clang/Serialization/ASTBitCodes.h"
21 #include "clang/Serialization/ContinuousRangeMap.h"
22 #include "clang/Serialization/ModuleFileExtension.h"
23 #include "llvm/ADT/BitVector.h"
24 #include "llvm/ADT/DenseMap.h"
25 #include "llvm/ADT/PointerIntPair.h"
26 #include "llvm/ADT/SetVector.h"
27 #include "llvm/ADT/SmallVector.h"
28 #include "llvm/ADT/StringRef.h"
29 #include "llvm/Bitstream/BitstreamReader.h"
30 #include "llvm/Support/Endian.h"
31 #include <cassert>
32 #include <cstdint>
33 #include <memory>
34 #include <string>
35 #include <vector>
36 
37 namespace clang {
38 
39 namespace serialization {
40 
41 /// Specifies the kind of module that has been loaded.
42 enum ModuleKind {
43   /// File is an implicitly-loaded module.
44   MK_ImplicitModule,
45 
46   /// File is an explicitly-loaded module.
47   MK_ExplicitModule,
48 
49   /// File is a PCH file treated as such.
50   MK_PCH,
51 
52   /// File is a PCH file treated as the preamble.
53   MK_Preamble,
54 
55   /// File is a PCH file treated as the actual main file.
56   MK_MainFile,
57 
58   /// File is from a prebuilt module path.
59   MK_PrebuiltModule
60 };
61 
62 /// The input file info that has been loaded from an AST file.
63 struct InputFileInfo {
64   std::string FilenameAsRequested;
65   std::string Filename;
66   uint64_t ContentHash;
67   off_t StoredSize;
68   time_t StoredTime;
69   bool Overridden;
70   bool Transient;
71   bool TopLevel;
72   bool ModuleMap;
73 };
74 
75 /// The input file that has been loaded from this AST file, along with
76 /// bools indicating whether this was an overridden buffer or if it was
77 /// out-of-date or not-found.
78 class InputFile {
79   enum {
80     Overridden = 1,
81     OutOfDate = 2,
82     NotFound = 3
83   };
84   llvm::PointerIntPair<const FileEntryRef::MapEntry *, 2, unsigned> Val;
85 
86 public:
87   InputFile() = default;
88 
89   InputFile(FileEntryRef File, bool isOverridden = false,
90             bool isOutOfDate = false) {
91     assert(!(isOverridden && isOutOfDate) &&
92            "an overridden cannot be out-of-date");
93     unsigned intVal = 0;
94     if (isOverridden)
95       intVal = Overridden;
96     else if (isOutOfDate)
97       intVal = OutOfDate;
98     Val.setPointerAndInt(&File.getMapEntry(), intVal);
99   }
100 
getNotFound()101   static InputFile getNotFound() {
102     InputFile File;
103     File.Val.setInt(NotFound);
104     return File;
105   }
106 
getFile()107   OptionalFileEntryRef getFile() const {
108     if (auto *P = Val.getPointer())
109       return FileEntryRef(*P);
110     return std::nullopt;
111   }
isOverridden()112   bool isOverridden() const { return Val.getInt() == Overridden; }
isOutOfDate()113   bool isOutOfDate() const { return Val.getInt() == OutOfDate; }
isNotFound()114   bool isNotFound() const { return Val.getInt() == NotFound; }
115 };
116 
117 /// Information about a module that has been loaded by the ASTReader.
118 ///
119 /// Each instance of the Module class corresponds to a single AST file, which
120 /// may be a precompiled header, precompiled preamble, a module, or an AST file
121 /// of some sort loaded as the main file, all of which are specific formulations
122 /// of the general notion of a "module". A module may depend on any number of
123 /// other modules.
124 class ModuleFile {
125 public:
ModuleFile(ModuleKind Kind,FileEntryRef File,unsigned Generation)126   ModuleFile(ModuleKind Kind, FileEntryRef File, unsigned Generation)
127       : Kind(Kind), File(File), Generation(Generation) {}
128   ~ModuleFile();
129 
130   // === General information ===
131 
132   /// The index of this module in the list of modules.
133   unsigned Index = 0;
134 
135   /// The type of this module.
136   ModuleKind Kind;
137 
138   /// The file name of the module file.
139   std::string FileName;
140 
141   /// The name of the module.
142   std::string ModuleName;
143 
144   /// The base directory of the module.
145   std::string BaseDirectory;
146 
getTimestampFilename()147   std::string getTimestampFilename() const {
148     return FileName + ".timestamp";
149   }
150 
151   /// The original source file name that was used to build the
152   /// primary AST file, which may have been modified for
153   /// relocatable-pch support.
154   std::string OriginalSourceFileName;
155 
156   /// The actual original source file name that was used to
157   /// build this AST file.
158   std::string ActualOriginalSourceFileName;
159 
160   /// The file ID for the original source file that was used to
161   /// build this AST file.
162   FileID OriginalSourceFileID;
163 
164   std::string ModuleMapPath;
165 
166   /// Whether this precompiled header is a relocatable PCH file.
167   bool RelocatablePCH = false;
168 
169   /// Whether this module file is a standard C++ module.
170   bool StandardCXXModule = false;
171 
172   /// Whether timestamps are included in this module file.
173   bool HasTimestamps = false;
174 
175   /// Whether the top-level module has been read from the AST file.
176   bool DidReadTopLevelSubmodule = false;
177 
178   /// The file entry for the module file.
179   FileEntryRef File;
180 
181   /// The signature of the module file, which may be used instead of the size
182   /// and modification time to identify this particular file.
183   ASTFileSignature Signature;
184 
185   /// The signature of the AST block of the module file, this can be used to
186   /// unique module files based on AST contents.
187   ASTFileSignature ASTBlockHash;
188 
189   /// The bit vector denoting usage of each header search entry (true = used).
190   llvm::BitVector SearchPathUsage;
191 
192   /// The bit vector denoting usage of each VFS entry (true = used).
193   llvm::BitVector VFSUsage;
194 
195   /// Whether this module has been directly imported by the
196   /// user.
197   bool DirectlyImported = false;
198 
199   /// The generation of which this module file is a part.
200   unsigned Generation;
201 
202   /// The memory buffer that stores the data associated with
203   /// this AST file, owned by the InMemoryModuleCache.
204   llvm::MemoryBuffer *Buffer = nullptr;
205 
206   /// The size of this file, in bits.
207   uint64_t SizeInBits = 0;
208 
209   /// The global bit offset (or base) of this module
210   uint64_t GlobalBitOffset = 0;
211 
212   /// The bit offset of the AST block of this module.
213   uint64_t ASTBlockStartOffset = 0;
214 
215   /// The serialized bitstream data for this file.
216   StringRef Data;
217 
218   /// The main bitstream cursor for the main block.
219   llvm::BitstreamCursor Stream;
220 
221   /// The source location where the module was explicitly or implicitly
222   /// imported in the local translation unit.
223   ///
224   /// If module A depends on and imports module B, both modules will have the
225   /// same DirectImportLoc, but different ImportLoc (B's ImportLoc will be a
226   /// source location inside module A).
227   ///
228   /// WARNING: This is largely useless. It doesn't tell you when a module was
229   /// made visible, just when the first submodule of that module was imported.
230   SourceLocation DirectImportLoc;
231 
232   /// The source location where this module was first imported.
233   SourceLocation ImportLoc;
234 
235   /// The first source location in this module.
236   SourceLocation FirstLoc;
237 
238   /// The list of extension readers that are attached to this module
239   /// file.
240   std::vector<std::unique_ptr<ModuleFileExtensionReader>> ExtensionReaders;
241 
242   /// The module offset map data for this file. If non-empty, the various
243   /// ContinuousRangeMaps described below have not yet been populated.
244   StringRef ModuleOffsetMap;
245 
246   // === Input Files ===
247 
248   /// The cursor to the start of the input-files block.
249   llvm::BitstreamCursor InputFilesCursor;
250 
251   /// Absolute offset of the start of the input-files block.
252   uint64_t InputFilesOffsetBase = 0;
253 
254   /// Relative offsets for all of the input file entries in the AST file.
255   const llvm::support::unaligned_uint64_t *InputFileOffsets = nullptr;
256 
257   /// The input files that have been loaded from this AST file.
258   std::vector<InputFile> InputFilesLoaded;
259 
260   /// The input file infos that have been loaded from this AST file.
261   std::vector<InputFileInfo> InputFileInfosLoaded;
262 
263   // All user input files reside at the index range [0, NumUserInputFiles), and
264   // system input files reside at [NumUserInputFiles, InputFilesLoaded.size()).
265   unsigned NumUserInputFiles = 0;
266 
267   /// If non-zero, specifies the time when we last validated input
268   /// files.  Zero means we never validated them.
269   ///
270   /// The time is specified in seconds since the start of the Epoch.
271   uint64_t InputFilesValidationTimestamp = 0;
272 
273   // === Source Locations ===
274 
275   /// Cursor used to read source location entries.
276   llvm::BitstreamCursor SLocEntryCursor;
277 
278   /// The bit offset to the start of the SOURCE_MANAGER_BLOCK.
279   uint64_t SourceManagerBlockStartOffset = 0;
280 
281   /// The number of source location entries in this AST file.
282   unsigned LocalNumSLocEntries = 0;
283 
284   /// The base ID in the source manager's view of this module.
285   int SLocEntryBaseID = 0;
286 
287   /// The base offset in the source manager's view of this module.
288   SourceLocation::UIntTy SLocEntryBaseOffset = 0;
289 
290   /// Base file offset for the offsets in SLocEntryOffsets. Real file offset
291   /// for the entry is SLocEntryOffsetsBase + SLocEntryOffsets[i].
292   uint64_t SLocEntryOffsetsBase = 0;
293 
294   /// Offsets for all of the source location entries in the
295   /// AST file.
296   const uint32_t *SLocEntryOffsets = nullptr;
297 
298   // === Identifiers ===
299 
300   /// The number of identifiers in this AST file.
301   unsigned LocalNumIdentifiers = 0;
302 
303   /// Offsets into the identifier table data.
304   ///
305   /// This array is indexed by the identifier ID (-1), and provides
306   /// the offset into IdentifierTableData where the string data is
307   /// stored.
308   const uint32_t *IdentifierOffsets = nullptr;
309 
310   /// Base identifier ID for identifiers local to this module.
311   serialization::IdentifierID BaseIdentifierID = 0;
312 
313   /// Actual data for the on-disk hash table of identifiers.
314   ///
315   /// This pointer points into a memory buffer, where the on-disk hash
316   /// table for identifiers actually lives.
317   const unsigned char *IdentifierTableData = nullptr;
318 
319   /// A pointer to an on-disk hash table of opaque type
320   /// IdentifierHashTable.
321   void *IdentifierLookupTable = nullptr;
322 
323   /// Offsets of identifiers that we're going to preload within
324   /// IdentifierTableData.
325   std::vector<unsigned> PreloadIdentifierOffsets;
326 
327   // === Macros ===
328 
329   /// The cursor to the start of the preprocessor block, which stores
330   /// all of the macro definitions.
331   llvm::BitstreamCursor MacroCursor;
332 
333   /// The number of macros in this AST file.
334   unsigned LocalNumMacros = 0;
335 
336   /// Base file offset for the offsets in MacroOffsets. Real file offset for
337   /// the entry is MacroOffsetsBase + MacroOffsets[i].
338   uint64_t MacroOffsetsBase = 0;
339 
340   /// Offsets of macros in the preprocessor block.
341   ///
342   /// This array is indexed by the macro ID (-1), and provides
343   /// the offset into the preprocessor block where macro definitions are
344   /// stored.
345   const uint32_t *MacroOffsets = nullptr;
346 
347   /// Base macro ID for macros local to this module.
348   serialization::MacroID BaseMacroID = 0;
349 
350   /// Remapping table for macro IDs in this module.
351   ContinuousRangeMap<uint32_t, int, 2> MacroRemap;
352 
353   /// The offset of the start of the set of defined macros.
354   uint64_t MacroStartOffset = 0;
355 
356   // === Detailed PreprocessingRecord ===
357 
358   /// The cursor to the start of the (optional) detailed preprocessing
359   /// record block.
360   llvm::BitstreamCursor PreprocessorDetailCursor;
361 
362   /// The offset of the start of the preprocessor detail cursor.
363   uint64_t PreprocessorDetailStartOffset = 0;
364 
365   /// Base preprocessed entity ID for preprocessed entities local to
366   /// this module.
367   serialization::PreprocessedEntityID BasePreprocessedEntityID = 0;
368 
369   /// Remapping table for preprocessed entity IDs in this module.
370   ContinuousRangeMap<uint32_t, int, 2> PreprocessedEntityRemap;
371 
372   const PPEntityOffset *PreprocessedEntityOffsets = nullptr;
373   unsigned NumPreprocessedEntities = 0;
374 
375   /// Base ID for preprocessed skipped ranges local to this module.
376   unsigned BasePreprocessedSkippedRangeID = 0;
377 
378   const PPSkippedRange *PreprocessedSkippedRangeOffsets = nullptr;
379   unsigned NumPreprocessedSkippedRanges = 0;
380 
381   // === Header search information ===
382 
383   /// The number of local HeaderFileInfo structures.
384   unsigned LocalNumHeaderFileInfos = 0;
385 
386   /// Actual data for the on-disk hash table of header file
387   /// information.
388   ///
389   /// This pointer points into a memory buffer, where the on-disk hash
390   /// table for header file information actually lives.
391   const char *HeaderFileInfoTableData = nullptr;
392 
393   /// The on-disk hash table that contains information about each of
394   /// the header files.
395   void *HeaderFileInfoTable = nullptr;
396 
397   // === Submodule information ===
398 
399   /// The number of submodules in this module.
400   unsigned LocalNumSubmodules = 0;
401 
402   /// Base submodule ID for submodules local to this module.
403   serialization::SubmoduleID BaseSubmoduleID = 0;
404 
405   /// Remapping table for submodule IDs in this module.
406   ContinuousRangeMap<uint32_t, int, 2> SubmoduleRemap;
407 
408   // === Selectors ===
409 
410   /// The number of selectors new to this file.
411   ///
412   /// This is the number of entries in SelectorOffsets.
413   unsigned LocalNumSelectors = 0;
414 
415   /// Offsets into the selector lookup table's data array
416   /// where each selector resides.
417   const uint32_t *SelectorOffsets = nullptr;
418 
419   /// Base selector ID for selectors local to this module.
420   serialization::SelectorID BaseSelectorID = 0;
421 
422   /// Remapping table for selector IDs in this module.
423   ContinuousRangeMap<uint32_t, int, 2> SelectorRemap;
424 
425   /// A pointer to the character data that comprises the selector table
426   ///
427   /// The SelectorOffsets table refers into this memory.
428   const unsigned char *SelectorLookupTableData = nullptr;
429 
430   /// A pointer to an on-disk hash table of opaque type
431   /// ASTSelectorLookupTable.
432   ///
433   /// This hash table provides the IDs of all selectors, and the associated
434   /// instance and factory methods.
435   void *SelectorLookupTable = nullptr;
436 
437   // === Declarations ===
438 
439   /// DeclsCursor - This is a cursor to the start of the DECLTYPES_BLOCK block.
440   /// It has read all the abbreviations at the start of the block and is ready
441   /// to jump around with these in context.
442   llvm::BitstreamCursor DeclsCursor;
443 
444   /// The offset to the start of the DECLTYPES_BLOCK block.
445   uint64_t DeclsBlockStartOffset = 0;
446 
447   /// The number of declarations in this AST file.
448   unsigned LocalNumDecls = 0;
449 
450   /// Offset of each declaration within the bitstream, indexed
451   /// by the declaration ID (-1).
452   const DeclOffset *DeclOffsets = nullptr;
453 
454   /// Base declaration index in ASTReader for declarations local to this module.
455   unsigned BaseDeclIndex = 0;
456 
457   /// Array of file-level DeclIDs sorted by file.
458   const serialization::unaligned_decl_id_t *FileSortedDecls = nullptr;
459   unsigned NumFileSortedDecls = 0;
460 
461   /// Array of category list location information within this
462   /// module file, sorted by the definition ID.
463   const serialization::ObjCCategoriesInfo *ObjCCategoriesMap = nullptr;
464 
465   /// The number of redeclaration info entries in ObjCCategoriesMap.
466   unsigned LocalNumObjCCategoriesInMap = 0;
467 
468   /// The Objective-C category lists for categories known to this
469   /// module.
470   SmallVector<uint64_t, 1> ObjCCategories;
471 
472   // === Types ===
473 
474   /// The number of types in this AST file.
475   unsigned LocalNumTypes = 0;
476 
477   /// Offset of each type within the bitstream, indexed by the
478   /// type ID, or the representation of a Type*.
479   const UnalignedUInt64 *TypeOffsets = nullptr;
480 
481   /// Base type ID for types local to this module as represented in
482   /// the global type ID space.
483   serialization::TypeID BaseTypeIndex = 0;
484 
485   // === Miscellaneous ===
486 
487   /// Diagnostic IDs and their mappings that the user changed.
488   SmallVector<uint64_t, 8> PragmaDiagMappings;
489 
490   /// List of modules which depend on this module
491   llvm::SetVector<ModuleFile *> ImportedBy;
492 
493   /// List of modules which this module directly imported
494   llvm::SetVector<ModuleFile *> Imports;
495 
496   /// List of modules which this modules dependent on. Different
497   /// from `Imports`, this includes indirectly imported modules too.
498   /// The order of TransitiveImports is significant. It should keep
499   /// the same order with that module file manager when we write
500   /// the current module file. The value of the member will be initialized
501   /// in `ASTReader::ReadModuleOffsetMap`.
502   llvm::SmallVector<ModuleFile *, 16> TransitiveImports;
503 
504   /// Determine whether this module was directly imported at
505   /// any point during translation.
isDirectlyImported()506   bool isDirectlyImported() const { return DirectlyImported; }
507 
508   /// Is this a module file for a module (rather than a PCH or similar).
isModule()509   bool isModule() const {
510     return Kind == MK_ImplicitModule || Kind == MK_ExplicitModule ||
511            Kind == MK_PrebuiltModule;
512   }
513 
514   /// Dump debugging output for this module.
515   void dump();
516 };
517 
518 } // namespace serialization
519 
520 } // namespace clang
521 
522 #endif // LLVM_CLANG_SERIALIZATION_MODULEFILE_H
523