clang 19.0.0git
Public Member Functions | Public Attributes | List of all members
clang::PreprocessorOptions Class Reference

PreprocessorOptions - This class is used for passing the various options used in preprocessor initialization to InitializePreprocessor(). More...

#include "clang/Lex/PreprocessorOptions.h"

Public Member Functions

 PreprocessorOptions ()
 
void addMacroDef (StringRef Name)
 
void addMacroUndef (StringRef Name)
 
void addRemappedFile (StringRef From, StringRef To)
 
void addRemappedFile (StringRef From, llvm::MemoryBuffer *To)
 
void clearRemappedFiles ()
 
void resetNonModularOptions ()
 Reset any options that are not considered when building a module.
 

Public Attributes

std::vector< std::pair< std::string, bool > > Macros
 
std::vector< std::string > Includes
 
std::vector< std::string > MacroIncludes
 
bool ModulesCheckRelocated = true
 Perform extra checks when loading PCM files for mutable file systems.
 
bool UsePredefines = true
 Initialize the preprocessor with the compiler and target specific predefines.
 
bool DefineTargetOSMacros = false
 Indicates whether to predefine target OS macros.
 
bool DetailedRecord = false
 Whether we should maintain a detailed record of all macro definitions and expansions.
 
bool PCHWithHdrStop = false
 When true, we are creating or using a PCH where a #pragma hdrstop is expected to indicate the beginning or end of the PCH.
 
bool PCHWithHdrStopCreate = false
 When true, we are creating a PCH or creating the PCH object while expecting a #pragma hdrstop to separate the two.
 
std::string PCHThroughHeader
 If non-empty, the filename used in an #include directive in the primary source file (or command-line preinclude) that is used to implement MSVC-style precompiled headers.
 
std::string ImplicitPCHInclude
 The implicit PCH included at the start of the translation unit, or empty.
 
std::vector< std::string > ChainedIncludes
 Headers that will be converted to chained PCHs in memory.
 
DisableValidationForModuleKind DisablePCHOrModuleValidation
 Whether to disable most of the normal validation performed on precompiled headers and module files.
 
bool AllowPCHWithCompilerErrors = false
 When true, a PCH with compiler errors will not be rejected.
 
bool AllowPCHWithDifferentModulesCachePath = false
 When true, a PCH with modules cache path different to the current compilation will not be rejected.
 
bool DumpDeserializedPCHDecls = false
 Dump declarations that are deserialized from PCH, for testing.
 
std::set< std::string > DeserializedPCHDeclsToErrorOn
 This is a set of names for decls that we do not want to be deserialized, and we emit an error if they are; for testing purposes.
 
std::pair< unsigned, boolPrecompiledPreambleBytes
 If non-zero, the implicit PCH include is actually a precompiled preamble that covers this number of bytes in the main source file.
 
bool GeneratePreamble = false
 True indicates that a preamble is being generated.
 
bool WriteCommentListToPCH = true
 Whether to write comment locations into the PCH when building it.
 
bool SingleFileParseMode = false
 When enabled, preprocessor is in a mode for parsing a single file only.
 
bool LexEditorPlaceholders = true
 When enabled, the preprocessor will construct editor placeholder tokens.
 
bool RemappedFilesKeepOriginalName = true
 True if the SourceManager should report the original file name for contents of files that were remapped to other files.
 
std::vector< std::pair< std::string, std::string > > RemappedFiles
 The set of file remappings, which take existing files on the system (the first part of each pair) and gives them the contents of other files on the system (the second part of each pair).
 
std::vector< std::pair< std::string, llvm::MemoryBuffer * > > RemappedFileBuffers
 The set of file-to-buffer remappings, which take existing files on the system (the first part of each pair) and gives them the contents of the specified memory buffer (the second part of each pair).
 
bool RetainRemappedFileBuffers = false
 Whether the compiler instance should retain (i.e., not free) the buffers associated with remapped files.
 
bool RetainExcludedConditionalBlocks = false
 When enabled, excluded conditional blocks retain in the main file.
 
ObjCXXARCStandardLibraryKind ObjCXXARCStandardLibrary = ARCXX_nolib
 The Objective-C++ ARC standard library that we should support, by providing appropriate definitions to retrofit the standard library with support for lifetime-qualified pointers.
 
std::function< std::optional< ArrayRef< dependency_directives_scan::Directive > >(FileEntryRef)> DependencyDirectivesForFile
 Function for getting the dependency preprocessor directives of a file.
 
bool SetUpStaticAnalyzer = false
 Set up preprocessor for RunAnalysis action.
 
bool DisablePragmaDebugCrash = false
 Prevents intended crashes when using #pragma clang __debug. For testing.
 
std::optional< uint64_t > SourceDateEpoch
 If set, the UNIX timestamp specified by SOURCE_DATE_EPOCH.
 

Detailed Description

PreprocessorOptions - This class is used for passing the various options used in preprocessor initialization to InitializePreprocessor().

Definition at line 66 of file PreprocessorOptions.h.

Constructor & Destructor Documentation

◆ PreprocessorOptions()

clang::PreprocessorOptions::PreprocessorOptions ( )
inline

Definition at line 212 of file PreprocessorOptions.h.

Member Function Documentation

◆ addMacroDef()

void clang::PreprocessorOptions::addMacroDef ( StringRef  Name)
inline

Definition at line 214 of file PreprocessorOptions.h.

References Macros.

Referenced by ParsePreprocessorArgs().

◆ addMacroUndef()

void clang::PreprocessorOptions::addMacroUndef ( StringRef  Name)
inline

Definition at line 217 of file PreprocessorOptions.h.

References Macros.

Referenced by ParsePreprocessorArgs().

◆ addRemappedFile() [1/2]

void clang::PreprocessorOptions::addRemappedFile ( StringRef  From,
llvm::MemoryBuffer *  To 
)
inline

Definition at line 225 of file PreprocessorOptions.h.

References RemappedFileBuffers.

◆ addRemappedFile() [2/2]

void clang::PreprocessorOptions::addRemappedFile ( StringRef  From,
StringRef  To 
)
inline

◆ clearRemappedFiles()

void clang::PreprocessorOptions::clearRemappedFiles ( )
inline

Definition at line 229 of file PreprocessorOptions.h.

References RemappedFileBuffers, and RemappedFiles.

Referenced by clang::ASTUnit::CodeComplete().

◆ resetNonModularOptions()

void clang::PreprocessorOptions::resetNonModularOptions ( )
inline

Member Data Documentation

◆ AllowPCHWithCompilerErrors

bool clang::PreprocessorOptions::AllowPCHWithCompilerErrors = false

When true, a PCH with compiler errors will not be rejected.

Definition at line 115 of file PreprocessorOptions.h.

Referenced by clang::FrontendAction::BeginSourceFile(), clang::GeneratePCHAction::CreateASTConsumer(), and clang::ASTUnit::LoadFromCommandLine().

◆ AllowPCHWithDifferentModulesCachePath

bool clang::PreprocessorOptions::AllowPCHWithDifferentModulesCachePath = false

When true, a PCH with modules cache path different to the current compilation will not be rejected.

Definition at line 119 of file PreprocessorOptions.h.

Referenced by checkHeaderSearchOptions().

◆ ChainedIncludes

std::vector<std::string> clang::PreprocessorOptions::ChainedIncludes

Headers that will be converted to chained PCHs in memory.

Definition at line 107 of file PreprocessorOptions.h.

Referenced by clang::FrontendAction::BeginSourceFile(), clang::createChainedIncludesSource(), GeneratePreprocessorArgs(), ParsePreprocessorArgs(), and resetNonModularOptions().

◆ DefineTargetOSMacros

bool clang::PreprocessorOptions::DefineTargetOSMacros = false

Indicates whether to predefine target OS macros.

Definition at line 80 of file PreprocessorOptions.h.

Referenced by GeneratePreprocessorArgs(), InitializePredefinedMacros(), and ParsePreprocessorArgs().

◆ DependencyDirectivesForFile

std::function<std::optional<ArrayRef<dependency_directives_scan::Directive> >( FileEntryRef)> clang::PreprocessorOptions::DependencyDirectivesForFile

Function for getting the dependency preprocessor directives of a file.

These are directives derived from a special form of lexing where the source input is scanned for the preprocessor directives that might have an effect on the dependencies for a compilation unit.

Enables a client to cache the directives for a file and provide them across multiple compiler invocations. FIXME: Allow returning an error.

Definition at line 200 of file PreprocessorOptions.h.

◆ DeserializedPCHDeclsToErrorOn

std::set<std::string> clang::PreprocessorOptions::DeserializedPCHDeclsToErrorOn

This is a set of names for decls that we do not want to be deserialized, and we emit an error if they are; for testing purposes.

Definition at line 126 of file PreprocessorOptions.h.

Referenced by clang::FrontendAction::BeginSourceFile(), GeneratePreprocessorArgs(), and ParsePreprocessorArgs().

◆ DetailedRecord

bool clang::PreprocessorOptions::DetailedRecord = false

Whether we should maintain a detailed record of all macro definitions and expansions.

Definition at line 84 of file PreprocessorOptions.h.

Referenced by checkPreprocessorOptions(), clang::ASTUnit::CodeComplete(), clang::CompilerInstance::createPreprocessor(), and clang::CompilerInvocation::getModuleHash().

◆ DisablePCHOrModuleValidation

DisableValidationForModuleKind clang::PreprocessorOptions::DisablePCHOrModuleValidation
Initial value:

Whether to disable most of the normal validation performed on precompiled headers and module files.

Definition at line 111 of file PreprocessorOptions.h.

Referenced by clang::FrontendAction::BeginSourceFile(), and clang::CompilerInstance::createASTReader().

◆ DisablePragmaDebugCrash

bool clang::PreprocessorOptions::DisablePragmaDebugCrash = false

Prevents intended crashes when using #pragma clang __debug. For testing.

Definition at line 206 of file PreprocessorOptions.h.

◆ DumpDeserializedPCHDecls

bool clang::PreprocessorOptions::DumpDeserializedPCHDecls = false

Dump declarations that are deserialized from PCH, for testing.

Definition at line 122 of file PreprocessorOptions.h.

Referenced by clang::FrontendAction::BeginSourceFile(), and resetNonModularOptions().

◆ GeneratePreamble

bool clang::PreprocessorOptions::GeneratePreamble = false

True indicates that a preamble is being generated.

When the lexer is done, one of the things that need to be preserved is the conditional if stack, so the ASTWriter/ASTReader can save/restore it when processing the rest of the file. Similarly, we track an unterminated #pragma assume_nonnull.

Definition at line 141 of file PreprocessorOptions.h.

Referenced by clang::PrecompiledPreamble::Build().

◆ ImplicitPCHInclude

std::string clang::PreprocessorOptions::ImplicitPCHInclude

◆ Includes

std::vector<std::string> clang::PreprocessorOptions::Includes

◆ LexEditorPlaceholders

bool clang::PreprocessorOptions::LexEditorPlaceholders = true

When enabled, the preprocessor will construct editor placeholder tokens.

Definition at line 156 of file PreprocessorOptions.h.

Referenced by ParsePreprocessorArgs(), and resetNonModularOptions().

◆ MacroIncludes

std::vector<std::string> clang::PreprocessorOptions::MacroIncludes

◆ Macros

std::vector<std::pair<std::string, bool> > clang::PreprocessorOptions::Macros

◆ ModulesCheckRelocated

bool clang::PreprocessorOptions::ModulesCheckRelocated = true

Perform extra checks when loading PCM files for mutable file systems.

Definition at line 73 of file PreprocessorOptions.h.

◆ ObjCXXARCStandardLibrary

ObjCXXARCStandardLibraryKind clang::PreprocessorOptions::ObjCXXARCStandardLibrary = ARCXX_nolib

The Objective-C++ ARC standard library that we should support, by providing appropriate definitions to retrofit the standard library with support for lifetime-qualified pointers.

Definition at line 187 of file PreprocessorOptions.h.

Referenced by clang::InitializePreprocessor().

◆ PCHThroughHeader

std::string clang::PreprocessorOptions::PCHThroughHeader

If non-empty, the filename used in an #include directive in the primary source file (or command-line preinclude) that is used to implement MSVC-style precompiled headers.

When creating a PCH, after the #include of this header, the PCH generation stops. When using a PCH, tokens are skipped until after an #include of this header is seen.

Definition at line 101 of file PreprocessorOptions.h.

Referenced by checkPreprocessorOptions().

◆ PCHWithHdrStop

bool clang::PreprocessorOptions::PCHWithHdrStop = false

When true, we are creating or using a PCH where a #pragma hdrstop is expected to indicate the beginning or end of the PCH.

Definition at line 88 of file PreprocessorOptions.h.

Referenced by GeneratePreprocessorArgs(), and ParsePreprocessorArgs().

◆ PCHWithHdrStopCreate

bool clang::PreprocessorOptions::PCHWithHdrStopCreate = false

When true, we are creating a PCH or creating the PCH object while expecting a #pragma hdrstop to separate the two.

Allow for a missing #pragma hdrstop, which generates a PCH for the whole file, and creates an empty PCH object.

Definition at line 94 of file PreprocessorOptions.h.

Referenced by GeneratePreprocessorArgs().

◆ PrecompiledPreambleBytes

std::pair<unsigned, bool> clang::PreprocessorOptions::PrecompiledPreambleBytes

If non-zero, the implicit PCH include is actually a precompiled preamble that covers this number of bytes in the main source file.

The boolean indicates whether the preamble ends at the start of a new line.

Definition at line 133 of file PreprocessorOptions.h.

Referenced by clang::PrecompiledPreamble::Build(), clang::ASTUnit::CodeComplete(), clang::CompilerInstance::createPCHExternalASTSource(), clang::VerifyPCHAction::ExecuteAction(), GeneratePreprocessorArgs(), clang::InitializePreprocessor(), ParsePreprocessorArgs(), and resetNonModularOptions().

◆ RemappedFileBuffers

std::vector<std::pair<std::string, llvm::MemoryBuffer *> > clang::PreprocessorOptions::RemappedFileBuffers

The set of file-to-buffer remappings, which take existing files on the system (the first part of each pair) and gives them the contents of the specified memory buffer (the second part of each pair).

Definition at line 171 of file PreprocessorOptions.h.

Referenced by addRemappedFile(), clang::PrecompiledPreamble::CanReuse(), clearRemappedFiles(), InitializeFileRemapping(), clang::ASTUnit::Reparse(), and clang::ASTUnit::~ASTUnit().

◆ RemappedFiles

std::vector<std::pair<std::string, std::string> > clang::PreprocessorOptions::RemappedFiles

The set of file remappings, which take existing files on the system (the first part of each pair) and gives them the contents of other files on the system (the second part of each pair).

Definition at line 166 of file PreprocessorOptions.h.

Referenced by addRemappedFile(), clang::FixItRecompile::BeginInvocation(), clang::PrecompiledPreamble::CanReuse(), clearRemappedFiles(), GeneratePreprocessorArgs(), and InitializeFileRemapping().

◆ RemappedFilesKeepOriginalName

bool clang::PreprocessorOptions::RemappedFilesKeepOriginalName = true

True if the SourceManager should report the original file name for contents of files that were remapped to other files.

Defaults to true.

Definition at line 160 of file PreprocessorOptions.h.

Referenced by clang::FixItRecompile::BeginInvocation(), InitializeFileRemapping(), and clang::ASTUnit::LoadFromCommandLine().

◆ RetainExcludedConditionalBlocks

bool clang::PreprocessorOptions::RetainExcludedConditionalBlocks = false

When enabled, excluded conditional blocks retain in the main file.

Definition at line 182 of file PreprocessorOptions.h.

Referenced by clang::ASTUnit::LoadFromCommandLine(), and resetNonModularOptions().

◆ RetainRemappedFileBuffers

bool clang::PreprocessorOptions::RetainRemappedFileBuffers = false

Whether the compiler instance should retain (i.e., not free) the buffers associated with remapped files.

This flag defaults to false; it can be set true only through direct manipulation of the compiler invocation object, in cases where the compiler invocation and its buffers will be reused.

Definition at line 179 of file PreprocessorOptions.h.

Referenced by clang::arcmt::FileRemapper::applyMappings(), clang::PrecompiledPreamble::Build(), clang::ASTUnit::CodeComplete(), InitializeFileRemapping(), and resetNonModularOptions().

◆ SetUpStaticAnalyzer

bool clang::PreprocessorOptions::SetUpStaticAnalyzer = false

Set up preprocessor for RunAnalysis action.

Definition at line 203 of file PreprocessorOptions.h.

Referenced by InitializePredefinedMacros().

◆ SingleFileParseMode

bool clang::PreprocessorOptions::SingleFileParseMode = false

When enabled, preprocessor is in a mode for parsing a single file only.

Disables #includes of other files and if there are unresolved identifiers in preprocessor directive conditions it causes all blocks to be parsed so that the client can get the maximum amount of information from the parser.

Definition at line 153 of file PreprocessorOptions.h.

Referenced by clang::ASTUnit::LoadFromCommandLine(), and resetNonModularOptions().

◆ SourceDateEpoch

std::optional<uint64_t> clang::PreprocessorOptions::SourceDateEpoch

If set, the UNIX timestamp specified by SOURCE_DATE_EPOCH.

Definition at line 209 of file PreprocessorOptions.h.

Referenced by ComputeDATE_TIME(), GeneratePreprocessorArgs(), ParsePreprocessorArgs(), and clang::CodeGen::CodeGenModule::Release().

◆ UsePredefines

bool clang::PreprocessorOptions::UsePredefines = true

Initialize the preprocessor with the compiler and target specific predefines.

Definition at line 77 of file PreprocessorOptions.h.

Referenced by checkPreprocessorOptions(), clang::CompilerInvocation::getModuleHash(), and clang::InitializePreprocessor().

◆ WriteCommentListToPCH

bool clang::PreprocessorOptions::WriteCommentListToPCH = true

Whether to write comment locations into the PCH when building it.

Reading the comments from the PCH can be a performance hit even if the clients don't use them.

Definition at line 146 of file PreprocessorOptions.h.


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