clang 19.0.0git
Module.h
Go to the documentation of this file.
1//===- Module.h - Describe a module -----------------------------*- 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/// \file
10/// Defines the clang::Module class, which describes a module in the
11/// source code.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_BASIC_MODULE_H
16#define LLVM_CLANG_BASIC_MODULE_H
17
21#include "llvm/ADT/ArrayRef.h"
22#include "llvm/ADT/DenseSet.h"
23#include "llvm/ADT/PointerIntPair.h"
24#include "llvm/ADT/STLExtras.h"
25#include "llvm/ADT/SetVector.h"
26#include "llvm/ADT/SmallVector.h"
27#include "llvm/ADT/StringMap.h"
28#include "llvm/ADT/StringRef.h"
29#include "llvm/ADT/iterator_range.h"
30#include <array>
31#include <cassert>
32#include <cstdint>
33#include <ctime>
34#include <iterator>
35#include <optional>
36#include <string>
37#include <utility>
38#include <variant>
39#include <vector>
40
41namespace llvm {
42
43class raw_ostream;
44
45} // namespace llvm
46
47namespace clang {
48
49class FileManager;
50class LangOptions;
51class TargetInfo;
52
53/// Describes the name of a module.
55
56/// The signature of a module, which is a hash of the AST content.
57struct ASTFileSignature : std::array<uint8_t, 20> {
58 using BaseT = std::array<uint8_t, 20>;
59
60 static constexpr size_t size = std::tuple_size<BaseT>::value;
61
62 ASTFileSignature(BaseT S = {{0}}) : BaseT(std::move(S)) {}
63
64 explicit operator bool() const { return *this != BaseT({{0}}); }
65
66 /// Returns the value truncated to the size of an uint64_t.
67 uint64_t truncatedValue() const {
68 uint64_t Value = 0;
69 static_assert(sizeof(*this) >= sizeof(uint64_t), "No need to truncate.");
70 for (unsigned I = 0; I < sizeof(uint64_t); ++I)
71 Value |= static_cast<uint64_t>((*this)[I]) << (I * 8);
72 return Value;
73 }
74
75 static ASTFileSignature create(std::array<uint8_t, 20> Bytes) {
76 return ASTFileSignature(std::move(Bytes));
77 }
78
80 ASTFileSignature Sentinel;
81 Sentinel.fill(0xFF);
82 return Sentinel;
83 }
84
86 ASTFileSignature Dummy;
87 Dummy.fill(0x00);
88 return Dummy;
89 }
90
91 template <typename InputIt>
92 static ASTFileSignature create(InputIt First, InputIt Last) {
93 assert(std::distance(First, Last) == size &&
94 "Wrong amount of bytes to create an ASTFileSignature");
95
96 ASTFileSignature Signature;
97 std::copy(First, Last, Signature.begin());
98 return Signature;
99 }
100};
101
102/// Describes a module or submodule.
103///
104/// Aligned to 8 bytes to allow for llvm::PointerIntPair<Module *, 3>.
105class alignas(8) Module {
106public:
107 /// The name of this module.
108 std::string Name;
109
110 /// The location of the module definition.
112
113 // FIXME: Consider if reducing the size of this enum (having Partition and
114 // Named modules only) then representing interface/implementation separately
115 // is more efficient.
117 /// This is a module that was defined by a module map and built out
118 /// of header files.
120
121 /// This is a C++20 header unit.
123
124 /// This is a C++20 module interface unit.
126
127 /// This is a C++20 module implementation unit.
129
130 /// This is a C++20 module partition interface.
132
133 /// This is a C++20 module partition implementation.
135
136 /// This is the explicit Global Module Fragment of a modular TU.
137 /// As per C++ [module.global.frag].
139
140 /// This is the private module fragment within some C++ module.
142
143 /// This is an implicit fragment of the global module which contains
144 /// only language linkage declarations (made in the purview of the
145 /// named module).
147 };
148
149 /// The kind of this module.
151
152 /// The parent of this module. This will be NULL for the top-level
153 /// module.
155
156 /// The build directory of this module. This is the directory in
157 /// which the module is notionally built, and relative to which its headers
158 /// are found.
160
161 /// The presumed file name for the module map defining this module.
162 /// Only non-empty when building from preprocessed source.
164
165 /// The umbrella header or directory.
166 std::variant<std::monostate, FileEntryRef, DirectoryEntryRef> Umbrella;
167
168 /// The module signature.
170
171 /// The name of the umbrella entry, as written in the module map.
172 std::string UmbrellaAsWritten;
173
174 // The path to the umbrella entry relative to the root module's \c Directory.
176
177 /// The module through which entities defined in this module will
178 /// eventually be exposed, for use in "private" modules.
179 std::string ExportAsModule;
180
181 /// For the debug info, the path to this module's .apinotes file, if any.
182 std::string APINotesFile;
183
184 /// Does this Module is a named module of a standard named module?
185 bool isNamedModule() const {
186 switch (Kind) {
192 return true;
193 default:
194 return false;
195 }
196 }
197
198 /// Does this Module scope describe a fragment of the global module within
199 /// some C++ module.
200 bool isGlobalModule() const {
202 }
205 }
208 }
209
210 bool isPrivateModule() const { return Kind == PrivateModuleFragment; }
211
212 bool isModuleMapModule() const { return Kind == ModuleMapModule; }
213
214private:
215 /// The submodules of this module, indexed by name.
216 std::vector<Module *> SubModules;
217
218 /// A mapping from the submodule name to the index into the
219 /// \c SubModules vector at which that submodule resides.
220 llvm::StringMap<unsigned> SubModuleIndex;
221
222 /// The AST file if this is a top-level module which has a
223 /// corresponding serialized AST file, or null otherwise.
224 OptionalFileEntryRef ASTFile;
225
226 /// The top-level headers associated with this module.
228
229 /// top-level header filenames that aren't resolved to FileEntries yet.
230 std::vector<std::string> TopHeaderNames;
231
232 /// Cache of modules visible to lookup in this module.
233 mutable llvm::DenseSet<const Module*> VisibleModulesCache;
234
235 /// The ID used when referencing this module within a VisibleModuleSet.
236 unsigned VisibilityID;
237
238public:
245 };
246 static const int NumHeaderKinds = HK_Excluded + 1;
247
248 /// Information about a header directive as found in the module map
249 /// file.
250 struct Header {
251 std::string NameAsWritten;
254 };
255
256 /// Information about a directory name as found in the module map
257 /// file.
259 std::string NameAsWritten;
262 };
263
264 /// The headers that are part of this module.
266
267 /// Stored information about a header directive that was found in the
268 /// module map file but has not been resolved to a file.
272 std::string FileName;
273 bool IsUmbrella = false;
274 bool HasBuiltinHeader = false;
275 std::optional<off_t> Size;
276 std::optional<time_t> ModTime;
277 };
278
279 /// Headers that are mentioned in the module map file but that we have not
280 /// yet attempted to resolve to a file on the file system.
282
283 /// Headers that are mentioned in the module map file but could not be
284 /// found on the file system.
286
287 /// An individual requirement: a feature name and a flag indicating
288 /// the required state of that feature.
289 using Requirement = std::pair<std::string, bool>;
290
291 /// The set of language features required to use this module.
292 ///
293 /// If any of these requirements are not available, the \c IsAvailable bit
294 /// will be false to indicate that this (sub)module is not available.
296
297 /// A module with the same name that shadows this module.
299
300 /// Whether this module has declared itself unimportable, either because
301 /// it's missing a requirement from \p Requirements or because it's been
302 /// shadowed by another module.
303 LLVM_PREFERRED_TYPE(bool)
305
306 /// Whether we tried and failed to load a module file for this module.
307 LLVM_PREFERRED_TYPE(bool)
309
310 /// Whether this module is available in the current translation unit.
311 ///
312 /// If the module is missing headers or does not meet all requirements then
313 /// this bit will be 0.
314 LLVM_PREFERRED_TYPE(bool)
315 unsigned IsAvailable : 1;
316
317 /// Whether this module was loaded from a module file.
318 LLVM_PREFERRED_TYPE(bool)
319 unsigned IsFromModuleFile : 1;
320
321 /// Whether this is a framework module.
322 LLVM_PREFERRED_TYPE(bool)
323 unsigned IsFramework : 1;
324
325 /// Whether this is an explicit submodule.
326 LLVM_PREFERRED_TYPE(bool)
327 unsigned IsExplicit : 1;
328
329 /// Whether this is a "system" module (which assumes that all
330 /// headers in it are system headers).
331 LLVM_PREFERRED_TYPE(bool)
332 unsigned IsSystem : 1;
333
334 /// Whether this is an 'extern "C"' module (which implicitly puts all
335 /// headers in it within an 'extern "C"' block, and allows the module to be
336 /// imported within such a block).
337 LLVM_PREFERRED_TYPE(bool)
338 unsigned IsExternC : 1;
339
340 /// Whether this is an inferred submodule (module * { ... }).
341 LLVM_PREFERRED_TYPE(bool)
342 unsigned IsInferred : 1;
343
344 /// Whether we should infer submodules for this module based on
345 /// the headers.
346 ///
347 /// Submodules can only be inferred for modules with an umbrella header.
348 LLVM_PREFERRED_TYPE(bool)
349 unsigned InferSubmodules : 1;
350
351 /// Whether, when inferring submodules, the inferred submodules
352 /// should be explicit.
353 LLVM_PREFERRED_TYPE(bool)
355
356 /// Whether, when inferring submodules, the inferr submodules should
357 /// export all modules they import (e.g., the equivalent of "export *").
358 LLVM_PREFERRED_TYPE(bool)
360
361 /// Whether the set of configuration macros is exhaustive.
362 ///
363 /// When the set of configuration macros is exhaustive, meaning
364 /// that no identifier not in this list should affect how the module is
365 /// built.
366 LLVM_PREFERRED_TYPE(bool)
368
369 /// Whether files in this module can only include non-modular headers
370 /// and headers from used modules.
371 LLVM_PREFERRED_TYPE(bool)
373
374 /// Whether this module came from a "private" module map, found next
375 /// to a regular (public) module map.
376 LLVM_PREFERRED_TYPE(bool)
377 unsigned ModuleMapIsPrivate : 1;
378
379 /// Whether this C++20 named modules doesn't need an initializer.
380 /// This is only meaningful for C++20 modules.
381 LLVM_PREFERRED_TYPE(bool)
382 unsigned NamedModuleHasInit : 1;
383
384 /// Describes the visibility of the various names within a
385 /// particular module.
387 /// All of the names in this module are hidden.
389 /// All of the names in this module are visible.
391 };
392
393 /// The visibility of names within this particular module.
395
396 /// The location of the inferred submodule.
398
399 /// The set of modules imported by this module, and on which this
400 /// module depends.
402
403 /// The set of top-level modules that affected the compilation of this module,
404 /// but were not imported.
406
407 /// Describes an exported module.
408 ///
409 /// The pointer is the module being re-exported, while the bit will be true
410 /// to indicate that this is a wildcard export.
411 using ExportDecl = llvm::PointerIntPair<Module *, 1, bool>;
412
413 /// The set of export declarations.
415
416 /// Describes an exported module that has not yet been resolved
417 /// (perhaps because the module it refers to has not yet been loaded).
419 /// The location of the 'export' keyword in the module map file.
421
422 /// The name of the module.
424
425 /// Whether this export declaration ends in a wildcard, indicating
426 /// that all of its submodules should be exported (rather than the named
427 /// module itself).
429 };
430
431 /// The set of export declarations that have yet to be resolved.
433
434 /// The directly used modules.
436
437 /// The set of use declarations that have yet to be resolved.
439
440 /// When \c NoUndeclaredIncludes is true, the set of modules this module tried
441 /// to import but didn't because they are not direct uses.
443
444 /// A library or framework to link against when an entity from this
445 /// module is used.
446 struct LinkLibrary {
447 LinkLibrary() = default;
448 LinkLibrary(const std::string &Library, bool IsFramework)
450
451 /// The library to link against.
452 ///
453 /// This will typically be a library or framework name, but can also
454 /// be an absolute path to the library or framework.
455 std::string Library;
456
457 /// Whether this is a framework rather than a library.
458 bool IsFramework = false;
459 };
460
461 /// The set of libraries or frameworks to link against when
462 /// an entity from this module is used.
464
465 /// Autolinking uses the framework name for linking purposes
466 /// when this is false and the export_as name otherwise.
468
469 /// The set of "configuration macros", which are macros that
470 /// (intentionally) change how this module is built.
471 std::vector<std::string> ConfigMacros;
472
473 /// An unresolved conflict with another module.
475 /// The (unresolved) module id.
477
478 /// The message provided to the user when there is a conflict.
479 std::string Message;
480 };
481
482 /// The list of conflicts for which the module-id has not yet been
483 /// resolved.
484 std::vector<UnresolvedConflict> UnresolvedConflicts;
485
486 /// A conflict between two modules.
487 struct Conflict {
488 /// The module that this module conflicts with.
490
491 /// The message provided to the user when there is a conflict.
492 std::string Message;
493 };
494
495 /// The list of conflicts.
496 std::vector<Conflict> Conflicts;
497
498 /// Construct a new module or submodule.
500 bool IsFramework, bool IsExplicit, unsigned VisibilityID);
501
502 ~Module();
503
504 /// Determine whether this module has been declared unimportable.
505 bool isUnimportable() const { return IsUnimportable; }
506
507 /// Determine whether this module has been declared unimportable.
508 ///
509 /// \param LangOpts The language options used for the current
510 /// translation unit.
511 ///
512 /// \param Target The target options used for the current translation unit.
513 ///
514 /// \param Req If this module is unimportable because of a missing
515 /// requirement, this parameter will be set to one of the requirements that
516 /// is not met for use of this module.
517 ///
518 /// \param ShadowingModule If this module is unimportable because it is
519 /// shadowed, this parameter will be set to the shadowing module.
520 bool isUnimportable(const LangOptions &LangOpts, const TargetInfo &Target,
521 Requirement &Req, Module *&ShadowingModule) const;
522
523 /// Determine whether this module can be built in this compilation.
524 bool isForBuilding(const LangOptions &LangOpts) const;
525
526 /// Determine whether this module is available for use within the
527 /// current translation unit.
528 bool isAvailable() const { return IsAvailable; }
529
530 /// Determine whether this module is available for use within the
531 /// current translation unit.
532 ///
533 /// \param LangOpts The language options used for the current
534 /// translation unit.
535 ///
536 /// \param Target The target options used for the current translation unit.
537 ///
538 /// \param Req If this module is unavailable because of a missing requirement,
539 /// this parameter will be set to one of the requirements that is not met for
540 /// use of this module.
541 ///
542 /// \param MissingHeader If this module is unavailable because of a missing
543 /// header, this parameter will be set to one of the missing headers.
544 ///
545 /// \param ShadowingModule If this module is unavailable because it is
546 /// shadowed, this parameter will be set to the shadowing module.
547 bool isAvailable(const LangOptions &LangOpts,
548 const TargetInfo &Target,
549 Requirement &Req,
550 UnresolvedHeaderDirective &MissingHeader,
551 Module *&ShadowingModule) const;
552
553 /// Determine whether this module is a submodule.
554 bool isSubModule() const { return Parent != nullptr; }
555
556 /// Check if this module is a (possibly transitive) submodule of \p Other.
557 ///
558 /// The 'A is a submodule of B' relation is a partial order based on the
559 /// the parent-child relationship between individual modules.
560 ///
561 /// Returns \c false if \p Other is \c nullptr.
562 bool isSubModuleOf(const Module *Other) const;
563
564 /// Determine whether this module is a part of a framework,
565 /// either because it is a framework module or because it is a submodule
566 /// of a framework module.
567 bool isPartOfFramework() const {
568 for (const Module *Mod = this; Mod; Mod = Mod->Parent)
569 if (Mod->IsFramework)
570 return true;
571
572 return false;
573 }
574
575 /// Determine whether this module is a subframework of another
576 /// framework.
577 bool isSubFramework() const {
579 }
580
581 /// Set the parent of this module. This should only be used if the parent
582 /// could not be set during module creation.
583 void setParent(Module *M) {
584 assert(!Parent);
585 Parent = M;
586 Parent->SubModuleIndex[Name] = Parent->SubModules.size();
587 Parent->SubModules.push_back(this);
588 }
589
590 /// Is this module have similar semantics as headers.
591 bool isHeaderLikeModule() const {
592 return isModuleMapModule() || isHeaderUnit();
593 }
594
595 /// Is this a module partition.
596 bool isModulePartition() const {
597 return Kind == ModulePartitionInterface ||
599 }
600
601 /// Is this a module partition implementation unit.
604 }
605
606 /// Is this a module implementation.
609 }
610
611 /// Is this module a header unit.
612 bool isHeaderUnit() const { return Kind == ModuleHeaderUnit; }
613 // Is this a C++20 module interface or a partition.
616 }
617
618 /// Is this a C++20 named module unit.
619 bool isNamedModuleUnit() const {
621 }
622
625 }
626
628
629 /// Get the primary module interface name from a partition.
631 // Technically, global module fragment belongs to global module. And global
632 // module has no name: [module.unit]p6:
633 // The global module has no name, no module interface unit, and is not
634 // introduced by any module-declaration.
635 //
636 // <global> is the default name showed in module map.
637 if (isGlobalModule())
638 return "<global>";
639
640 if (isModulePartition()) {
641 auto pos = Name.find(':');
642 return StringRef(Name.data(), pos);
643 }
644
645 if (isPrivateModule())
646 return getTopLevelModuleName();
647
648 return Name;
649 }
650
651 /// Retrieve the full name of this module, including the path from
652 /// its top-level module.
653 /// \param AllowStringLiterals If \c true, components that might not be
654 /// lexically valid as identifiers will be emitted as string literals.
655 std::string getFullModuleName(bool AllowStringLiterals = false) const;
656
657 /// Whether the full name of this module is equal to joining
658 /// \p nameParts with "."s.
659 ///
660 /// This is more efficient than getFullModuleName().
661 bool fullModuleNameIs(ArrayRef<StringRef> nameParts) const;
662
663 /// Retrieve the top-level module for this (sub)module, which may
664 /// be this module.
666 return const_cast<Module *>(
667 const_cast<const Module *>(this)->getTopLevelModule());
668 }
669
670 /// Retrieve the top-level module for this (sub)module, which may
671 /// be this module.
672 const Module *getTopLevelModule() const;
673
674 /// Retrieve the name of the top-level module.
675 StringRef getTopLevelModuleName() const {
676 return getTopLevelModule()->Name;
677 }
678
679 /// The serialized AST file for this module, if one was created.
681 return getTopLevelModule()->ASTFile;
682 }
683
684 /// Set the serialized AST file for the top-level module of this module.
686 assert((!getASTFile() || getASTFile() == File) && "file path changed");
687 getTopLevelModule()->ASTFile = File;
688 }
689
690 /// Retrieve the umbrella directory as written.
691 std::optional<DirectoryName> getUmbrellaDirAsWritten() const {
692 if (const auto *Dir = std::get_if<DirectoryEntryRef>(&Umbrella))
695 return std::nullopt;
696 }
697
698 /// Retrieve the umbrella header as written.
699 std::optional<Header> getUmbrellaHeaderAsWritten() const {
700 if (const auto *Hdr = std::get_if<FileEntryRef>(&Umbrella))
702 *Hdr};
703 return std::nullopt;
704 }
705
706 /// Get the effective umbrella directory for this module: either the one
707 /// explicitly written in the module map file, or the parent of the umbrella
708 /// header.
710
711 /// Add a top-level header associated with this module.
713
714 /// Add a top-level header filename associated with this module.
716 TopHeaderNames.push_back(std::string(Filename));
717 }
718
719 /// The top-level headers associated with this module.
721
722 /// Determine whether this module has declared its intention to
723 /// directly use another module.
724 bool directlyUses(const Module *Requested);
725
726 /// Add the given feature requirement to the list of features
727 /// required by this module.
728 ///
729 /// \param Feature The feature that is required by this module (and
730 /// its submodules).
731 ///
732 /// \param RequiredState The required state of this feature: \c true
733 /// if it must be present, \c false if it must be absent.
734 ///
735 /// \param LangOpts The set of language options that will be used to
736 /// evaluate the availability of this feature.
737 ///
738 /// \param Target The target options that will be used to evaluate the
739 /// availability of this feature.
740 void addRequirement(StringRef Feature, bool RequiredState,
741 const LangOptions &LangOpts,
742 const TargetInfo &Target);
743
744 /// Mark this module and all of its submodules as unavailable.
745 void markUnavailable(bool Unimportable);
746
747 /// Find the submodule with the given name.
748 ///
749 /// \returns The submodule if found, or NULL otherwise.
750 Module *findSubmodule(StringRef Name) const;
751 Module *findOrInferSubmodule(StringRef Name);
752
753 /// Get the Global Module Fragment (sub-module) for this module, it there is
754 /// one.
755 ///
756 /// \returns The GMF sub-module if found, or NULL otherwise.
758
759 /// Get the Private Module Fragment (sub-module) for this module, it there is
760 /// one.
761 ///
762 /// \returns The PMF sub-module if found, or NULL otherwise.
764
765 /// Determine whether the specified module would be visible to
766 /// a lookup at the end of this module.
767 ///
768 /// FIXME: This may return incorrect results for (submodules of) the
769 /// module currently being built, if it's queried before we see all
770 /// of its imports.
771 bool isModuleVisible(const Module *M) const {
772 if (VisibleModulesCache.empty())
773 buildVisibleModulesCache();
774 return VisibleModulesCache.count(M);
775 }
776
777 unsigned getVisibilityID() const { return VisibilityID; }
778
779 using submodule_iterator = std::vector<Module *>::iterator;
780 using submodule_const_iterator = std::vector<Module *>::const_iterator;
781
782 llvm::iterator_range<submodule_iterator> submodules() {
783 return llvm::make_range(SubModules.begin(), SubModules.end());
784 }
785 llvm::iterator_range<submodule_const_iterator> submodules() const {
786 return llvm::make_range(SubModules.begin(), SubModules.end());
787 }
788
789 /// Appends this module's list of exported modules to \p Exported.
790 ///
791 /// This provides a subset of immediately imported modules (the ones that are
792 /// directly exported), not the complete set of exported modules.
793 void getExportedModules(SmallVectorImpl<Module *> &Exported) const;
794
795 static StringRef getModuleInputBufferName() {
796 return "<module-includes>";
797 }
798
799 /// Print the module map for this module to the given stream.
800 void print(raw_ostream &OS, unsigned Indent = 0, bool Dump = false) const;
801
802 /// Dump the contents of this module to the given output stream.
803 void dump() const;
804
805private:
806 void buildVisibleModulesCache() const;
807};
808
809/// A set of visible modules.
811public:
812 VisibleModuleSet() = default;
814 : ImportLocs(std::move(O.ImportLocs)), Generation(O.Generation ? 1 : 0) {
815 O.ImportLocs.clear();
816 ++O.Generation;
817 }
818
819 /// Move from another visible modules set. Guaranteed to leave the source
820 /// empty and bump the generation on both.
822 ImportLocs = std::move(O.ImportLocs);
823 O.ImportLocs.clear();
824 ++O.Generation;
825 ++Generation;
826 return *this;
827 }
828
829 /// Get the current visibility generation. Incremented each time the
830 /// set of visible modules changes in any way.
831 unsigned getGeneration() const { return Generation; }
832
833 /// Determine whether a module is visible.
834 bool isVisible(const Module *M) const {
835 return getImportLoc(M).isValid();
836 }
837
838 /// Get the location at which the import of a module was triggered.
840 return M->getVisibilityID() < ImportLocs.size()
841 ? ImportLocs[M->getVisibilityID()]
842 : SourceLocation();
843 }
844
845 /// A callback to call when a module is made visible (directly or
846 /// indirectly) by a call to \ref setVisible.
847 using VisibleCallback = llvm::function_ref<void(Module *M)>;
848
849 /// A callback to call when a module conflict is found. \p Path
850 /// consists of a sequence of modules from the conflicting module to the one
851 /// made visible, where each was exported by the next.
853 llvm::function_ref<void(ArrayRef<Module *> Path, Module *Conflict,
854 StringRef Message)>;
855
856 /// Make a specific module visible.
857 void setVisible(Module *M, SourceLocation Loc,
858 VisibleCallback Vis = [](Module *) {},
860 StringRef) {});
861private:
862 /// Import locations for each visible module. Indexed by the module's
863 /// VisibilityID.
864 std::vector<SourceLocation> ImportLocs;
865
866 /// Visibility generation, bumped every time the visibility state changes.
867 unsigned Generation = 0;
868};
869
870/// Abstracts clang modules and precompiled header files and holds
871/// everything needed to generate debug info for an imported module
872/// or PCH.
874 StringRef PCHModuleName;
875 StringRef Path;
876 StringRef ASTFile;
877 ASTFileSignature Signature;
878 Module *ClangModule = nullptr;
879
880public:
882 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
883 ASTFileSignature Signature)
884 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
885 ASTFile(std::move(ASTFile)), Signature(Signature) {}
887
888 std::string getModuleName() const;
889 StringRef getPath() const { return Path; }
890 StringRef getASTFile() const { return ASTFile; }
891 ASTFileSignature getSignature() const { return Signature; }
892 Module *getModuleOrNull() const { return ClangModule; }
893};
894
895
896} // namespace clang
897
898#endif // LLVM_CLANG_BASIC_MODULE_H
Defines interfaces for clang::DirectoryEntry and clang::DirectoryEntryRef.
Defines interfaces for clang::FileEntry and clang::FileEntryRef.
StringRef Filename
Definition: Format.cpp:2971
llvm::MachO::Target Target
Definition: MachO.h:48
Defines the clang::SourceLocation class and associated facilities.
Abstracts clang modules and precompiled header files and holds everything needed to generate debug in...
Definition: Module.h:873
Module * getModuleOrNull() const
Definition: Module.h:892
ASTFileSignature getSignature() const
Definition: Module.h:891
std::string getModuleName() const
Definition: Module.cpp:736
ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile, ASTFileSignature Signature)
Definition: Module.h:882
StringRef getASTFile() const
Definition: Module.h:890
StringRef getPath() const
Definition: Module.h:889
A reference to a DirectoryEntry that includes the name of the directory as it was accessed by the Fil...
A reference to a FileEntry that includes the name of the file as it was accessed by the FileManager's...
Definition: FileEntry.h:57
Implements support for file system lookup, file system caching, and directory search management.
Definition: FileManager.h:53
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:461
Describes a module or submodule.
Definition: Module.h:105
StringRef getTopLevelModuleName() const
Retrieve the name of the top-level module.
Definition: Module.h:675
void addRequirement(StringRef Feature, bool RequiredState, const LangOptions &LangOpts, const TargetInfo &Target)
Add the given feature requirement to the list of features required by this module.
Definition: Module.cpp:319
unsigned IsExplicit
Whether this is an explicit submodule.
Definition: Module.h:327
SmallVector< ExportDecl, 2 > Exports
The set of export declarations.
Definition: Module.h:414
bool isForBuilding(const LangOptions &LangOpts) const
Determine whether this module can be built in this compilation.
Definition: Module.cpp:160
std::variant< std::monostate, FileEntryRef, DirectoryEntryRef > Umbrella
The umbrella header or directory.
Definition: Module.h:166
Module * findOrInferSubmodule(StringRef Name)
Definition: Module.cpp:365
unsigned InferSubmodules
Whether we should infer submodules for this module based on the headers.
Definition: Module.h:349
Module * findSubmodule(StringRef Name) const
Find the submodule with the given name.
Definition: Module.cpp:357
static const int NumHeaderKinds
Definition: Module.h:246
bool directlyUses(const Module *Requested)
Determine whether this module has declared its intention to directly use another module.
Definition: Module.cpp:293
bool isNamedModuleInterfaceHasInit() const
Definition: Module.h:627
std::vector< std::string > ConfigMacros
The set of "configuration macros", which are macros that (intentionally) change how this module is bu...
Definition: Module.h:471
SourceLocation InferredSubmoduleLoc
The location of the inferred submodule.
Definition: Module.h:397
unsigned IsUnimportable
Whether this module has declared itself unimportable, either because it's missing a requirement from ...
Definition: Module.h:304
bool isInterfaceOrPartition() const
Definition: Module.h:614
NameVisibilityKind NameVisibility
The visibility of names within this particular module.
Definition: Module.h:394
bool isModulePartitionImplementation() const
Is this a module partition implementation unit.
Definition: Module.h:602
NameVisibilityKind
Describes the visibility of the various names within a particular module.
Definition: Module.h:386
@ Hidden
All of the names in this module are hidden.
Definition: Module.h:388
@ AllVisible
All of the names in this module are visible.
Definition: Module.h:390
void print(raw_ostream &OS, unsigned Indent=0, bool Dump=false) const
Print the module map for this module to the given stream.
Definition: Module.cpp:482
bool isNamedModuleUnit() const
Is this a C++20 named module unit.
Definition: Module.h:619
SourceLocation DefinitionLoc
The location of the module definition.
Definition: Module.h:111
SmallVector< UnresolvedHeaderDirective, 1 > MissingHeaders
Headers that are mentioned in the module map file but could not be found on the file system.
Definition: Module.h:285
Module * Parent
The parent of this module.
Definition: Module.h:154
void markUnavailable(bool Unimportable)
Mark this module and all of its submodules as unavailable.
Definition: Module.cpp:331
SmallVector< UnresolvedHeaderDirective, 1 > UnresolvedHeaders
Headers that are mentioned in the module map file but that we have not yet attempted to resolve to a ...
Definition: Module.h:281
ModuleKind Kind
The kind of this module.
Definition: Module.h:150
bool isPrivateModule() const
Definition: Module.h:210
@ HK_PrivateTextual
Definition: Module.h:243
void addTopHeaderFilename(StringRef Filename)
Add a top-level header filename associated with this module.
Definition: Module.h:715
bool isUnimportable() const
Determine whether this module has been declared unimportable.
Definition: Module.h:505
bool fullModuleNameIs(ArrayRef< StringRef > nameParts) const
Whether the full name of this module is equal to joining nameParts with "."s.
Definition: Module.cpp:260
Module * getPrivateModuleFragment() const
Get the Private Module Fragment (sub-module) for this module, it there is one.
Definition: Module.cpp:391
SmallVector< Header, 2 > Headers[5]
The headers that are part of this module.
Definition: Module.h:265
void setASTFile(OptionalFileEntryRef File)
Set the serialized AST file for the top-level module of this module.
Definition: Module.h:685
unsigned IsInferred
Whether this is an inferred submodule (module * { ... }).
Definition: Module.h:342
llvm::SmallSetVector< Module *, 2 > Imports
The set of modules imported by this module, and on which this module depends.
Definition: Module.h:401
bool isModuleVisible(const Module *M) const
Determine whether the specified module would be visible to a lookup at the end of this module.
Definition: Module.h:771
unsigned IsSystem
Whether this is a "system" module (which assumes that all headers in it are system headers).
Definition: Module.h:332
bool isModuleInterfaceUnit() const
Definition: Module.h:623
static StringRef getModuleInputBufferName()
Definition: Module.h:795
std::string Name
The name of this module.
Definition: Module.h:108
Module * getGlobalModuleFragment() const
Get the Global Module Fragment (sub-module) for this module, it there is one.
Definition: Module.cpp:380
bool isSubFramework() const
Determine whether this module is a subframework of another framework.
Definition: Module.h:577
llvm::iterator_range< submodule_iterator > submodules()
Definition: Module.h:782
unsigned IsExternC
Whether this is an 'extern "C"' module (which implicitly puts all headers in it within an 'extern "C"...
Definition: Module.h:338
bool isModuleMapModule() const
Definition: Module.h:212
unsigned ModuleMapIsPrivate
Whether this module came from a "private" module map, found next to a regular (public) module map.
Definition: Module.h:377
llvm::SmallVector< LinkLibrary, 2 > LinkLibraries
The set of libraries or frameworks to link against when an entity from this module is used.
Definition: Module.h:463
SmallVector< UnresolvedExportDecl, 2 > UnresolvedExports
The set of export declarations that have yet to be resolved.
Definition: Module.h:432
void setParent(Module *M)
Set the parent of this module.
Definition: Module.h:583
std::optional< Header > getUmbrellaHeaderAsWritten() const
Retrieve the umbrella header as written.
Definition: Module.h:699
unsigned getVisibilityID() const
Definition: Module.h:777
SmallVector< Requirement, 2 > Requirements
The set of language features required to use this module.
Definition: Module.h:295
bool isHeaderLikeModule() const
Is this module have similar semantics as headers.
Definition: Module.h:591
bool isModuleImplementation() const
Is this a module implementation.
Definition: Module.h:607
llvm::SmallSetVector< const Module *, 2 > UndeclaredUses
When NoUndeclaredIncludes is true, the set of modules this module tried to import but didn't because ...
Definition: Module.h:442
std::string UmbrellaRelativeToRootModuleDirectory
Definition: Module.h:175
OptionalDirectoryEntryRef Directory
The build directory of this module.
Definition: Module.h:159
std::vector< Module * >::iterator submodule_iterator
Definition: Module.h:779
llvm::iterator_range< submodule_const_iterator > submodules() const
Definition: Module.h:785
SmallVector< ModuleId, 2 > UnresolvedDirectUses
The set of use declarations that have yet to be resolved.
Definition: Module.h:438
unsigned NamedModuleHasInit
Whether this C++20 named modules doesn't need an initializer.
Definition: Module.h:382
unsigned NoUndeclaredIncludes
Whether files in this module can only include non-modular headers and headers from used modules.
Definition: Module.h:372
StringRef getPrimaryModuleInterfaceName() const
Get the primary module interface name from a partition.
Definition: Module.h:630
bool isModulePartition() const
Is this a module partition.
Definition: Module.h:596
llvm::SmallSetVector< Module *, 2 > AffectingClangModules
The set of top-level modules that affected the compilation of this module, but were not imported.
Definition: Module.h:405
SmallVector< Module *, 2 > DirectUses
The directly used modules.
Definition: Module.h:435
unsigned ConfigMacrosExhaustive
Whether the set of configuration macros is exhaustive.
Definition: Module.h:367
std::string PresumedModuleMapFile
The presumed file name for the module map defining this module.
Definition: Module.h:163
std::string APINotesFile
For the debug info, the path to this module's .apinotes file, if any.
Definition: Module.h:182
ASTFileSignature Signature
The module signature.
Definition: Module.h:169
bool isExplicitGlobalModule() const
Definition: Module.h:203
bool isGlobalModule() const
Does this Module scope describe a fragment of the global module within some C++ module.
Definition: Module.h:200
unsigned InferExportWildcard
Whether, when inferring submodules, the inferr submodules should export all modules they import (e....
Definition: Module.h:359
bool isSubModule() const
Determine whether this module is a submodule.
Definition: Module.h:554
void getExportedModules(SmallVectorImpl< Module * > &Exported) const
Appends this module's list of exported modules to Exported.
Definition: Module.cpp:402
std::pair< std::string, bool > Requirement
An individual requirement: a feature name and a flag indicating the required state of that feature.
Definition: Module.h:289
std::vector< UnresolvedConflict > UnresolvedConflicts
The list of conflicts for which the module-id has not yet been resolved.
Definition: Module.h:484
unsigned IsFromModuleFile
Whether this module was loaded from a module file.
Definition: Module.h:319
bool isSubModuleOf(const Module *Other) const
Check if this module is a (possibly transitive) submodule of Other.
Definition: Module.cpp:198
bool isPartOfFramework() const
Determine whether this module is a part of a framework, either because it is a framework module or be...
Definition: Module.h:567
ArrayRef< FileEntryRef > getTopHeaders(FileManager &FileMgr)
The top-level headers associated with this module.
Definition: Module.cpp:282
bool isAvailable() const
Determine whether this module is available for use within the current translation unit.
Definition: Module.h:528
llvm::PointerIntPair< Module *, 1, bool > ExportDecl
Describes an exported module.
Definition: Module.h:411
std::optional< DirectoryName > getUmbrellaDirAsWritten() const
Retrieve the umbrella directory as written.
Definition: Module.h:691
unsigned HasIncompatibleModuleFile
Whether we tried and failed to load a module file for this module.
Definition: Module.h:308
bool isImplicitGlobalModule() const
Definition: Module.h:206
bool isHeaderUnit() const
Is this module a header unit.
Definition: Module.h:612
@ ModuleImplementationUnit
This is a C++20 module implementation unit.
Definition: Module.h:128
@ ModuleMapModule
This is a module that was defined by a module map and built out of header files.
Definition: Module.h:119
@ ImplicitGlobalModuleFragment
This is an implicit fragment of the global module which contains only language linkage declarations (...
Definition: Module.h:146
@ ModulePartitionInterface
This is a C++20 module partition interface.
Definition: Module.h:131
@ ModuleInterfaceUnit
This is a C++20 module interface unit.
Definition: Module.h:125
@ ModuleHeaderUnit
This is a C++20 header unit.
Definition: Module.h:122
@ ModulePartitionImplementation
This is a C++20 module partition implementation.
Definition: Module.h:134
@ PrivateModuleFragment
This is the private module fragment within some C++ module.
Definition: Module.h:141
@ ExplicitGlobalModuleFragment
This is the explicit Global Module Fragment of a modular TU.
Definition: Module.h:138
void dump() const
Dump the contents of this module to the given output stream.
Module * ShadowingModule
A module with the same name that shadows this module.
Definition: Module.h:298
unsigned IsFramework
Whether this is a framework module.
Definition: Module.h:323
std::string ExportAsModule
The module through which entities defined in this module will eventually be exposed,...
Definition: Module.h:179
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
Definition: Module.cpp:244
bool isNamedModule() const
Does this Module is a named module of a standard named module?
Definition: Module.h:185
std::string UmbrellaAsWritten
The name of the umbrella entry, as written in the module map.
Definition: Module.h:172
void addTopHeader(FileEntryRef File)
Add a top-level header associated with this module.
Definition: Module.cpp:277
std::vector< Module * >::const_iterator submodule_const_iterator
Definition: Module.h:780
unsigned IsAvailable
Whether this module is available in the current translation unit.
Definition: Module.h:315
unsigned InferExplicitSubmodules
Whether, when inferring submodules, the inferred submodules should be explicit.
Definition: Module.h:354
Module * getTopLevelModule()
Retrieve the top-level module for this (sub)module, which may be this module.
Definition: Module.h:665
OptionalFileEntryRef getASTFile() const
The serialized AST file for this module, if one was created.
Definition: Module.h:680
OptionalDirectoryEntryRef getEffectiveUmbrellaDir() const
Get the effective umbrella directory for this module: either the one explicitly written in the module...
Definition: Module.cpp:269
bool UseExportAsModuleLinkName
Autolinking uses the framework name for linking purposes when this is false and the export_as name ot...
Definition: Module.h:467
std::vector< Conflict > Conflicts
The list of conflicts.
Definition: Module.h:496
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
Exposes information about the current target.
Definition: TargetInfo.h:214
A set of visible modules.
Definition: Module.h:810
llvm::function_ref< void(ArrayRef< Module * > Path, Module *Conflict, StringRef Message)> ConflictCallback
A callback to call when a module conflict is found.
Definition: Module.h:854
llvm::function_ref< void(Module *M)> VisibleCallback
A callback to call when a module is made visible (directly or indirectly) by a call to setVisible.
Definition: Module.h:847
SourceLocation getImportLoc(const Module *M) const
Get the location at which the import of a module was triggered.
Definition: Module.h:839
bool isVisible(const Module *M) const
Determine whether a module is visible.
Definition: Module.h:834
unsigned getGeneration() const
Get the current visibility generation.
Definition: Module.h:831
VisibleModuleSet & operator=(VisibleModuleSet &&O)
Move from another visible modules set.
Definition: Module.h:821
VisibleModuleSet(VisibleModuleSet &&O)
Definition: Module.h:813
void setVisible(Module *M, SourceLocation Loc, VisibleCallback Vis=[](Module *) {}, ConflictCallback Cb=[](ArrayRef< Module * >, Module *, StringRef) {})
Make a specific module visible.
Definition: Module.cpp:681
The JSON file list parser is used to communicate input to InstallAPI.
@ Other
Other implicit parameter.
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
Definition: Format.h:5394
#define bool
Definition: stdbool.h:20
The signature of a module, which is a hash of the AST content.
Definition: Module.h:57
uint64_t truncatedValue() const
Returns the value truncated to the size of an uint64_t.
Definition: Module.h:67
static constexpr size_t size
Definition: Module.h:60
static ASTFileSignature create(std::array< uint8_t, 20 > Bytes)
Definition: Module.h:75
ASTFileSignature(BaseT S={{0}})
Definition: Module.h:62
static ASTFileSignature createDummy()
Definition: Module.h:85
std::array< uint8_t, 20 > BaseT
Definition: Module.h:58
static ASTFileSignature createDISentinel()
Definition: Module.h:79
static ASTFileSignature create(InputIt First, InputIt Last)
Definition: Module.h:92
A conflict between two modules.
Definition: Module.h:487
Module * Other
The module that this module conflicts with.
Definition: Module.h:489
std::string Message
The message provided to the user when there is a conflict.
Definition: Module.h:492
Information about a directory name as found in the module map file.
Definition: Module.h:258
std::string PathRelativeToRootModuleDirectory
Definition: Module.h:260
DirectoryEntryRef Entry
Definition: Module.h:261
std::string NameAsWritten
Definition: Module.h:259
Information about a header directive as found in the module map file.
Definition: Module.h:250
std::string PathRelativeToRootModuleDirectory
Definition: Module.h:252
std::string NameAsWritten
Definition: Module.h:251
FileEntryRef Entry
Definition: Module.h:253
A library or framework to link against when an entity from this module is used.
Definition: Module.h:446
bool IsFramework
Whether this is a framework rather than a library.
Definition: Module.h:458
LinkLibrary(const std::string &Library, bool IsFramework)
Definition: Module.h:448
std::string Library
The library to link against.
Definition: Module.h:455
An unresolved conflict with another module.
Definition: Module.h:474
std::string Message
The message provided to the user when there is a conflict.
Definition: Module.h:479
ModuleId Id
The (unresolved) module id.
Definition: Module.h:476
Describes an exported module that has not yet been resolved (perhaps because the module it refers to ...
Definition: Module.h:418
bool Wildcard
Whether this export declaration ends in a wildcard, indicating that all of its submodules should be e...
Definition: Module.h:428
ModuleId Id
The name of the module.
Definition: Module.h:423
SourceLocation ExportLoc
The location of the 'export' keyword in the module map file.
Definition: Module.h:420
Stored information about a header directive that was found in the module map file but has not been re...
Definition: Module.h:269
std::optional< off_t > Size
Definition: Module.h:275
std::optional< time_t > ModTime
Definition: Module.h:276