@@ -2874,6 +2874,8 @@ ASTReader::ReadControlBlock(ModuleFile &F,
2874
2874
while (Idx < N) {
2875
2875
// Read information about the AST file.
2876
2876
ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
2877
+ // Whether we're importing a standard c++ module.
2878
+ bool IsImportingStdCXXModule = Record[Idx++];
2877
2879
// The import location will be the local one for now; we will adjust
2878
2880
// all import locations of module imports after the global source
2879
2881
// location info are setup, in ReadAST.
@@ -2891,18 +2893,25 @@ ASTReader::ReadControlBlock(ModuleFile &F,
2891
2893
2892
2894
// For prebuilt and explicit modules first consult the file map for
2893
2895
// an override. Note that here we don't search prebuilt module
2894
- // directories, only the explicit name to file mappings. Also, we will
2895
- // still verify the size/signature making sure it is essentially the
2896
- // same file but perhaps in a different location.
2896
+ // directories if we're not importing standard c++ module, only the
2897
+ // explicit name to file mappings. Also, we will still verify the
2898
+ // size/signature making sure it is essentially the same file but
2899
+ // perhaps in a different location.
2897
2900
if (ImportedKind == MK_PrebuiltModule || ImportedKind == MK_ExplicitModule)
2898
2901
ImportedFile = PP.getHeaderSearchInfo ().getPrebuiltModuleFileName (
2899
- ImportedName, /* FileMapOnly*/ true );
2902
+ ImportedName, /* FileMapOnly*/ !IsImportingStdCXXModule);
2903
+
2904
+ if (ImportedFile.empty ()) {
2905
+ // It is deprecated for C++20 Named modules to use the implicitly
2906
+ // paths.
2907
+ if (IsImportingStdCXXModule)
2908
+ Diag (clang::diag::warn_reading_std_cxx_module_by_implicit_paths)
2909
+ << ImportedName;
2900
2910
2901
- if (ImportedFile.empty ())
2902
2911
// Use BaseDirectoryAsWritten to ensure we use the same path in the
2903
2912
// ModuleCache as when writing.
2904
2913
ImportedFile = ReadPath (BaseDirectoryAsWritten, Record, Idx);
2905
- else
2914
+ } else
2906
2915
SkipPath (Record, Idx);
2907
2916
2908
2917
// If our client can't cope with us being out of date, we can't cope with
@@ -5445,9 +5454,9 @@ bool ASTReader::readASTFileControlBlock(
5445
5454
unsigned Idx = 0 , N = Record.size ();
5446
5455
while (Idx < N) {
5447
5456
// Read information about the AST file.
5448
- Idx +=
5449
- 1 + 1 + 1 + 1 +
5450
- ASTFileSignature::size; // Kind, ImportLoc, Size, ModTime, Signature
5457
+
5458
+ // Kind, StandardCXXModule, ImportLoc, Size, ModTime, Signature
5459
+ Idx += 1 + 1 + 1 + 1 + 1 + ASTFileSignature::size;
5451
5460
std::string ModuleName = ReadString (Record, Idx);
5452
5461
std::string Filename = ReadString (Record, Idx);
5453
5462
ResolveImportedPath (Filename, ModuleDir);
0 commit comments