Home
last modified time | relevance | path

Searched refs:VFSOverlayFiles (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp62 std::vector<std::string> VFSOverlayFiles; in optimizeHeaderSearchOpts() local
63 std::swap(Opts.VFSOverlayFiles, VFSOverlayFiles); in optimizeHeaderSearchOpts()
65 llvm::BitVector VFSUsage(VFSOverlayFiles.size()); in optimizeHeaderSearchOpts()
83 for (std::size_t I = 0, E = VFSOverlayFiles.size(); I != E; ++I) { in optimizeHeaderSearchOpts()
84 if (VFSMap->second.contains(VFSOverlayFiles[I])) in optimizeHeaderSearchOpts()
91 if (VFSUsage.size() != VFSOverlayFiles.size()) in optimizeHeaderSearchOpts()
96 Opts.VFSOverlayFiles.push_back(std::move(VFSOverlayFiles[Idx])); in optimizeHeaderSearchOpts()
H A DDependencyScanningWorker.cpp69 if (HSOpts.VFSOverlayFiles != ExistingHSOpts.VFSOverlayFiles) { in checkHeaderSearchPaths()
80 VFSNote(0, HSOpts.VFSOverlayFiles); in checkHeaderSearchPaths()
81 VFSNote(1, ExistingHSOpts.VFSOverlayFiles); in checkHeaderSearchPaths()
118 std::vector<std::string> VFSOverlayFiles = HSOpts.VFSOverlayFiles; in ReadHeaderSearchPaths() local
120 {CurrentFile, llvm::StringSet<>(VFSOverlayFiles)}); in ReadHeaderSearchPaths()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h191 std::vector<std::string> VFSOverlayFiles; variable
304 VFSOverlayFiles.push_back(std::string(Name)); in AddVFSOverlayFile()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInvocation.h411 createVFSFromOverlayFiles(ArrayRef<std::string> VFSOverlayFiles,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp569 llvm::SaveAndRestore Z(this->HSOpts.VFSOverlayFiles); in ReadHeaderSearchOptions()
585 this->HSOpts.VFSOverlayFiles = HSOpts.VFSOverlayFiles; in ReadHeaderSearchPaths()
591 HSOpts.VFSOverlayFiles, PP.getDiagnostics(), in ReadHeaderSearchPaths()
H A DCompilerInvocation.cpp3246 for (const std::string &F : Opts.VFSOverlayFiles) in GenerateHeaderSearchArgs()
4883 createVFSFromOverlayFiles(Res.getHeaderSearchOpts().VFSOverlayFiles, in CreateFromArgsImpl()
4975 HBuilder.addRange(hsOpts.VFSOverlayFiles); in getModuleHash()
5095 return createVFSFromOverlayFiles(CI.getHeaderSearchOpts().VFSOverlayFiles, in createVFSFromCompilerInvocation()
5100 ArrayRef<std::string> VFSOverlayFiles, DiagnosticsEngine &Diags, in createVFSFromOverlayFiles() argument
5102 if (VFSOverlayFiles.empty()) in createVFSFromOverlayFiles()
5107 for (const auto &File : VFSOverlayFiles) { in createVFSFromOverlayFiles()
H A DCompilerInstance.cpp264 if (CI.getHeaderSearchOpts().VFSOverlayFiles.empty()) in collectVFSEntries()
269 for (const std::string &VFSFile : CI.getHeaderSearchOpts().VFSOverlayFiles) { in collectVFSEntries()
H A DFrontendActions.cpp714 for (const auto &Overlay : HSOpts.VFSOverlayFiles) in ReadHeaderSearchPaths()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp160 assert(VFSUsage.size() == getHeaderSearchOpts().VFSOverlayFiles.size() && in collectVFSUsageAndClear()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1358 Record.push_back(HSOpts.VFSOverlayFiles.size()); in writeUnhashedControlBlock()
1359 for (StringRef VFSOverlayFile : HSOpts.VFSOverlayFiles) in writeUnhashedControlBlock()
4990 PP->getHeaderSearchInfo().getHeaderSearchOpts().VFSOverlayFiles) in computeNonAffectingInputFiles()
H A DASTReader.cpp6165 HSOpts.VFSOverlayFiles.emplace_back(std::move(VFSOverlayFile)); in ParseHeaderSearchPaths()