https://github.com/cyndyishida created https://github.com/llvm/llvm-project/pull/132237
When a module is being scanned, it can depend on modules that have already been built from a pch dependency. When this happens, the pcm files are reused for the module dependencies. When this is the case, check if input files recorded from the PCMs come from the provided stable directories transitively since the scanner will not have access to the full set of file dependencies from prebuilt modules. >From ccbcd77e5bd6712531a23bcd79fc9380fdc3d9bf Mon Sep 17 00:00:00 2001 From: Cyndy Ishida <cyndy_ish...@apple.com> Date: Wed, 12 Mar 2025 21:26:36 -0700 Subject: [PATCH] [clang][DependencyScanning] Track dependencies from prebuilt modules to determine IsInStableDir When a module is being scanned, it can depend on modules that have already been built from a pch dependency. When this happens, the pcm files are reused for the module dependencies. When this is the case, check if input files recorded from the PCMs come from the provided stable directories transitively, since the scanner will not have access to the full set of file dependencies from prebuilt modules. --- clang/include/clang/Serialization/ASTReader.h | 11 ++ .../DependencyScanning/ModuleDepCollector.h | 59 +++++++++- clang/lib/Serialization/ASTReader.cpp | 6 +- .../DependencyScanningWorker.cpp | 111 +++++++++++++++--- .../DependencyScanning/ModuleDepCollector.cpp | 89 ++++++++------ .../prebuilt-modules-in-stable-dirs.c | 24 +++- 6 files changed, 233 insertions(+), 67 deletions(-) diff --git a/clang/include/clang/Serialization/ASTReader.h b/clang/include/clang/Serialization/ASTReader.h index 2779b3d1cf2ea..9e360c9409b89 100644 --- a/clang/include/clang/Serialization/ASTReader.h +++ b/clang/include/clang/Serialization/ASTReader.h @@ -237,6 +237,17 @@ class ASTReaderListener { return true; } + /// Overloaded member function of \c visitInputFile that should + /// be defined when the input file contains both the virtual and external + /// paths, for example when deserializing input files from AST files. + /// + /// \returns true to continue receiving the next input file, false to stop. + virtual bool visitInputFile(StringRef FilenameAsRequested, StringRef Filename, + bool isSystem, bool isOverridden, + bool isExplicitModule) { + return true; + } + /// Returns true if this \c ASTReaderListener wants to receive the /// imports of the AST file via \c visitImport, false otherwise. virtual bool needsImportVisitation() const { return false; } diff --git a/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h b/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h index 422202caddfd4..95fcb25aca450 100644 --- a/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h +++ b/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h @@ -33,6 +33,7 @@ namespace dependencies { class DependencyActionController; class DependencyConsumer; +class PrebuiltModuleASTAttrs; /// Modular dependency that has already been built prior to the dependency scan. struct PrebuiltModuleDep { @@ -46,6 +47,47 @@ struct PrebuiltModuleDep { ModuleMapFile(M->PresumedModuleMapFile) {} }; +/// Attributes loaded from AST files of prebuilt modules collected prior to +/// ModuleDepCollector creation. +using PrebuiltModulesAttrsMap = llvm::StringMap<PrebuiltModuleASTAttrs>; +class PrebuiltModuleASTAttrs { +public: + /// When a module is discovered to not be in stable directories, traverse & + /// update all modules that depend on it. + void + updateDependentsNotInStableDirs(PrebuiltModulesAttrsMap &PrebuiltModulesMap); + + /// Read-only access to whether the module is made up of dependencies in + /// stable directories. + bool isInStableDir() const { return IsInStableDirs; } + + /// Read-only access to vfs map files. + const llvm::StringSet<> &getVFS() const { return VFSMap; } + + /// Update the VFSMap to the one discovered from serializing the AST file. + void setVFS(llvm::StringSet<> &&VFS) { VFSMap = std::move(VFS); } + + /// Add a direct dependent module file, so it can be updated if the current + /// module is from stable directores. + void addDependent(StringRef ModuleFile) { + ModuleFileDependents.insert(ModuleFile); + } + + /// Update whether the prebuilt module resolves entirely in a stable + /// directories. + void setInStableDir(bool V = false) { + // Cannot reset attribute once it's false. + if (!IsInStableDirs) + return; + IsInStableDirs = V; + } + +private: + llvm::StringSet<> VFSMap; + bool IsInStableDirs = true; + std::set<StringRef> ModuleFileDependents; +}; + /// This is used to identify a specific module. struct ModuleID { /// The name of the module. This may include `:` for C++20 module partitions, @@ -170,8 +212,6 @@ struct ModuleDeps { BuildInfo; }; -using PrebuiltModuleVFSMapT = llvm::StringMap<llvm::StringSet<>>; - class ModuleDepCollector; /// Callback that records textual includes and direct modular includes/imports @@ -241,7 +281,7 @@ class ModuleDepCollector final : public DependencyCollector { CompilerInstance &ScanInstance, DependencyConsumer &C, DependencyActionController &Controller, CompilerInvocation OriginalCI, - PrebuiltModuleVFSMapT PrebuiltModuleVFSMap); + const PrebuiltModulesAttrsMap PrebuiltModulesASTMap); void attachToPreprocessor(Preprocessor &PP) override; void attachToASTReader(ASTReader &R) override; @@ -261,8 +301,9 @@ class ModuleDepCollector final : public DependencyCollector { DependencyConsumer &Consumer; /// Callbacks for computing dependency information. DependencyActionController &Controller; - /// Mapping from prebuilt AST files to their sorted list of VFS overlay files. - PrebuiltModuleVFSMapT PrebuiltModuleVFSMap; + /// Mapping from prebuilt AST filepaths to their attributes referenced during + /// dependency collecting. + const PrebuiltModulesAttrsMap PrebuiltModulesASTMap; /// Path to the main source file. std::string MainFile; /// Hash identifying the compilation conditions of the current TU. @@ -338,6 +379,14 @@ void resetBenignCodeGenOptions(frontend::ActionKind ProgramAction, bool isPathInStableDir(const ArrayRef<StringRef> Directories, const StringRef Input); +/// Determine if options collected from a module's +/// compilation can safely be considered as stable. +/// +/// \param Directories Paths known to be in a stable location. e.g. Sysroot. +/// \param HSOpts Header search options derived from the compiler invocation. +bool areOptionsInStableDir(const ArrayRef<StringRef> Directories, + const HeaderSearchOptions &HSOpts); + } // end namespace dependencies } // end namespace tooling } // end namespace clang diff --git a/clang/lib/Serialization/ASTReader.cpp b/clang/lib/Serialization/ASTReader.cpp index 2c73501821bff..025b5fa9162aa 100644 --- a/clang/lib/Serialization/ASTReader.cpp +++ b/clang/lib/Serialization/ASTReader.cpp @@ -5834,9 +5834,13 @@ bool ASTReader::readASTFileControlBlock( break; case INPUT_FILE: bool Overridden = static_cast<bool>(Record[3]); + size_t FilenameLen = ModuleDir.size() + Record[7] + 1; auto Filename = ResolveImportedPath(PathBuf, Blob, ModuleDir); + StringRef FilenameAsRequested = Filename->substr(0, FilenameLen); + StringRef ExternalFilename = Filename->substr(FilenameLen); shouldContinue = Listener.visitInputFile( - *Filename, isSystemFile, Overridden, /*IsExplicitModule=*/false); + FilenameAsRequested, ExternalFilename, isSystemFile, Overridden, + /*IsExplicitModule=*/false); break; } if (!shouldContinue) diff --git a/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp b/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp index 697f26ee5d12f..2f7fff3d8dd0c 100644 --- a/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp +++ b/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp @@ -89,37 +89,99 @@ static bool checkHeaderSearchPaths(const HeaderSearchOptions &HSOpts, using PrebuiltModuleFilesT = decltype(HeaderSearchOptions::PrebuiltModuleFiles); -/// A listener that collects the imported modules and optionally the input -/// files. +/// A listener that collects the imported modules and the input +/// files. While visiting, collect vfsoverlays and file inputs that determine +/// whether prebuilt modules fully resolve in stable directories. class PrebuiltModuleListener : public ASTReaderListener { public: PrebuiltModuleListener(PrebuiltModuleFilesT &PrebuiltModuleFiles, llvm::SmallVector<std::string> &NewModuleFiles, - PrebuiltModuleVFSMapT &PrebuiltModuleVFSMap, + PrebuiltModulesAttrsMap &PrebuiltModulesASTMap, const HeaderSearchOptions &HSOpts, - const LangOptions &LangOpts, DiagnosticsEngine &Diags) + const LangOptions &LangOpts, DiagnosticsEngine &Diags, + const llvm::SmallVector<StringRef> &StableDirs) : PrebuiltModuleFiles(PrebuiltModuleFiles), NewModuleFiles(NewModuleFiles), - PrebuiltModuleVFSMap(PrebuiltModuleVFSMap), ExistingHSOpts(HSOpts), - ExistingLangOpts(LangOpts), Diags(Diags) {} + PrebuiltModulesASTMap(PrebuiltModulesASTMap), ExistingHSOpts(HSOpts), + ExistingLangOpts(LangOpts), Diags(Diags), StableDirs(StableDirs) {} bool needsImportVisitation() const override { return true; } + bool needsInputFileVisitation() override { return true; } + bool needsSystemInputFileVisitation() override { return true; } + /// Accumulate the modules are transitively depended on by the initial + /// prebuilt module. void visitImport(StringRef ModuleName, StringRef Filename) override { if (PrebuiltModuleFiles.insert({ModuleName.str(), Filename.str()}).second) NewModuleFiles.push_back(Filename.str()); + + if (PrebuiltModulesASTMap.try_emplace(Filename).second) + PrebuiltModulesASTMap[Filename].setInStableDir(!StableDirs.empty()); + + if (auto It = PrebuiltModulesASTMap.find(CurrentFile); + It != PrebuiltModulesASTMap.end() && CurrentFile != Filename) + PrebuiltModulesASTMap[Filename].addDependent(It->getKey()); + } + + /// For each input file discovered, check whether it's external path is in a + /// stable directory. Traversal is stopped if the current module is not + /// considered stable. + bool visitInputFile(StringRef FilenameAsRequested, StringRef ExternalFilename, + bool isSystem, bool isOverridden, + bool isExplicitModule) override { + if (StableDirs.empty()) + return false; + if (!PrebuiltModulesASTMap.contains(CurrentFile) || + !PrebuiltModulesASTMap[CurrentFile].isInStableDir()) + return false; + + const StringRef FileToUse = + ExternalFilename.empty() ? FilenameAsRequested : ExternalFilename; + + PrebuiltModulesASTMap[CurrentFile].setInStableDir( + isPathInStableDir(StableDirs, FileToUse)); + return PrebuiltModulesASTMap[CurrentFile].isInStableDir(); } + /// Update which module that is being actively traversed. void visitModuleFile(StringRef Filename, serialization::ModuleKind Kind) override { + // If the CurrentFile is not + // considered stable, update any of it's transitive dependents. + if (PrebuiltModulesASTMap.contains(CurrentFile) && + !PrebuiltModulesASTMap[CurrentFile].isInStableDir()) + PrebuiltModulesASTMap[CurrentFile].updateDependentsNotInStableDirs( + PrebuiltModulesASTMap); CurrentFile = Filename; } + /// Check the header search options for a given module when considering + /// if the module comes from stable directories. + bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, + StringRef ModuleFilename, + StringRef SpecificModuleCachePath, + bool Complain) override { + if (PrebuiltModulesASTMap.try_emplace(CurrentFile).second) + PrebuiltModulesASTMap[CurrentFile].setInStableDir(!StableDirs.empty()); + + if (PrebuiltModulesASTMap[CurrentFile].isInStableDir()) + PrebuiltModulesASTMap[CurrentFile].setInStableDir( + areOptionsInStableDir(StableDirs, HSOpts)); + + return false; + } + + /// Accumulate vfsoverlays used to build these prebuilt modules. bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, bool Complain) override { std::vector<std::string> VFSOverlayFiles = HSOpts.VFSOverlayFiles; - PrebuiltModuleVFSMap.insert( - {CurrentFile, llvm::StringSet<>(VFSOverlayFiles)}); + + if (PrebuiltModulesASTMap.try_emplace(CurrentFile).second) + PrebuiltModulesASTMap[CurrentFile].setInStableDir(!StableDirs.empty()); + + PrebuiltModulesASTMap[CurrentFile].setVFS( + llvm::StringSet<>(VFSOverlayFiles)); + return checkHeaderSearchPaths( HSOpts, ExistingHSOpts, Complain ? &Diags : nullptr, ExistingLangOpts); } @@ -127,11 +189,12 @@ class PrebuiltModuleListener : public ASTReaderListener { private: PrebuiltModuleFilesT &PrebuiltModuleFiles; llvm::SmallVector<std::string> &NewModuleFiles; - PrebuiltModuleVFSMapT &PrebuiltModuleVFSMap; + PrebuiltModulesAttrsMap &PrebuiltModulesASTMap; const HeaderSearchOptions &ExistingHSOpts; const LangOptions &ExistingLangOpts; DiagnosticsEngine &Diags; std::string CurrentFile; + const llvm::SmallVector<StringRef> &StableDirs; }; /// Visit the given prebuilt module and collect all of the modules it @@ -139,13 +202,23 @@ class PrebuiltModuleListener : public ASTReaderListener { static bool visitPrebuiltModule(StringRef PrebuiltModuleFilename, CompilerInstance &CI, PrebuiltModuleFilesT &ModuleFiles, - PrebuiltModuleVFSMapT &PrebuiltModuleVFSMap, + PrebuiltModulesAttrsMap &PrebuiltModulesASTMap, DiagnosticsEngine &Diags) { + + // Gather the set of stable directories to use as transitive dependencies are + // discovered. + llvm::SmallVector<StringRef> StableDirs; + std::string SysrootToUse(CI.getHeaderSearchOpts().Sysroot); + if (!SysrootToUse.empty() && + (llvm::sys::path::root_directory(SysrootToUse) != SysrootToUse)) + StableDirs = {SysrootToUse, CI.getHeaderSearchOpts().ResourceDir}; + // List of module files to be processed. llvm::SmallVector<std::string> Worklist; - PrebuiltModuleListener Listener(ModuleFiles, Worklist, PrebuiltModuleVFSMap, + + PrebuiltModuleListener Listener(ModuleFiles, Worklist, PrebuiltModulesASTMap, CI.getHeaderSearchOpts(), CI.getLangOpts(), - Diags); + Diags, StableDirs); Listener.visitModuleFile(PrebuiltModuleFilename, serialization::MK_ExplicitModule); @@ -368,16 +441,18 @@ class DependencyScanningAction : public tooling::ToolAction { auto *FileMgr = ScanInstance.createFileManager(FS); ScanInstance.createSourceManager(*FileMgr); - // Store the list of prebuilt module files into header search options. This - // will prevent the implicit build to create duplicate modules and will - // force reuse of the existing prebuilt module files instead. - PrebuiltModuleVFSMapT PrebuiltModuleVFSMap; + // Store a mapping of prebuilt module files and their properties like header + // search options. This will prevent the implicit build to create duplicate + // modules and will force reuse of the existing prebuilt module files + // instead. + PrebuiltModulesAttrsMap PrebuiltModulesASTMap; + if (!ScanInstance.getPreprocessorOpts().ImplicitPCHInclude.empty()) if (visitPrebuiltModule( ScanInstance.getPreprocessorOpts().ImplicitPCHInclude, ScanInstance, ScanInstance.getHeaderSearchOpts().PrebuiltModuleFiles, - PrebuiltModuleVFSMap, ScanInstance.getDiagnostics())) + PrebuiltModulesASTMap, ScanInstance.getDiagnostics())) return false; // Create the dependency collector that will collect the produced @@ -407,7 +482,7 @@ class DependencyScanningAction : public tooling::ToolAction { case ScanningOutputFormat::Full: MDC = std::make_shared<ModuleDepCollector>( Service, std::move(Opts), ScanInstance, Consumer, Controller, - OriginalInvocation, std::move(PrebuiltModuleVFSMap)); + OriginalInvocation, std::move(PrebuiltModulesASTMap)); ScanInstance.addDependencyCollector(MDC); break; } diff --git a/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp b/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp index d715ef874e002..45e70bdcf68c5 100644 --- a/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp +++ b/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp @@ -39,10 +39,20 @@ const std::vector<std::string> &ModuleDeps::getBuildArguments() { return std::get<std::vector<std::string>>(BuildInfo); } +void PrebuiltModuleASTAttrs::updateDependentsNotInStableDirs( + PrebuiltModulesAttrsMap &PrebuiltModulesMap) { + setInStableDir(); + for (const auto Dep : ModuleFileDependents) { + if (!PrebuiltModulesMap[Dep].isInStableDir()) + return; + PrebuiltModulesMap[Dep].updateDependentsNotInStableDirs(PrebuiltModulesMap); + } +} + static void optimizeHeaderSearchOpts(HeaderSearchOptions &Opts, ASTReader &Reader, const serialization::ModuleFile &MF, - const PrebuiltModuleVFSMapT &PrebuiltModuleVFSMap, + const PrebuiltModulesAttrsMap &PrebuiltModulesASTMap, ScanningOptimizations OptimizeArgs) { if (any(OptimizeArgs & ScanningOptimizations::HeaderSearch)) { // Only preserve search paths that were used during the dependency scan. @@ -87,11 +97,13 @@ optimizeHeaderSearchOpts(HeaderSearchOptions &Opts, ASTReader &Reader, } else { // This is not an implicitly built module, so it may have different // VFS options. Fall back to a string comparison instead. - auto VFSMap = PrebuiltModuleVFSMap.find(MF->FileName); - if (VFSMap == PrebuiltModuleVFSMap.end()) + auto PrebuiltModulePropIt = + PrebuiltModulesASTMap.find(MF->FileName); + if (PrebuiltModulePropIt == PrebuiltModulesASTMap.end()) return; for (std::size_t I = 0, E = VFSOverlayFiles.size(); I != E; ++I) { - if (VFSMap->second.contains(VFSOverlayFiles[I])) + if (PrebuiltModulePropIt->second.getVFS().contains( + VFSOverlayFiles[I])) VFSUsage[I] = true; } } @@ -157,32 +169,6 @@ static void optimizeCWD(CowCompilerInvocation &BuildInvocation, StringRef CWD) { } } -/// Check a subset of invocation options to determine whether the current -/// context can safely be considered as stable. -static bool areOptionsInStableDir(CowCompilerInvocation &BuildInvocation, - const ArrayRef<StringRef> StableDirs) { - const auto &HSOpts = BuildInvocation.getHeaderSearchOpts(); - assert(isPathInStableDir(StableDirs, HSOpts.Sysroot) && - "Sysroots differ between module dependencies and current TU"); - - assert(isPathInStableDir(StableDirs, HSOpts.ResourceDir) && - "ResourceDirs differ between module dependencies and current TU"); - - for (const auto &Entry : HSOpts.UserEntries) { - if (!Entry.IgnoreSysRoot) - continue; - if (!isPathInStableDir(StableDirs, Entry.Path)) - return false; - } - - for (const auto &SysPrefix : HSOpts.SystemHeaderPrefixes) { - if (!isPathInStableDir(StableDirs, SysPrefix.Prefix)) - return false; - } - - return true; -} - static std::vector<std::string> splitString(std::string S, char Separator) { SmallVector<StringRef> Segments; StringRef(S).split(Segments, Separator, /*MaxSplit=*/-1, /*KeepEmpty=*/false); @@ -257,6 +243,29 @@ bool dependencies::isPathInStableDir(const ArrayRef<StringRef> Directories, }); } +bool dependencies::areOptionsInStableDir(const ArrayRef<StringRef> Directories, + const HeaderSearchOptions &HSOpts) { + assert(isPathInStableDir(Directories, HSOpts.Sysroot) && + "Sysroots differ between module dependencies and current TU"); + + assert(isPathInStableDir(Directories, HSOpts.ResourceDir) && + "ResourceDirs differ between module dependencies and current TU"); + + for (const auto &Entry : HSOpts.UserEntries) { + if (!Entry.IgnoreSysRoot) + continue; + if (!isPathInStableDir(Directories, Entry.Path)) + return false; + } + + for (const auto &SysPrefix : HSOpts.SystemHeaderPrefixes) { + if (!isPathInStableDir(Directories, SysPrefix.Prefix)) + return false; + } + + return true; +} + static CowCompilerInvocation makeCommonInvocationForModuleBuild(CompilerInvocation CI) { CI.resetNonModularOptions(); @@ -825,7 +834,7 @@ ModuleDepCollectorPP::handleTopLevelModule(const Module *M) { ScanningOptimizations::VFS))) optimizeHeaderSearchOpts(BuildInvocation.getMutHeaderSearchOpts(), *MDC.ScanInstance.getASTReader(), *MF, - MDC.PrebuiltModuleVFSMap, + MDC.PrebuiltModulesASTMap, MDC.Service.getOptimizeArgs()); if (any(MDC.Service.getOptimizeArgs() & @@ -849,7 +858,8 @@ ModuleDepCollectorPP::handleTopLevelModule(const Module *M) { // Check provided input paths from the invocation for determining // IsInStableDirectories. if (MD.IsInStableDirectories) - MD.IsInStableDirectories = areOptionsInStableDir(CI, StableDirs); + MD.IsInStableDirectories = + areOptionsInStableDir(StableDirs, CI.getHeaderSearchOpts()); MDC.associateWithContextHash(CI, IgnoreCWD, MD); @@ -894,10 +904,13 @@ void ModuleDepCollectorPP::addModulePrebuiltDeps( if (MDC.isPrebuiltModule(Import->getTopLevelModule())) if (SeenSubmodules.insert(Import->getTopLevelModule()).second) { MD.PrebuiltModuleDeps.emplace_back(Import->getTopLevelModule()); - // Conservatively consider the module as not coming from stable - // directories, as transitive dependencies from the prebuilt module - // have not been determined. - MD.IsInStableDirectories = false; + if (MD.IsInStableDirectories) { + auto PrebuiltModulePropIt = MDC.PrebuiltModulesASTMap.find( + MD.PrebuiltModuleDeps.back().PCMFile); + MD.IsInStableDirectories = + (PrebuiltModulePropIt != MDC.PrebuiltModulesASTMap.end()) && + PrebuiltModulePropIt->second.isInStableDir(); + } } } @@ -960,10 +973,10 @@ ModuleDepCollector::ModuleDepCollector( std::unique_ptr<DependencyOutputOptions> Opts, CompilerInstance &ScanInstance, DependencyConsumer &C, DependencyActionController &Controller, CompilerInvocation OriginalCI, - PrebuiltModuleVFSMapT PrebuiltModuleVFSMap) + const PrebuiltModulesAttrsMap PrebuiltModulesASTMap) : Service(Service), ScanInstance(ScanInstance), Consumer(C), Controller(Controller), - PrebuiltModuleVFSMap(std::move(PrebuiltModuleVFSMap)), + PrebuiltModulesASTMap(std::move(PrebuiltModulesASTMap)), Opts(std::move(Opts)), CommonInvocation( makeCommonInvocationForModuleBuild(std::move(OriginalCI))) {} diff --git a/clang/test/ClangScanDeps/prebuilt-modules-in-stable-dirs.c b/clang/test/ClangScanDeps/prebuilt-modules-in-stable-dirs.c index 910d4890a9072..5e6a2a8bb42fa 100644 --- a/clang/test/ClangScanDeps/prebuilt-modules-in-stable-dirs.c +++ b/clang/test/ClangScanDeps/prebuilt-modules-in-stable-dirs.c @@ -1,4 +1,10 @@ -/// This test validates that modules that depend on prebuilt modules resolve `is-in-stable-directories` as false. +/// This test validates that modules that depend on prebuilt modules +/// resolve `is-in-stable-directories` correctly. +/// The steps are: +/// 1. Scan dependencies to build the PCH. One of the module's depend on header +/// that is seemingly from the sysroot. However, it depends on a local header that is overlaid.. +/// 2. Build the PCH & dependency PCMs. +/// 3. Scan a source file that transitively depends on the same modules as the pcm. // REQUIRES: shell // RUN: rm -rf %t @@ -15,13 +21,19 @@ // RUN: clang-scan-deps -compilation-database %t/compile-commands.json \ // RUN: -j 1 -format experimental-full > %t/deps.db // RUN: cat %t/deps_pch.db | sed 's:\\\\\?:/:g' | FileCheck %s -DPREFIX=%/t --check-prefix PCH_DEP -// RUN: cat %t/deps.db | sed 's:\\\\\?:/:g' | FileCheck %s -DPREFIX=%/t +// RUN: cat %t/deps.db | sed 's:\\\\\?:/:g' | FileCheck %s -DPREFIX=%/t --check-prefix CLIENT // PCH_DEP: "is-in-stable-directories": true // PCH_DEP: "name": "A" - -// Verify is-in-stable-directories is not in any module dependencies, as they all depend on prebuilt modules. -// CHECK-NOT: "is-in-stable-directories" + +// Verify is-in-stable-directories is only assigned to the module that only depends on A. +// CLIENT-NOT: "is-in-stable-directories": true + +// CLIENT: "name": "D" +// CLIENT: "is-in-stable-directories": true +// CLIENT: "name": "sys" + +// CLIENT-NOT: "is-in-stable-directories": true //--- compile-pch.json.in [ @@ -74,6 +86,7 @@ module B [system] { typedef int local_t; //--- MacOSX.sdk/usr/include/sys/sys.h +#include <A/A.h> typedef int sys_t_m; //--- MacOSX.sdk/usr/include/sys/module.modulemap @@ -111,4 +124,5 @@ module D [system] { #include <C/C.h> // This dependency transitively depends on a local header. //--- client.c +#include <sys/sys.h> #include <D/D.h> // This dependency transitively depends on a local header. _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits