clang 22.0.0git
clang::HeaderSearch Class Reference

Encapsulates the information needed to find the file referenced by a #include or #include_next, (sub-)framework lookup, etc. More...

#include "clang/Lex/HeaderSearch.h"

Public Member Functions

 HeaderSearch (const HeaderSearchOptions &HSOpts, SourceManager &SourceMgr, DiagnosticsEngine &Diags, const LangOptions &LangOpts, const TargetInfo *Target)
 HeaderSearch (const HeaderSearch &)=delete
HeaderSearchoperator= (const HeaderSearch &)=delete
const HeaderSearchOptionsgetHeaderSearchOpts () const
 Retrieve the header-search options with which this header search was initialized.
FileManagergetFileMgr () const
DiagnosticsEnginegetDiags () const
void SetSearchPaths (std::vector< DirectoryLookup > dirs, unsigned angledDirIdx, unsigned systemDirIdx, llvm::DenseMap< unsigned, unsigned > searchDirToHSEntry)
 Interface for setting the file search paths.
void AddSearchPath (const DirectoryLookup &dir, bool isAngled)
 Add an additional search path.
void AddSystemSearchPath (const DirectoryLookup &dir)
 Add an additional system search path.
void SetSystemHeaderPrefixes (ArrayRef< std::pair< std::string, bool > > P)
 Set the list of system header prefixes.
bool HasIncludeAliasMap () const
 Checks whether the map exists or not.
void AddIncludeAlias (StringRef Source, StringRef Dest)
 Map the source include name to the dest include name.
StringRef MapHeaderToIncludeAlias (StringRef Source)
 Maps one header file name to a different header file name, for use with the include_alias pragma.
void setModuleHash (StringRef Hash)
 Set the hash to use for module cache paths.
void setModuleCachePath (StringRef CachePath)
 Set the path to the module cache.
StringRef getModuleHash () const
 Retrieve the module hash.
StringRef getModuleCachePath () const
 Retrieve the path to the module cache.
void ClearFileInfo ()
 Forget everything we know about headers so far.
void SetExternalLookup (ExternalPreprocessorSource *EPS)
ExternalPreprocessorSourcegetExternalLookup () const
void SetExternalSource (ExternalHeaderFileInfoSource *ES)
 Set the external source of header information.
void setTarget (const TargetInfo &Target)
 Set the target information for the header search, if not already known.
OptionalFileEntryRef LookupFile (StringRef Filename, SourceLocation IncludeLoc, bool isAngled, ConstSearchDirIterator FromDir, ConstSearchDirIterator *CurDir, ArrayRef< std::pair< OptionalFileEntryRef, DirectoryEntryRef > > Includers, SmallVectorImpl< char > *SearchPath, SmallVectorImpl< char > *RelativePath, Module *RequestingModule, ModuleMap::KnownHeader *SuggestedModule, bool *IsMapped, bool *IsFrameworkFound, bool SkipCache=false, bool BuildSystemModule=false, bool OpenFile=true, bool CacheFailures=true)
 Given a "foo" or <foo> reference, look up the indicated file, return null on failure.
OptionalFileEntryRef LookupSubframeworkHeader (StringRef Filename, FileEntryRef ContextFileEnt, SmallVectorImpl< char > *SearchPath, SmallVectorImpl< char > *RelativePath, Module *RequestingModule, ModuleMap::KnownHeader *SuggestedModule)
 Look up a subframework for the specified #include file.
FrameworkCacheEntryLookupFrameworkCache (StringRef FWName)
 Look up the specified framework name in our framework cache.
bool ShouldEnterIncludeFile (Preprocessor &PP, FileEntryRef File, bool isImport, bool ModulesEnabled, Module *M, bool &IsFirstIncludeOfFile)
 Mark the specified file as a target of a #include, #include_next, or #import directive.
SrcMgr::CharacteristicKind getFileDirFlavor (FileEntryRef File)
 Return whether the specified file is a normal header, a system header, or a C++ friendly system header.
void MarkFileIncludeOnce (FileEntryRef File)
 Mark the specified file as a "once only" file due to #pragma once.
void MarkFileSystemHeader (FileEntryRef File)
 Mark the specified file as a system header, e.g.
void MarkFileModuleHeader (FileEntryRef FE, ModuleMap::ModuleHeaderRole Role, bool isCompilingModuleHeader)
 Mark the specified file as part of a module.
void SetFileControllingMacro (FileEntryRef File, const IdentifierInfo *ControllingMacro)
 Mark the specified file as having a controlling macro.
bool isFileMultipleIncludeGuarded (FileEntryRef File) const
 Determine whether this file is intended to be safe from multiple inclusions, e.g., it has #pragma once or a controlling macro.
bool hasFileBeenImported (FileEntryRef File) const
 Determine whether the given file is known to have ever been #imported.
std::vector< boolcomputeUserEntryUsage () const
 Determine which HeaderSearchOptions::UserEntries have been successfully used so far and mark their index with 'true' in the resulting bit vector.
std::vector< boolcollectVFSUsageAndClear () const
 Collect which HeaderSearchOptions::VFSOverlayFiles have been meaningfully used so far and mark their index with 'true' in the resulting bit vector.
const HeaderMapCreateHeaderMap (FileEntryRef FE)
 This method returns a HeaderMap for the specified FileEntry, uniquing them through the 'HeaderMaps' datastructure.
void getHeaderMapFileNames (SmallVectorImpl< std::string > &Names) const
 Get filenames for all registered header maps.
std::string getCachedModuleFileName (Module *Module)
 Retrieve the name of the cached module file that should be used to load the given module.
std::string getPrebuiltModuleFileName (StringRef ModuleName, bool FileMapOnly=false)
 Retrieve the name of the prebuilt module file that should be used to load a module with the given name.
std::string getPrebuiltImplicitModuleFileName (Module *Module)
 Retrieve the name of the prebuilt module file that should be used to load the given module.
std::string getCachedModuleFileName (StringRef ModuleName, StringRef ModuleMapPath)
 Retrieve the name of the (to-be-)cached module file that should be used to load a module with the given name.
ModulelookupModule (StringRef ModuleName, SourceLocation ImportLoc=SourceLocation(), bool AllowSearch=true, bool AllowExtraModuleMapSearch=false)
 Lookup a module Search for a module with the given name.
OptionalFileEntryRef lookupModuleMapFile (DirectoryEntryRef Dir, bool IsFramework)
 Try to find a module map file in the given directory, returning nullopt if none is found.
bool hasModuleMap (StringRef Filename, const DirectoryEntry *Root, bool IsSystem)
 Determine whether there is a module map that may map the header with the given file name to a (sub)module.
ModuleMap::KnownHeader findModuleForHeader (FileEntryRef File, bool AllowTextual=false, bool AllowExcluded=false) const
 Retrieve the module that corresponds to the given file, if any.
ArrayRef< ModuleMap::KnownHeaderfindAllModulesForHeader (FileEntryRef File) const
 Retrieve all the modules corresponding to the given file.
ArrayRef< ModuleMap::KnownHeaderfindResolvedModulesForHeader (FileEntryRef File) const
 Like findAllModulesForHeader, but do not attempt to infer module ownership from umbrella headers if we've not already done so.
bool parseAndLoadModuleMapFile (FileEntryRef File, bool IsSystem, FileID ID=FileID(), unsigned *Offset=nullptr, StringRef OriginalModuleMapFile=StringRef())
 Read the contents of the given module map file.
void collectAllModules (SmallVectorImpl< Module * > &Modules)
 Collect the set of all known, top-level modules.
void loadTopLevelSystemModules ()
 Load all known, top-level system modules.
ModuleMapgetModuleMap ()
 Retrieve the module map.
const ModuleMapgetModuleMap () const
 Retrieve the module map.
unsigned header_file_size () const
HeaderFileInfogetFileInfo (FileEntryRef FE)
 Return the HeaderFileInfo structure for the specified FileEntry, in preparation for updating it in some way.
const HeaderFileInfogetExistingFileInfo (FileEntryRef FE) const
 Return the HeaderFileInfo structure for the specified FileEntry, if it has ever been filled in (either locally or externally).
const HeaderFileInfogetExistingLocalFileInfo (FileEntryRef FE) const
 Return the headerFileInfo structure for the specified FileEntry, if it has ever been filled in locally.
SearchDirIterator search_dir_begin ()
SearchDirIterator search_dir_end ()
SearchDirRange search_dir_range ()
ConstSearchDirIterator search_dir_begin () const
ConstSearchDirIterator search_dir_nth (size_t n) const
ConstSearchDirIterator search_dir_end () const
ConstSearchDirRange search_dir_range () const
unsigned search_dir_size () const
ConstSearchDirIterator quoted_dir_begin () const
ConstSearchDirIterator quoted_dir_end () const
ConstSearchDirIterator angled_dir_begin () const
ConstSearchDirIterator angled_dir_end () const
ConstSearchDirIterator system_dir_begin () const
ConstSearchDirIterator system_dir_end () const
unsigned searchDirIdx (const DirectoryLookup &DL) const
 Get the index of the given search directory.
StringRef getUniqueFrameworkName (StringRef Framework)
 Retrieve a uniqued framework name.
StringRef getIncludeNameForHeader (const FileEntry *File) const
 Retrieve the include name for the header.
std::string suggestPathToFileForDiagnostics (FileEntryRef File, llvm::StringRef MainFile, bool *IsAngled=nullptr) const
 Suggest a path by which the specified file could be found, for use in diagnostics to suggest a #include.
std::string suggestPathToFileForDiagnostics (llvm::StringRef File, llvm::StringRef WorkingDir, llvm::StringRef MainFile, bool *IsAngled=nullptr) const
 Suggest a path by which the specified file could be found, for use in diagnostics to suggest a #include.
void PrintStats ()
size_t getTotalMemory () const

Friends

class DirectoryLookup

Detailed Description

Encapsulates the information needed to find the file referenced by a #include or #include_next, (sub-)framework lookup, etc.

Definition at line 237 of file HeaderSearch.h.

Constructor & Destructor Documentation

◆ HeaderSearch() [1/2]

HeaderSearch::HeaderSearch ( const HeaderSearchOptions & HSOpts,
SourceManager & SourceMgr,
DiagnosticsEngine & Diags,
const LangOptions & LangOpts,
const TargetInfo * Target )

Definition at line 83 of file HeaderSearch.cpp.

References clang::Target.

Referenced by HeaderSearch(), and operator=().

◆ HeaderSearch() [2/2]

clang::HeaderSearch::HeaderSearch ( const HeaderSearch & )
delete

References HeaderSearch().

Member Function Documentation

◆ AddIncludeAlias()

void clang::HeaderSearch::AddIncludeAlias ( StringRef Source,
StringRef Dest )
inline

Map the source include name to the dest include name.

The Source should include the angle brackets or quotes, the dest should not. This allows for distinction between <> and "" headers.

Definition at line 416 of file HeaderSearch.h.

Referenced by clang::Preprocessor::HandlePragmaIncludeAlias().

◆ AddSearchPath()

void HeaderSearch::AddSearchPath ( const DirectoryLookup & dir,
bool isAngled )

Add an additional search path.

Definition at line 121 of file HeaderSearch.cpp.

References DirectoryLookup.

◆ AddSystemSearchPath()

void clang::HeaderSearch::AddSystemSearchPath ( const DirectoryLookup & dir)
inline

Add an additional system search path.

Definition at line 399 of file HeaderSearch.h.

References DirectoryLookup.

◆ angled_dir_begin()

ConstSearchDirIterator clang::HeaderSearch::angled_dir_begin ( ) const
inline

Definition at line 871 of file HeaderSearch.h.

Referenced by LookupFile(), and quoted_dir_end().

◆ angled_dir_end()

ConstSearchDirIterator clang::HeaderSearch::angled_dir_end ( ) const
inline

Definition at line 874 of file HeaderSearch.h.

References system_dir_begin().

◆ ClearFileInfo()

void clang::HeaderSearch::ClearFileInfo ( )
inline

Forget everything we know about headers so far.

Definition at line 451 of file HeaderSearch.h.

◆ collectAllModules()

void HeaderSearch::collectAllModules ( SmallVectorImpl< Module * > & Modules)

Collect the set of all known, top-level modules.

Parameters
ModulesWill be filled with the set of known, top-level modules.

Definition at line 1976 of file HeaderSearch.cpp.

References DirectoryLookup, parseAndLoadModuleMapFile(), and search_dir_range().

◆ collectVFSUsageAndClear()

std::vector< bool > HeaderSearch::collectVFSUsageAndClear ( ) const

Collect which HeaderSearchOptions::VFSOverlayFiles have been meaningfully used so far and mark their index with 'true' in the resulting bit vector.

Note: this ignores VFSs that redirect non-affecting files such as unused modulemaps.

Definition at line 144 of file HeaderSearch.cpp.

References getHeaderSearchOpts().

◆ computeUserEntryUsage()

std::vector< bool > HeaderSearch::computeUserEntryUsage ( ) const

Determine which HeaderSearchOptions::UserEntries have been successfully used so far and mark their index with 'true' in the resulting bit vector.

Note: implicit module maps don't contribute to entry usage.

Definition at line 130 of file HeaderSearch.cpp.

◆ CreateHeaderMap()

const HeaderMap * HeaderSearch::CreateHeaderMap ( FileEntryRef FE)

This method returns a HeaderMap for the specified FileEntry, uniquing them through the 'HeaderMaps' datastructure.

CreateHeaderMap - This method returns a HeaderMap for the specified FileEntry, uniquing them through the 'HeaderMaps' datastructure.

Definition at line 174 of file HeaderSearch.cpp.

References clang::HeaderMap::Create().

◆ findAllModulesForHeader()

ArrayRef< ModuleMap::KnownHeader > HeaderSearch::findAllModulesForHeader ( FileEntryRef File) const

Retrieve all the modules corresponding to the given file.

findModuleForHeader should typically be used instead of this.

Definition at line 1616 of file HeaderSearch.cpp.

References clang::File, and getExistingFileInfo().

◆ findModuleForHeader()

ModuleMap::KnownHeader HeaderSearch::findModuleForHeader ( FileEntryRef File,
bool AllowTextual = false,
bool AllowExcluded = false ) const

Retrieve the module that corresponds to the given file, if any.

Parameters
FileThe header that we wish to map to a module.
AllowTextualWhether we want to find textual headers too.

Definition at line 1605 of file HeaderSearch.cpp.

References clang::File, and getExistingFileInfo().

Referenced by clang::VerifyDiagnosticConsumer::HandleDiagnostic(), and suggestModule().

◆ findResolvedModulesForHeader()

ArrayRef< ModuleMap::KnownHeader > HeaderSearch::findResolvedModulesForHeader ( FileEntryRef File) const

Like findAllModulesForHeader, but do not attempt to infer module ownership from umbrella headers if we've not already done so.

Definition at line 1626 of file HeaderSearch.cpp.

References clang::File, and getExistingFileInfo().

◆ getCachedModuleFileName() [1/2]

std::string HeaderSearch::getCachedModuleFileName ( Module * Module)

Retrieve the name of the cached module file that should be used to load the given module.

Parameters
ModuleThe module whose module file name will be returned.
Returns
The name of the module file that corresponds to this module, or an empty string if this module does not correspond to any module file.

Definition at line 200 of file HeaderSearch.cpp.

References getCachedModuleFileName(), getModuleMap(), clang::ModuleMap::getModuleMapFileForUniquing(), and clang::Module::Name.

Referenced by getCachedModuleFileName(), and selectModuleSource().

◆ getCachedModuleFileName() [2/2]

std::string HeaderSearch::getCachedModuleFileName ( StringRef ModuleName,
StringRef ModuleMapPath )

Retrieve the name of the (to-be-)cached module file that should be used to load a module with the given name.

Parameters
ModuleNameThe module whose module file name will be returned.
ModuleMapPathA path that when combined with ModuleName uniquely identifies this module. See Module::ModuleMap.
Returns
The name of the module file that corresponds to this module, or an empty string if this module does not correspond to any module file.

Definition at line 259 of file HeaderSearch.cpp.

References getModuleCachePath().

◆ getDiags()

DiagnosticsEngine & clang::HeaderSearch::getDiags ( ) const
inline

Definition at line 388 of file HeaderSearch.h.

◆ getExistingFileInfo()

◆ getExistingLocalFileInfo()

const HeaderFileInfo * HeaderSearch::getExistingLocalFileInfo ( FileEntryRef FE) const

Return the headerFileInfo structure for the specified FileEntry, if it has ever been filled in locally.

Definition at line 1359 of file HeaderSearch.cpp.

References clang::HeaderFileInfo::External, clang::FileEntryRef::getUID(), and clang::HeaderFileInfo::IsValid.

◆ getExternalLookup()

ExternalPreprocessorSource * clang::HeaderSearch::getExternalLookup ( ) const
inline

Definition at line 459 of file HeaderSearch.h.

◆ getFileDirFlavor()

SrcMgr::CharacteristicKind clang::HeaderSearch::getFileDirFlavor ( FileEntryRef File)
inline

Return whether the specified file is a normal header, a system header, or a C++ friendly system header.

Definition at line 548 of file HeaderSearch.h.

References clang::HeaderFileInfo::DirInfo, clang::File, and getExistingFileInfo().

Referenced by EvaluateHasIncludeCommon().

◆ getFileInfo()

◆ getFileMgr()

FileManager & clang::HeaderSearch::getFileMgr ( ) const
inline

◆ getHeaderMapFileNames()

void HeaderSearch::getHeaderMapFileNames ( SmallVectorImpl< std::string > & Names) const

Get filenames for all registered header maps.

Definition at line 194 of file HeaderSearch.cpp.

Referenced by collectHeaderMaps().

◆ getHeaderSearchOpts()

const HeaderSearchOptions & clang::HeaderSearch::getHeaderSearchOpts ( ) const
inline

Retrieve the header-search options with which this header search was initialized.

Definition at line 384 of file HeaderSearch.h.

Referenced by collectVFSUsageAndClear(), compileModuleAndReadASTImpl(), parseAndLoadModuleMapFile(), and selectModuleSource().

◆ getIncludeNameForHeader()

StringRef HeaderSearch::getIncludeNameForHeader ( const FileEntry * File) const

Retrieve the include name for the header.

Parameters
FileThe entry for a given header.
Returns
The name of how the file was included when the header's location was resolved.

Definition at line 1549 of file HeaderSearch.cpp.

References clang::File.

Referenced by clang::installapi::InstallAPIContext::findAndRecordFile().

◆ getModuleCachePath()

StringRef clang::HeaderSearch::getModuleCachePath ( ) const
inline

Retrieve the path to the module cache.

Definition at line 448 of file HeaderSearch.h.

Referenced by clang::FrontendAction::Execute(), and getCachedModuleFileName().

◆ getModuleHash()

StringRef clang::HeaderSearch::getModuleHash ( ) const
inline

Retrieve the module hash.

Definition at line 445 of file HeaderSearch.h.

Referenced by getPrebuiltImplicitModuleFileName().

◆ getModuleMap() [1/2]

◆ getModuleMap() [2/2]

const ModuleMap & clang::HeaderSearch::getModuleMap ( ) const
inline

Retrieve the module map.

Definition at line 834 of file HeaderSearch.h.

◆ getPrebuiltImplicitModuleFileName()

std::string HeaderSearch::getPrebuiltImplicitModuleFileName ( Module * Module)

Retrieve the name of the prebuilt module file that should be used to load the given module.

Parameters
ModuleThe module whose module file name will be returned.
Returns
The name of the module file that corresponds to this module, or an empty string if this module does not correspond to any module file.

Definition at line 241 of file HeaderSearch.cpp.

References clang::FileName, getFileMgr(), getModuleHash(), getModuleMap(), clang::ModuleMap::getModuleMapFileForUniquing(), and clang::Module::Name.

Referenced by selectModuleSource().

◆ getPrebuiltModuleFileName()

std::string HeaderSearch::getPrebuiltModuleFileName ( StringRef ModuleName,
bool FileMapOnly = false )

Retrieve the name of the prebuilt module file that should be used to load a module with the given name.

Parameters
ModuleNameThe module whose module file name will be returned.
FileMapOnlyIf true, then only look in the explicit module name
Returns
The name of the module file that corresponds to this module, or an empty string if this module does not correspond to any module file.

Definition at line 210 of file HeaderSearch.cpp.

References getFileMgr(), and clang::Result.

Referenced by selectModuleSource().

◆ getTotalMemory()

size_t HeaderSearch::getTotalMemory ( ) const

Definition at line 1533 of file HeaderSearch.cpp.

◆ getUniqueFrameworkName()

StringRef HeaderSearch::getUniqueFrameworkName ( StringRef Framework)

Retrieve a uniqued framework name.

Definition at line 1545 of file HeaderSearch.cpp.

◆ hasFileBeenImported()

bool clang::HeaderSearch::hasFileBeenImported ( FileEntryRef File) const
inline

Determine whether the given file is known to have ever been #imported.

Definition at line 587 of file HeaderSearch.h.

References clang::File, getExistingFileInfo(), and clang::HeaderFileInfo::isImport.

Referenced by clang::tooling::isSelfContainedHeader().

◆ HasIncludeAliasMap()

bool clang::HeaderSearch::HasIncludeAliasMap ( ) const
inline

Checks whether the map exists or not.

Definition at line 410 of file HeaderSearch.h.

◆ hasModuleMap()

bool HeaderSearch::hasModuleMap ( StringRef Filename,
const DirectoryEntry * Root,
bool IsSystem )

Determine whether there is a module map that may map the header with the given file name to a (sub)module.

Always returns false if modules are disabled.

Parameters
FilenameThe name of the file.
RootThe "root" directory, at which we should stop looking for module maps.
IsSystemWhether the directories we're looking at are system header directories.

Definition at line 1556 of file HeaderSearch.cpp.

References clang::FileName, and parseAndLoadModuleMapFile().

◆ header_file_size()

unsigned clang::HeaderSearch::header_file_size ( ) const
inline

Definition at line 836 of file HeaderSearch.h.

◆ isFileMultipleIncludeGuarded()

bool HeaderSearch::isFileMultipleIncludeGuarded ( FileEntryRef File) const

Determine whether this file is intended to be safe from multiple inclusions, e.g., it has #pragma once or a controlling macro.

This routine does not consider the effect of #import

Definition at line 1370 of file HeaderSearch.cpp.

References clang::File, and getExistingFileInfo().

Referenced by clang::tooling::isSelfContainedHeader().

◆ loadTopLevelSystemModules()

void HeaderSearch::loadTopLevelSystemModules ( )

Load all known, top-level system modules.

Definition at line 2025 of file HeaderSearch.cpp.

References DirectoryLookup, parseAndLoadModuleMapFile(), and search_dir_range().

◆ LookupFile()

OptionalFileEntryRef HeaderSearch::LookupFile ( StringRef Filename,
SourceLocation IncludeLoc,
bool isAngled,
ConstSearchDirIterator FromDir,
ConstSearchDirIterator * CurDirArg,
ArrayRef< std::pair< OptionalFileEntryRef, DirectoryEntryRef > > Includers,
SmallVectorImpl< char > * SearchPath,
SmallVectorImpl< char > * RelativePath,
Module * RequestingModule,
ModuleMap::KnownHeader * SuggestedModule,
bool * IsMapped,
bool * IsFrameworkFound,
bool SkipCache = false,
bool BuildSystemModule = false,
bool OpenFile = true,
bool CacheFailures = true )

Given a "foo" or <foo> reference, look up the indicated file, return null on failure.

LookupFile - Given a "foo" or <foo> reference, look up the indicated file, return null on failure.

Returns
If successful, this returns 'UsedDir', the DirectoryLookup member the file was found in, or null if not applicable.
Parameters
IncludeLocUsed for diagnostics if valid.
isAngledindicates whether the file reference is a <> reference.
CurDirIf non-null, the file was found in the specified directory search location. This is used to implement #include_next.
IncludersIndicates where the #including file(s) are, in case relative searches are needed. In reverse order of inclusion.
SearchPathIf non-null, will be set to the search path relative to which the file was found. If the include path is absolute, SearchPath will be set to an empty string.
RelativePathIf non-null, will be set to the path relative to SearchPath at which the file was found. This only differs from the Filename for framework includes.
SuggestedModuleIf non-null, and the file found is semantically part of a known module, this will be set to the module that should be imported instead of preprocessing/parsing the file found.
IsMappedIf non-null, and the search involved header maps, set to true.
IsFrameworkFoundIf non-null, will be set to true if a framework is found in any of searched SearchDirs. Will be set to false if a framework is found only through header maps. Doesn't guarantee the requested file is found.

isAngled indicates whether the file reference is for system #include's or not (i.e. using <> instead of ""). Includers, if non-empty, indicates where the #including file(s) are, in case a relative search is needed. Microsoft mode will pass all #including files.

Definition at line 890 of file HeaderSearch.cpp.

References angled_dir_begin(), clang::SrcMgr::C_System, clang::SrcMgr::C_User, checkMSVCHeaderSearch(), copyString(), diagnoseFrameworkInclude(), clang::HeaderFileInfo::DirInfo, false, clang::File, clang::First, getExistingFileInfo(), getFileInfo(), search_dir_begin(), search_dir_end(), and search_dir_nth().

Referenced by clang::FrontendAction::BeginSourceFile().

◆ LookupFrameworkCache()

FrameworkCacheEntry & clang::HeaderSearch::LookupFrameworkCache ( StringRef FWName)
inline

Look up the specified framework name in our framework cache.

Returns
The DirectoryEntry it is in if we know, null otherwise.

Definition at line 530 of file HeaderSearch.h.

◆ lookupModule()

Module * HeaderSearch::lookupModule ( StringRef ModuleName,
SourceLocation ImportLoc = SourceLocation(),
bool AllowSearch = true,
bool AllowExtraModuleMapSearch = false )

Lookup a module Search for a module with the given name.

Parameters
ModuleNameThe name of the module we're looking for.
ImportLocLocation of the module include/import.
AllowSearchWhether we are allowed to search in the various search directories to produce a module definition. If not, this lookup will only return an already-known module.
AllowExtraModuleMapSearchWhether we allow to search modulemaps in subdirectories.
Returns
The module with the given name.

Definition at line 298 of file HeaderSearch.cpp.

References lookupModule().

Referenced by clang::FrontendAction::getCurrentModule(), clang::Preprocessor::getCurrentModule(), clang::Preprocessor::getCurrentModuleImplementation(), getTopImportImplicitModule(), lookupModule(), and prepareToBuildModule().

◆ lookupModuleMapFile()

OptionalFileEntryRef HeaderSearch::lookupModuleMapFile ( DirectoryEntryRef Dir,
bool IsFramework )

Try to find a module map file in the given directory, returning nullopt if none is found.

Definition at line 1835 of file HeaderSearch.cpp.

References clang::DirectoryEntryRef::getName().

◆ LookupSubframeworkHeader()

OptionalFileEntryRef HeaderSearch::LookupSubframeworkHeader ( StringRef Filename,
FileEntryRef ContextFileEnt,
SmallVectorImpl< char > * SearchPath,
SmallVectorImpl< char > * RelativePath,
Module * RequestingModule,
ModuleMap::KnownHeader * SuggestedModule )

Look up a subframework for the specified #include file.

LookupSubframeworkHeader - Look up a subframework for the specified #include file.

For example, if #include'ing <HIToolbox/HIToolbox.h> from within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox is a subframework within Carbon.framework. If so, return the FileEntry for the designated file, otherwise return null.

Definition at line 1158 of file HeaderSearch.cpp.

References clang::HeaderFileInfo::DirInfo, clang::File, getExistingFileInfo(), getFileInfo(), and clang::FileEntryRef::getName().

◆ MapHeaderToIncludeAlias()

StringRef clang::HeaderSearch::MapHeaderToIncludeAlias ( StringRef Source)
inline

Maps one header file name to a different header file name, for use with the include_alias pragma.

Note that the source file name should include the angle brackets or quotes. Returns StringRef as null if the header cannot be mapped.

Definition at line 426 of file HeaderSearch.h.

◆ MarkFileIncludeOnce()

void clang::HeaderSearch::MarkFileIncludeOnce ( FileEntryRef File)
inline

Mark the specified file as a "once only" file due to #pragma once.

Definition at line 556 of file HeaderSearch.h.

References clang::File, getFileInfo(), and clang::HeaderFileInfo::isPragmaOnce.

◆ MarkFileModuleHeader()

void HeaderSearch::MarkFileModuleHeader ( FileEntryRef FE,
ModuleMap::ModuleHeaderRole Role,
bool isCompilingModuleHeader )

Mark the specified file as part of a module.

Definition at line 1379 of file HeaderSearch.cpp.

References clang::ModuleMap::ExcludedHeader, getExistingFileInfo(), getFileInfo(), moduleMembershipNeedsMerge(), and Role.

◆ MarkFileSystemHeader()

void clang::HeaderSearch::MarkFileSystemHeader ( FileEntryRef File)
inline

Mark the specified file as a system header, e.g.

due to #pragma GCC system_header.

Definition at line 562 of file HeaderSearch.h.

References clang::SrcMgr::C_System, clang::HeaderFileInfo::DirInfo, clang::File, and getFileInfo().

◆ operator=()

HeaderSearch & clang::HeaderSearch::operator= ( const HeaderSearch & )
delete

References HeaderSearch().

◆ parseAndLoadModuleMapFile()

bool HeaderSearch::parseAndLoadModuleMapFile ( FileEntryRef File,
bool IsSystem,
FileID ID = FileID(),
unsigned * Offset = nullptr,
StringRef OriginalModuleMapFile = StringRef() )

Read the contents of the given module map file.

Parameters
FileThe module map file.
IsSystemWhether this file is in a system header directory.
IDIf the module map file is already mapped (perhaps as part of processing a preprocessed module), the ID of the file.
Offset[inout] An offset within ID to start parsing. On exit, filled by the end of the parsed contents (either EOF or the location of an end-of-module-map pragma).
OriginalModuleMapFileThe original path to the module map file, used to resolve paths within the module (this is required when building the module from preprocessed source).
Returns
true if an error occurred, false otherwise.

Definition at line 1730 of file HeaderSearch.cpp.

References clang::File, getHeaderSearchOpts(), and clang::DirectoryEntryRef::getName().

Referenced by clang::FrontendAction::BeginSourceFile(), collectAllModules(), hasModuleMap(), loadModuleMapForModuleBuild(), and loadTopLevelSystemModules().

◆ PrintStats()

void HeaderSearch::PrintStats ( )

Definition at line 90 of file HeaderSearch.cpp.

Referenced by clang::FrontendAction::EndSourceFile().

◆ quoted_dir_begin()

ConstSearchDirIterator clang::HeaderSearch::quoted_dir_begin ( ) const
inline

Definition at line 868 of file HeaderSearch.h.

Referenced by search_dir_begin().

◆ quoted_dir_end()

ConstSearchDirIterator clang::HeaderSearch::quoted_dir_end ( ) const
inline

Definition at line 869 of file HeaderSearch.h.

References angled_dir_begin().

◆ search_dir_begin() [1/2]

SearchDirIterator clang::HeaderSearch::search_dir_begin ( )
inline

Definition at line 850 of file HeaderSearch.h.

Referenced by LookupFile(), search_dir_range(), and search_dir_range().

◆ search_dir_begin() [2/2]

ConstSearchDirIterator clang::HeaderSearch::search_dir_begin ( ) const
inline

Definition at line 856 of file HeaderSearch.h.

References quoted_dir_begin().

◆ search_dir_end() [1/2]

SearchDirIterator clang::HeaderSearch::search_dir_end ( )
inline

Definition at line 851 of file HeaderSearch.h.

Referenced by LookupFile(), search_dir_range(), and search_dir_range().

◆ search_dir_end() [2/2]

ConstSearchDirIterator clang::HeaderSearch::search_dir_end ( ) const
inline

Definition at line 861 of file HeaderSearch.h.

References system_dir_end().

◆ search_dir_nth()

ConstSearchDirIterator clang::HeaderSearch::search_dir_nth ( size_t n) const
inline

Definition at line 857 of file HeaderSearch.h.

Referenced by LookupFile().

◆ search_dir_range() [1/2]

SearchDirRange clang::HeaderSearch::search_dir_range ( )
inline

◆ search_dir_range() [2/2]

ConstSearchDirRange clang::HeaderSearch::search_dir_range ( ) const
inline

Definition at line 862 of file HeaderSearch.h.

References search_dir_begin(), and search_dir_end().

◆ search_dir_size()

unsigned clang::HeaderSearch::search_dir_size ( ) const
inline

Definition at line 866 of file HeaderSearch.h.

◆ searchDirIdx()

unsigned HeaderSearch::searchDirIdx ( const DirectoryLookup & DL) const

Get the index of the given search directory.

Definition at line 1541 of file HeaderSearch.cpp.

References DirectoryLookup.

Referenced by clang::DirectoryLookup::LookupFile().

◆ SetExternalLookup()

void clang::HeaderSearch::SetExternalLookup ( ExternalPreprocessorSource * EPS)
inline

Definition at line 455 of file HeaderSearch.h.

◆ SetExternalSource()

void clang::HeaderSearch::SetExternalSource ( ExternalHeaderFileInfoSource * ES)
inline

Set the external source of header information.

Definition at line 464 of file HeaderSearch.h.

◆ SetFileControllingMacro()

void clang::HeaderSearch::SetFileControllingMacro ( FileEntryRef File,
const IdentifierInfo * ControllingMacro )
inline

Mark the specified file as having a controlling macro.

This is used by the multiple-include optimization to eliminate no-op #includes.

Definition at line 574 of file HeaderSearch.h.

References clang::File, getFileInfo(), and clang::HeaderFileInfo::LazyControllingMacro.

◆ setModuleCachePath()

void clang::HeaderSearch::setModuleCachePath ( StringRef CachePath)
inline

Set the path to the module cache.

Definition at line 440 of file HeaderSearch.h.

◆ setModuleHash()

void clang::HeaderSearch::setModuleHash ( StringRef Hash)
inline

Set the hash to use for module cache paths.

Definition at line 437 of file HeaderSearch.h.

◆ SetSearchPaths()

void HeaderSearch::SetSearchPaths ( std::vector< DirectoryLookup > dirs,
unsigned angledDirIdx,
unsigned systemDirIdx,
llvm::DenseMap< unsigned, unsigned > searchDirToHSEntry )

Interface for setting the file search paths.

Definition at line 106 of file HeaderSearch.cpp.

◆ SetSystemHeaderPrefixes()

void clang::HeaderSearch::SetSystemHeaderPrefixes ( ArrayRef< std::pair< std::string, bool > > P)
inline

Set the list of system header prefixes.

Definition at line 405 of file HeaderSearch.h.

◆ setTarget()

void HeaderSearch::setTarget ( const TargetInfo & Target)

Set the target information for the header search, if not already known.

Definition at line 775 of file HeaderSearch.cpp.

References clang::Target.

◆ ShouldEnterIncludeFile()

bool HeaderSearch::ShouldEnterIncludeFile ( Preprocessor & PP,
FileEntryRef File,
bool isImport,
bool ModulesEnabled,
Module * M,
bool & IsFirstIncludeOfFile )

Mark the specified file as a target of a #include, #include_next, or #import directive.

Returns
false if #including the file will have no effect or true if we should include it.
Parameters
MThe module to which File belongs (this should usually be the SuggestedModule returned by LookupFile/LookupSubframeworkHeader)

Definition at line 1396 of file HeaderSearch.cpp.

References clang::Preprocessor::alreadyIncluded(), clang::File, getFileInfo(), clang::Preprocessor::isMacroDefined(), clang::Preprocessor::isMacroDefinedInLocalModule(), and clang::Preprocessor::markIncluded().

◆ suggestPathToFileForDiagnostics() [1/2]

std::string HeaderSearch::suggestPathToFileForDiagnostics ( FileEntryRef File,
llvm::StringRef MainFile,
bool * IsAngled = nullptr ) const

Suggest a path by which the specified file could be found, for use in diagnostics to suggest a #include.

Returned path will only contain forward slashes as separators. MainFile is the absolute path of the file that we are generating the diagnostics for. It will try to shorten the path using MainFile location, if none of the include search directories were prefix of File.

Parameters
IsAngledIf non-null, filled in to indicate whether the suggested path should be referenced as <Header.h> instead of "Header.h".

Definition at line 2068 of file HeaderSearch.cpp.

References clang::File, and suggestPathToFileForDiagnostics().

Referenced by getHeaderNameForHeader(), and suggestPathToFileForDiagnostics().

◆ suggestPathToFileForDiagnostics() [2/2]

std::string HeaderSearch::suggestPathToFileForDiagnostics ( llvm::StringRef File,
llvm::StringRef WorkingDir,
llvm::StringRef MainFile,
bool * IsAngled = nullptr ) const

Suggest a path by which the specified file could be found, for use in diagnostics to suggest a #include.

Returned path will only contain forward slashes as separators. MainFile is the absolute path of the file that we are generating the diagnostics for. It will try to shorten the path using MainFile location, if none of the include search directories were prefix of File.

Parameters
WorkingDirIf non-empty, this will be prepended to search directory paths that are relative.

Definition at line 2074 of file HeaderSearch.cpp.

References DirectoryLookup, clang::File, isFrameworkStylePath(), and search_dir_range().

◆ system_dir_begin()

ConstSearchDirIterator clang::HeaderSearch::system_dir_begin ( ) const
inline

Definition at line 876 of file HeaderSearch.h.

Referenced by angled_dir_end().

◆ system_dir_end()

ConstSearchDirIterator clang::HeaderSearch::system_dir_end ( ) const
inline

Definition at line 879 of file HeaderSearch.h.

Referenced by search_dir_end().

◆ DirectoryLookup


The documentation for this class was generated from the following files: