[clang] fe9c332 - Revert "Reland "[modules] Fix error about the same module being defined in different .pcm files when using VFS overlays.""

Volodymyr Sapsai via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 10 15:14:45 PDT 2023


Author: Volodymyr Sapsai
Date: 2023-08-10T15:14:26-07:00
New Revision: fe9c332408603e50ab846c1ad8aeb705df2950b1

URL: https://github.com/llvm/llvm-project/commit/fe9c332408603e50ab846c1ad8aeb705df2950b1
DIFF: https://github.com/llvm/llvm-project/commit/fe9c332408603e50ab846c1ad8aeb705df2950b1.diff

LOG: Revert "Reland "[modules] Fix error about the same module being defined in different .pcm files when using VFS overlays.""

This reverts commit b070be82bb8fb4414a8a6eb4fbfc77921d89fa4b.

Added: 
    

Modified: 
    clang/lib/Lex/HeaderSearch.cpp
    clang/lib/Serialization/ASTWriter.cpp

Removed: 
    clang/test/VFS/module-map-path.m


################################################################################
diff  --git a/clang/lib/Lex/HeaderSearch.cpp b/clang/lib/Lex/HeaderSearch.cpp
index 80e1bad72ce9b7..f42d51d65dcdf3 100644
--- a/clang/lib/Lex/HeaderSearch.cpp
+++ b/clang/lib/Lex/HeaderSearch.cpp
@@ -177,7 +177,7 @@ std::string HeaderSearch::getCachedModuleFileName(Module *Module) {
   // *.modulemap file. In this case, just return an empty string.
   if (!ModuleMap)
     return {};
-  return getCachedModuleFileName(Module->Name, ModuleMap->getNameAsRequested());
+  return getCachedModuleFileName(Module->Name, ModuleMap->getName());
 }
 
 std::string HeaderSearch::getPrebuiltModuleFileName(StringRef ModuleName,

diff  --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp
index 289c0383cd4b0e..8b0015f1ee9f6c 100644
--- a/clang/lib/Serialization/ASTWriter.cpp
+++ b/clang/lib/Serialization/ASTWriter.cpp
@@ -1327,8 +1327,7 @@ void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context,
 
     auto &Map = PP.getHeaderSearchInfo().getModuleMap();
     AddPath(WritingModule->PresumedModuleMapFile.empty()
-                ? Map.getModuleMapFileForUniquing(WritingModule)
-                      ->getNameAsRequested()
+                ? Map.getModuleMapFileForUniquing(WritingModule)->getName()
                 : StringRef(WritingModule->PresumedModuleMapFile),
             Record);
 

diff  --git a/clang/test/VFS/module-map-path.m b/clang/test/VFS/module-map-path.m
deleted file mode 100644
index da7fb3f0089578..00000000000000
--- a/clang/test/VFS/module-map-path.m
+++ /dev/null
@@ -1,110 +0,0 @@
-// Test the module map path is consistent between clang invocations when using VFS overlays.
-
-// RUN: rm -rf %t
-// RUN: split-file %s %t
-
-// Pre-populate the module cache with the modules that don't use VFS overlays.
-// RUN: %clang_cc1 -fsyntax-only -F%/t/Frameworks -I%/t/include %t/prepopulate_module_cache.m \
-// RUN:     -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache
-
-// Execute a compilation with VFS overlay. .pcm file path looks like <hash1>/ModuleName-<hash2>.pcm.
-// <hash1> corresponds to the compilation settings like language options.
-// <hash2> corresponds to the module map path. So if any of those change, we should use a 
diff erent module.
-// But for VFS overlay we make an exception that it's not a part of <hash1> to reduce the number of built .pcm files.
-// Test that paths in overlays don't leak into <hash2> and don't cause using 2 .pcm files for the same module.
-// DEFINE: %{command} = %clang_cc1 -fsyntax-only -verify -F%/t/Frameworks -I%/t/include %t/test.m \
-// DEFINE:    -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache
-// RUN: sed -e "s at TMP_DIR@%{/t:regex_replacement}@g" -e "s at USE_EXTERNAL_NAMES_OPTION@@g" %t/overlay.yaml.template > %t/external-names-default.yaml
-// RUN: %{command} -ivfsoverlay %t/external-names-default.yaml
-
-// RUN: sed -e "s at TMP_DIR@%{/t:regex_replacement}@g" -e "s at USE_EXTERNAL_NAMES_OPTION@'use-external-names': true, at g" %t/overlay.yaml.template > %t/external-names-true.yaml
-// RUN: %{command} -ivfsoverlay %t/external-names-true.yaml
-
-// RUN: sed -e "s at TMP_DIR@%{/t:regex_replacement}@g" -e "s at USE_EXTERNAL_NAMES_OPTION@'use-external-names': false, at g" %t/overlay.yaml.template > %t/external-names-false.yaml
-// RUN: %{command} -ivfsoverlay %t/external-names-false.yaml
-
-//--- prepopulate_module_cache.m
-#import <Redirecting/Redirecting.h>
-
-//--- test.m
-// At first import multi-path modules directly, so clang decides which .pcm file they should belong to.
-#import <MultiPath/MultiPath.h>
-#import <MultiPathHeader.h>
-
-// Then import a module from the module cache and all its transitive dependencies.
-// Make sure the .pcm files loaded directly are the same as 'Redirecting' is referencing.
-#import <Redirecting/Redirecting.h>
-// expected-no-diagnostics
-
-
-//--- Frameworks/MultiPath.framework/Headers/MultiPath.h
-void multiPathFramework(void);
-
-//--- Frameworks/MultiPath.framework/Modules/module.modulemap
-framework module MultiPath {
-    header "MultiPath.h"
-    export *
-}
-
-
-//--- include/MultiPathHeader.h
-void multiPathHeader(void);
-
-//--- include/module.modulemap
-module MultiPathHeader {
-    header "MultiPathHeader.h"
-    export *
-}
-
-
-//--- Frameworks/Redirecting.framework/Headers/Redirecting.h
-#import <MultiPath/MultiPath.h>
-#import <MultiPathHeader.h>
-
-//--- Frameworks/Redirecting.framework/Modules/module.modulemap
-framework module Redirecting {
-    header "Redirecting.h"
-    export *
-}
-
-
-//--- BuildTemporaries/MultiPath.h
-void multiPathFramework(void);
-//--- BuildTemporaries/module.modulemap
-framework module MultiPath {
-    header "MultiPath.h"
-    export *
-}
-//--- BuildTemporaries/header.h
-void multiPathHeader(void);
-//--- BuildTemporaries/include.modulemap
-module MultiPathHeader {
-    header "MultiPathHeader.h"
-    export *
-}
-
-//--- overlay.yaml.template
-{
-  'version': 0,
-  USE_EXTERNAL_NAMES_OPTION
-  'roots': [
-    { 'name': 'TMP_DIR/Frameworks/MultiPath.framework/Headers', 'type': 'directory',
-      'contents': [
-        { 'name': 'MultiPath.h', 'type': 'file',
-          'external-contents': 'TMP_DIR/BuildTemporaries/MultiPath.h'}
-    ]},
-    { 'name': 'TMP_DIR/Frameworks/MultiPath.framework/Modules', 'type': 'directory',
-      'contents': [
-        { 'name': 'module.modulemap', 'type': 'file',
-          'external-contents': 'TMP_DIR/BuildTemporaries/module.modulemap'}
-    ]},
-    { 'name': 'TMP_DIR/include', 'type': 'directory',
-      'contents': [
-        { 'name': 'MultiPathHeader.h', 'type': 'file',
-          'external-contents': 'TMP_DIR/BuildTemporaries/header.h'},
-        { 'name': 'module.modulemap', 'type': 'file',
-          'external-contents': 'TMP_DIR/BuildTemporaries/include.modulemap'}
-    ]}
-  ]
-}
-


        


More information about the cfe-commits mailing list