clang
8.0.0
|
ASTReaderListener implementation to validate the information of the PCH file against an initialized Preprocessor. More...
#include "clang/Serialization/ASTReader.h"
Public Member Functions | |
PCHValidator (Preprocessor &PP, ASTReader &Reader) | |
bool | ReadLanguageOptions (const LangOptions &LangOpts, bool Complain, bool AllowCompatibleDifferences) override |
Receives the language options. More... | |
bool | ReadTargetOptions (const TargetOptions &TargetOpts, bool Complain, bool AllowCompatibleDifferences) override |
Receives the target options. More... | |
bool | ReadDiagnosticOptions (IntrusiveRefCntPtr< DiagnosticOptions > DiagOpts, bool Complain) override |
Receives the diagnostic options. More... | |
bool | ReadPreprocessorOptions (const PreprocessorOptions &PPOpts, bool Complain, std::string &SuggestedPredefines) override |
Receives the preprocessor options. More... | |
bool | ReadHeaderSearchOptions (const HeaderSearchOptions &HSOpts, StringRef SpecificModuleCachePath, bool Complain) override |
Receives the header search options. More... | |
void | ReadCounter (const serialization::ModuleFile &M, unsigned Value) override |
Receives COUNTER value. More... | |
![]() | |
virtual | ~ASTReaderListener () |
virtual bool | ReadFullVersionInformation (StringRef FullVersion) |
Receives the full Clang version information. More... | |
virtual void | ReadModuleName (StringRef ModuleName) |
virtual void | ReadModuleMapFile (StringRef ModuleMapPath) |
virtual bool | ReadFileSystemOptions (const FileSystemOptions &FSOpts, bool Complain) |
Receives the file system options. More... | |
virtual void | visitModuleFile (StringRef Filename, serialization::ModuleKind Kind) |
This is called for each AST file loaded. More... | |
virtual bool | needsInputFileVisitation () |
Returns true if this ASTReaderListener wants to receive the input files of the AST file via visitInputFile , false otherwise. More... | |
virtual bool | needsSystemInputFileVisitation () |
Returns true if this ASTReaderListener wants to receive the system input files of the AST file via visitInputFile , false otherwise. More... | |
virtual bool | visitInputFile (StringRef Filename, bool isSystem, bool isOverridden, bool isExplicitModule) |
if needsInputFileVisitation returns true, this is called for each non-system input file of the AST File. More... | |
virtual bool | needsImportVisitation () const |
Returns true if this ASTReaderListener wants to receive the imports of the AST file via visitImport , false otherwise. More... | |
virtual void | visitImport (StringRef ModuleName, StringRef Filename) |
If needsImportVisitation returns true , this is called for each AST file imported by this AST file. More... | |
virtual void | readModuleFileExtension (const ModuleFileExtensionMetadata &Metadata) |
Indicates that a particular module file extension has been read. More... | |
ASTReaderListener implementation to validate the information of the PCH file against an initialized Preprocessor.
Definition at line 289 of file ASTReader.h.
|
inline |
Definition at line 294 of file ASTReader.h.
References clang::Error, clang::ASTReaderListener::ReadCounter(), clang::ASTReaderListener::ReadDiagnosticOptions(), clang::ASTReaderListener::ReadHeaderSearchOptions(), clang::ASTReaderListener::ReadLanguageOptions(), clang::ASTReaderListener::ReadPreprocessorOptions(), and clang::ASTReaderListener::ReadTargetOptions().
|
overridevirtual |
Receives COUNTER value.
Reimplemented from clang::ASTReaderListener.
Definition at line 800 of file ASTReader.cpp.
|
overridevirtual |
Receives the diagnostic options.
Reimplemented from clang::ASTReaderListener.
Definition at line 555 of file ASTReader.cpp.
References checkDiagnosticMappings(), clang::DiagnosticsEngine::getDiagnosticIDs(), getTopImportImplicitModule(), clang::ProcessWarningOptions(), and clang::serialization::ModuleManager::size().
|
overridevirtual |
Receives the header search options.
Reimplemented from clang::ASTReaderListener.
Definition at line 791 of file ASTReader.cpp.
References checkHeaderSearchOptions().
|
overridevirtual |
Receives the language options.
Reimplemented from clang::ASTReaderListener.
Definition at line 430 of file ASTReader.cpp.
References checkLanguageOptions().
|
overridevirtual |
Receives the preprocessor options.
SuggestedPredefines | Can be filled in with the set of predefines that are suggested by the preprocessor options. Typically only used when loading a precompiled header. |
Reimplemented from clang::ASTReaderListener.
Definition at line 745 of file ASTReader.cpp.
References checkPreprocessorOptions().
|
overridevirtual |
Receives the target options.
Reimplemented from clang::ASTReaderListener.
Definition at line 439 of file ASTReader.cpp.
References checkTargetOptions().