clang
7.0.0
|
A module loader that doesn't know how to load modules. More...
#include "clang/Lex/ModuleLoader.h"
Public Member Functions | |
ModuleLoadResult | loadModule (SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective) override |
Attempt to load the given module. More... | |
void | loadModuleFromSource (SourceLocation ImportLoc, StringRef ModuleName, StringRef Source) override |
Attempt to load the given module from the specified source buffer. More... | |
void | makeModuleVisible (Module *Mod, Module::NameVisibilityKind Visibility, SourceLocation ImportLoc) override |
Make the given module visible. More... | |
GlobalModuleIndex * | loadGlobalModuleIndex (SourceLocation TriggerLoc) override |
Load, create, or return global module. More... | |
bool | lookupMissingImports (StringRef Name, SourceLocation TriggerLoc) override |
Check global module index for missing imports. More... | |
![]() | |
ModuleLoader (bool BuildingModule=false) | |
virtual | ~ModuleLoader () |
bool | buildingModule () const |
Returns true if this instance is building a module. More... | |
void | setBuildingModule (bool BuildingModuleFlag) |
Flag indicating whether this instance is building a module. More... | |
Additional Inherited Members | |
![]() | |
bool | HadFatalFailure = false |
A module loader that doesn't know how to load modules.
Definition at line 157 of file ModuleLoader.h.
|
inlineoverridevirtual |
Load, create, or return global module.
This function returns an existing global module index, if one had already been loaded or created, or loads one if it exists, or creates one if it doesn't exist. Also, importantly, if the index doesn't cover all the modules in the module map, it will be update to do so here, because of its use in searching for needed module imports and associated fixit messages.
TriggerLoc | The location for what triggered the load. |
Implements clang::ModuleLoader.
Definition at line 171 of file ModuleLoader.h.
|
inlineoverridevirtual |
Attempt to load the given module.
This routine attempts to load the module described by the given parameters.
ImportLoc | The location of the 'import' keyword. |
Path | The identifiers (and their locations) of the module "path", e.g., "std.vector" would be split into "std" and "vector". |
Visibility | The visibility provided for the names in the loaded module. |
IsInclusionDirective | Indicates that this module is being loaded implicitly, due to the presence of an inclusion directive. Otherwise, it is being loaded due to an import declaration. |
Implements clang::ModuleLoader.
Definition at line 159 of file ModuleLoader.h.
|
inlineoverridevirtual |
Attempt to load the given module from the specified source buffer.
Does not make any submodule visible; for that, use loadModule or makeModuleVisible.
Loc | The location at which the module was loaded. |
ModuleName | The name of the module to build. |
Source | The source of the module: a (preprocessed) module map. |
Implements clang::ModuleLoader.
Definition at line 165 of file ModuleLoader.h.
|
inlineoverridevirtual |
Check global module index for missing imports.
Name | The symbol name to look for. |
TriggerLoc | The location for what triggered the load. |
Implements clang::ModuleLoader.
Definition at line 175 of file ModuleLoader.h.
|
inlineoverridevirtual |
Make the given module visible.
Implements clang::ModuleLoader.
Definition at line 168 of file ModuleLoader.h.