9#ifndef LLVM_CLANG_FRONTEND_COMPILERINSTANCE_H_
10#define LLVM_CLANG_FRONTEND_COMPILERINSTANCE_H_
23#include "llvm/ADT/ArrayRef.h"
24#include "llvm/ADT/DenseMap.h"
25#include "llvm/ADT/IntrusiveRefCntPtr.h"
26#include "llvm/ADT/StringRef.h"
27#include "llvm/Support/BuryPointer.h"
28#include "llvm/Support/FileSystem.h"
29#include "llvm/Support/VirtualFileSystem.h"
30#include "llvm/Support/VirtualOutputBackend.h"
86 std::shared_ptr<CompilerInvocation> Invocation;
98 std::unique_ptr<TargetOptions> AuxTargetOpts;
113 std::shared_ptr<ModuleCache> ModCache;
116 std::unique_ptr<DependencyDirectivesGetter> GetDependencyDirectives;
119 std::shared_ptr<Preprocessor> PP;
128 std::unique_ptr<ASTConsumer> Consumer;
131 std::unique_ptr<CodeCompleteConsumer> CompletionConsumer;
134 std::unique_ptr<Sema> TheSema;
137 std::vector<std::unique_ptr<llvm::PassPlugin>> PassPlugins;
140 std::unique_ptr<llvm::TimerGroup> timerGroup;
143 std::unique_ptr<llvm::Timer> FrontendTimer;
149 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
152 std::shared_ptr<PCHContainerOperations> ThePCHContainerOperations;
154 std::vector<std::shared_ptr<DependencyCollector>> DependencyCollectors;
162 llvm::StringSet<> FailedModules;
166 std::map<std::string, std::string, std::less<>> BuiltModules;
169 bool DeleteBuiltModules =
true;
174 llvm::SmallDenseMap<SourceLocation, ModuleLoadResult, 4> ModuleImportResults;
178 bool BuildGlobalModuleIndex =
false;
181 bool HaveFullGlobalModuleIndex =
false;
184 bool DisableGeneratingGlobalModuleIndex =
false;
187 std::unique_ptr<raw_ostream> OwnedVerboseOutputStream;
190 raw_ostream *VerboseOutputStream = &llvm::errs();
193 std::list<llvm::vfs::OutputFile> OutputFiles;
196 std::unique_ptr<llvm::raw_pwrite_stream> OutputStream;
198 using GenModuleActionWrapperFunc =
204 GenModuleActionWrapperFunc GenModuleActionWrapper;
206 CompilerInstance(
const CompilerInstance &) =
delete;
207 void operator=(
const CompilerInstance &) =
delete;
209 explicit CompilerInstance(
210 std::shared_ptr<CompilerInvocation> Invocation =
211 std::make_shared<CompilerInvocation>(),
212 std::shared_ptr<PCHContainerOperations> PCHContainerOps =
213 std::make_shared<PCHContainerOperations>(),
214 std::shared_ptr<ModuleCache> ModCache =
nullptr);
269 BuildGlobalModuleIndex = Build;
279 return Invocation->getCodeGenOpts();
282 return Invocation->getCodeGenOpts();
286 return Invocation->getDependencyOutputOpts();
289 return Invocation->getDependencyOutputOpts();
293 return Invocation->getDiagnosticOpts();
296 return Invocation->getDiagnosticOpts();
300 return Invocation->getFileSystemOpts();
303 return Invocation->getFileSystemOpts();
307 return Invocation->getFrontendOpts();
310 return Invocation->getFrontendOpts();
314 return Invocation->getHeaderSearchOpts();
317 return Invocation->getHeaderSearchOpts();
322 return Invocation->getAPINotesOpts();
329 return Invocation->getPreprocessorOpts();
332 return Invocation->getPreprocessorOpts();
336 return Invocation->getPreprocessorOutputOpts();
339 return Invocation->getPreprocessorOutputOpts();
343 return Invocation->getTargetOpts();
346 return Invocation->getTargetOpts();
357 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
362 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
370 assert(Diagnostics && Diagnostics->getClient() &&
371 "Compiler instance has no diagnostic client!");
372 return *Diagnostics->getClient();
387 return *VerboseOutputStream;
397 assert(Target &&
"Compiler instance has no target!");
402 assert(Target &&
"Compiler instance has no target!");
437 BaseFS = llvm::vfs::getRealFileSystem(),
459 assert(FileMgr &&
"Compiler instance has no file manager!");
464 assert(FileMgr &&
"Compiler instance has no file manager!");
469 llvm::BuryPointer(FileMgr.get());
470 FileMgr.resetWithoutRelease();
500 assert(SourceMgr &&
"Compiler instance has no source manager!");
505 assert(SourceMgr &&
"Compiler instance has no source manager!");
510 llvm::BuryPointer(SourceMgr.get());
511 SourceMgr.resetWithoutRelease();
525 assert(PP &&
"Compiler instance has no preprocessor!");
532 llvm::BuryPointer(
new std::shared_ptr<Preprocessor>(PP));
545 assert(Context &&
"Compiler instance has no AST context!");
550 assert(Context &&
"Compiler instance has no AST context!");
555 llvm::BuryPointer(Context.get());
556 Context.resetWithoutRelease();
573 assert(Consumer &&
"Compiler instance has no AST consumer!");
588 bool hasSema()
const {
return (
bool)TheSema; }
591 assert(TheSema &&
"Compiler instance has no Sema object!");
607 std::shared_ptr<ModuleDependencyCollector> Collector);
610 return ThePCHContainerOperations;
616 assert(Invocation &&
"cannot determine module format without invocation");
618 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
621 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
622 llvm::report_fatal_error(
"unknown module format");
630 assert(Invocation &&
"cannot determine module format without invocation");
632 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
635 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
636 llvm::report_fatal_error(
"unknown module format");
648 assert(CompletionConsumer &&
649 "Compiler instance has no code completion consumer!");
650 return *CompletionConsumer;
672 assert(FrontendTimer &&
"Compiler instance has no frontend timer!");
673 return *FrontendTimer;
703 bool ShouldOwnClient =
true);
729 bool ShouldOwnClient =
true,
743 std::unique_ptr<DependencyDirectivesGetter> Getter) {
744 GetDependencyDirectives = std::move(Getter);
754 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
755 bool OwnDeserializationListener);
761 StringRef Path, StringRef Sysroot,
766 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
767 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
768 void *DeserializationListener,
bool OwnDeserializationListener,
769 bool Preamble,
bool UseGlobalModuleIndex);
799 bool Binary =
true, StringRef BaseInput =
"", StringRef Extension =
"",
800 bool RemoveFileOnSignal =
true,
bool CreateMissingDirectories =
false,
801 bool ForceUseTemporary =
false);
807 std::unique_ptr<raw_pwrite_stream>
809 bool UseTemporary,
bool CreateMissingDirectories =
false);
830 createOutputFileImpl(StringRef OutputPath,
bool Binary,
831 bool RemoveFileOnSignal,
bool UseTemporary,
832 bool CreateMissingDirectories);
859 OutputStream = std::move(OutStream);
863 return std::move(OutputStream);
876 std::shared_ptr<ModuleCache> ModCache;
877 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
883 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector =
nullptr)
884 : VFS(
std::move(VFS)), DiagConsumer(DiagConsumer),
885 ModCache(
std::move(ModCache)),
886 ModuleDepCollector(
std::move(ModuleDepCollector)) {
887 assert(this->VFS &&
"Clone config requires non-null VFS");
888 assert(this->ModCache &&
"Clone config requires non-null ModuleCache");
895 return ModuleDepCollector;
914 bool IsInclusionDirective);
919 std::unique_ptr<CompilerInstance> cloneForModuleCompileImpl(
922 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
934 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
942 StringRef ModuleName,
948 bool IsInclusionDirective)
override;
951 StringRef Source)
override;
965 GenModuleActionWrapper = Wrapper;
969 return GenModuleActionWrapper;
973 DependencyCollectors.push_back(std::move(Listener));
979 return DependencyCollectors;
Defines the Diagnostic-related interfaces.
This is the interface for scanning header and source files to get the minimum necessary preprocessor ...
Defines the SourceManager interface.
Tracks various options which control how API notes are found and handled.
ASTConsumer - This is an abstract interface that should be implemented by clients that read ASTs.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Reads an AST files chain containing the contents of a translation unit.
Stores options for the analyzer from the command line.
Abstract interface for a consumer of code-completion information.
Options controlling the behavior of code completion.
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
std::shared_ptr< ModuleDependencyCollector > getModuleDepCollector() const
IntrusiveRefCntPtr< llvm::vfs::FileSystem > getVFS() const
std::shared_ptr< ModuleCache > getModuleCache() const
ThreadSafeCloneConfig(IntrusiveRefCntPtr< llvm::vfs::FileSystem > VFS, DiagnosticConsumer &DiagConsumer, std::shared_ptr< ModuleCache > ModCache, std::shared_ptr< ModuleDependencyCollector > ModuleDepCollector=nullptr)
DiagnosticConsumer & getDiagConsumer() const
CompilerInstance - Helper class for managing a single instance of the Clang compiler.
bool hasOutputManager() const
bool loadModuleFile(ModuleFileName FileName, serialization::ModuleFile *&LoadedModuleFile)
void createPCHExternalASTSource(StringRef Path, DisableValidationForModuleKind DisableValidation, bool AllowPCHWithCompilerErrors, void *DeserializationListener, bool OwnDeserializationListener)
Create an external AST source to read a PCH file and attach it to the AST context.
DiagnosticConsumer & getDiagnosticClient() const
~CompilerInstance() override
void createPreprocessor(TranslationUnitKind TUKind)
Create the preprocessor, using the invocation, file, and source managers, and replace any existing on...
void clearDependencyCollectors()
AnalyzerOptions & getAnalyzerOpts()
bool lookupMissingImports(StringRef Name, SourceLocation TriggerLoc) override
Check global module index for missing imports.
void setOutputManager(IntrusiveRefCntPtr< llvm::vfs::OutputBackend > NewOutputs)
Set the output manager.
void createDiagnostics(DiagnosticConsumer *Client=nullptr, bool ShouldOwnClient=true)
Create the diagnostics engine using the invocation's diagnostic options and replace any existing one ...
const HeaderSearchOptions & getHeaderSearchOpts() const
DependencyOutputOptions & getDependencyOutputOpts()
bool hasFileManager() const
const DependencyOutputOptions & getDependencyOutputOpts() const
std::shared_ptr< Preprocessor > getPreprocessorPtr()
TargetInfo * getAuxTarget() const
const PCHContainerReader & getPCHContainerReader() const
Return the appropriate PCHContainerReader depending on the current CodeGenOptions.
DiagnosticsEngine & getDiagnostics() const
Get the current diagnostics engine.
GlobalModuleIndex * loadGlobalModuleIndex(SourceLocation TriggerLoc) override
Load, create, or return global module.
raw_ostream & getVerboseOutputStream()
Get the current stream for verbose output.
llvm::TimerGroup & getTimerGroup() const
std::unique_ptr< raw_pwrite_stream > createDefaultOutputFile(bool Binary=true, StringRef BaseInput="", StringRef Extension="", bool RemoveFileOnSignal=true, bool CreateMissingDirectories=false, bool ForceUseTemporary=false)
Create the default output file (from the invocation's options) and add it to the list of tracked outp...
void setExternalSemaSource(IntrusiveRefCntPtr< ExternalSemaSource > ESS)
GenModuleActionWrapperFunc getGenModuleActionWrapper() const
const DiagnosticOptions & getDiagnosticOpts() const
ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective) override
Attempt to load the given module.
const CodeGenOptions & getCodeGenOpts() const
FileSystemOptions & getFileSystemOpts()
llvm::Timer & getFrontendTimer() const
const TargetOptions & getTargetOpts() const
bool InitializeSourceManager(const FrontendInputFile &Input)
InitializeSourceManager - Initialize the source manager to set InputFile as the main file.
void createFileManager()
Create the file manager and replace any existing one with it.
void setVirtualFileSystem(IntrusiveRefCntPtr< llvm::vfs::FileSystem > FS)
Use the given file system.
void setOutputStream(std::unique_ptr< llvm::raw_pwrite_stream > OutStream)
FileManager & getFileManager() const
Return the current file manager to the caller.
void setBuildGlobalModuleIndex(bool Build)
Set the flag indicating whether we should (re)build the global module index.
IntrusiveRefCntPtr< DiagnosticsEngine > getDiagnosticsPtr() const
void createOutputManager()
Create an output manager.
std::unique_ptr< Sema > takeSema()
const PreprocessorOptions & getPreprocessorOpts() const
std::unique_ptr< llvm::MemoryBuffer > compileModule(SourceLocation ImportLoc, StringRef ModuleName, StringRef ModuleFileName, CompilerInstance &Instance)
Compile a module file for the given module, using the options provided by the importing compiler inst...
void printDiagnosticStats()
At the end of a compilation, print the number of warnings/errors.
void resetAndLeakSourceManager()
void setASTConsumer(std::unique_ptr< ASTConsumer > Value)
setASTConsumer - Replace the current AST consumer; the compiler instance takes ownership of Value.
PreprocessorOutputOptions & getPreprocessorOutputOpts()
IntrusiveRefCntPtr< FileManager > getFileManagerPtr() const
IntrusiveRefCntPtr< ASTContext > getASTContextPtr() const
ModuleCache & getModuleCache() const
const PreprocessorOutputOptions & getPreprocessorOutputOpts() const
IntrusiveRefCntPtr< ASTReader > getASTReader() const
void setTarget(TargetInfo *Value)
Replace the current Target.
void setModuleDepCollector(std::shared_ptr< ModuleDependencyCollector > Collector)
std::shared_ptr< ModuleCache > getModuleCachePtr() const
void addDependencyCollector(std::shared_ptr< DependencyCollector > Listener)
void createASTContext()
Create the AST context.
std::unique_ptr< raw_pwrite_stream > createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal, bool UseTemporary, bool CreateMissingDirectories=false)
Create a new output file, optionally deriving the output path name, and add it to the list of tracked...
bool hasASTContext() const
void createModuleFromSource(SourceLocation ImportLoc, StringRef ModuleName, StringRef Source) override
Attempt to create the given module from the specified source buffer.
void resetAndLeakFileManager()
Preprocessor & getPreprocessor() const
Return the current preprocessor.
ASTContext & getASTContext() const
IntrusiveRefCntPtr< llvm::vfs::FileSystem > getVirtualFileSystemPtr() const
void LoadRequestedPlugins()
Load the list of plugins requested in the FrontendOptions.
TargetOptions & getTargetOpts()
IntrusiveRefCntPtr< TargetInfo > getTargetPtr() const
void createVirtualFileSystem(IntrusiveRefCntPtr< llvm::vfs::FileSystem > BaseFS=llvm::vfs::getRealFileSystem(), DiagnosticConsumer *DC=nullptr)
Create a virtual file system instance based on the invocation.
void setASTReader(IntrusiveRefCntPtr< ASTReader > Reader)
std::unique_ptr< llvm::raw_pwrite_stream > takeOutputStream()
FrontendOptions & getFrontendOpts()
const FrontendOptions & getFrontendOpts() const
std::shared_ptr< ModuleDependencyCollector > getModuleDepCollector() const
std::shared_ptr< CompilerInvocation > getInvocationPtr()
bool hasDiagnostics() const
bool hadModuleLoaderFatalFailure() const
void setSema(Sema *S)
Replace the current Sema; the compiler instance takes ownership of S.
std::unique_ptr< CompilerInstance > cloneForModuleCompile(SourceLocation ImportLoc, const Module *Module, StringRef ModuleFileName, std::optional< ThreadSafeCloneConfig > ThreadSafeConfig=std::nullopt)
Creates a new CompilerInstance for compiling a module.
void setSourceManager(llvm::IntrusiveRefCntPtr< SourceManager > Value)
setSourceManager - Replace the current source manager.
void setASTContext(llvm::IntrusiveRefCntPtr< ASTContext > Value)
setASTContext - Replace the current AST context.
HeaderSearchOptions & getHeaderSearchOpts()
void createFrontendTimer()
Create the frontend timer and replace any existing one with it.
bool hasCodeCompletionConsumer() const
void resetAndLeakASTContext()
std::vector< std::shared_ptr< DependencyCollector > > & getDependencyCollectors()
const LangOptions & getLangOpts() const
void createSourceManager()
Create the source manager and replace any existing one with it.
CompilerInvocation & getInvocation()
const PCHContainerWriter & getPCHContainerWriter() const
Return the appropriate PCHContainerWriter depending on the current CodeGenOptions.
void setVerboseOutputStream(raw_ostream &Value)
Replace the current stream for verbose output.
void resetAndLeakPreprocessor()
std::unique_ptr< ASTConsumer > takeASTConsumer()
takeASTConsumer - Remove the current AST consumer and give ownership to the caller.
PreprocessorOptions & getPreprocessorOpts()
ASTConsumer & getASTConsumer() const
void setFileManager(IntrusiveRefCntPtr< FileManager > Value)
Replace the current file manager.
TargetInfo & getTarget() const
llvm::vfs::OutputBackend & getOutputManager()
llvm::vfs::FileSystem & getVirtualFileSystem() const
const FileSystemOptions & getFileSystemOpts() const
void createCodeCompletionConsumer()
Create a code completion consumer using the invocation; note that this will cause the source manager ...
void setCodeCompletionConsumer(CodeCompleteConsumer *Value)
setCodeCompletionConsumer - Replace the current code completion consumer; the compiler instance takes...
bool ExecuteAction(FrontendAction &Act)
ExecuteAction - Execute the provided action against the compiler's CompilerInvocation object.
std::shared_ptr< PCHContainerOperations > getPCHContainerOperations() const
void clearOutputFiles(bool EraseFiles)
clearOutputFiles - Clear the output file list.
DiagnosticOptions & getDiagnosticOpts()
LangOptions & getLangOpts()
llvm::ArrayRef< std::unique_ptr< llvm::PassPlugin > > getPassPlugins() const
llvm::vfs::OutputBackend & getOrCreateOutputManager()
const APINotesOptions & getAPINotesOpts() const
CodeGenOptions & getCodeGenOpts()
SourceManager & getSourceManager() const
Return the current source manager.
IntrusiveRefCntPtr< SourceManager > getSourceManagerPtr() const
CodeCompleteConsumer & getCodeCompletionConsumer() const
void setDiagnostics(llvm::IntrusiveRefCntPtr< DiagnosticsEngine > Value)
setDiagnostics - Replace the current diagnostics engine.
bool shouldBuildGlobalModuleIndex() const
Indicates whether we should (re)build the global module index.
void setGenModuleActionWrapper(GenModuleActionWrapperFunc Wrapper)
bool hasSourceManager() const
bool hasASTConsumer() const
APINotesOptions & getAPINotesOpts()
std::unique_ptr< raw_pwrite_stream > createNullOutputFile()
void setAuxTarget(TargetInfo *Value)
Replace the current AuxTarget.
void makeModuleVisible(Module *Mod, Module::NameVisibilityKind Visibility, SourceLocation ImportLoc) override
Make the given module visible.
void setDependencyDirectivesGetter(std::unique_ptr< DependencyDirectivesGetter > Getter)
bool hasPreprocessor() const
void setPreprocessor(std::shared_ptr< Preprocessor > Value)
Replace the current preprocessor.
bool hasVirtualFileSystem() const
void createSema(TranslationUnitKind TUKind, CodeCompleteConsumer *CompletionConsumer)
Create the Sema object to be used for parsing.
Helper class for holding the data necessary to invoke the compiler.
DependencyOutputOptions - Options for controlling the compiler dependency file generation.
Abstract interface, implemented by clients of the front-end, which formats and prints fully processed...
Options for controlling the compiler diagnostics engine.
Concrete class used by the front-end to report problems and issues.
Implements support for file system lookup, file system caching, and directory search management.
Keeps track of options that affect how file operations are performed.
Abstract base class for actions which can be performed by the frontend.
FrontendOptions - Options for controlling the behavior of the frontend.
A global index for a set of module files, providing information about the identifiers within those mo...
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
The module cache used for compiling modules implicitly.
Identifies a module file to be loaded.
Describes the result of attempting to load a module.
ModuleLoader(bool BuildingModule=false)
Describes a module or submodule.
NameVisibilityKind
Describes the visibility of the various names within a particular module.
This abstract interface provides operations for unwrapping containers for serialized ASTs (precompile...
This abstract interface provides operations for creating containers for serialized ASTs (precompiled ...
PreprocessorOptions - This class is used for passing the various options used in preprocessor initial...
PreprocessorOutputOptions - Options for controlling the C preprocessor output (e.g....
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
Sema - This implements semantic analysis and AST building for C.
Encodes a location in the source.
This class handles loading and caching of source files into memory.
A trivial tuple used to represent a source range.
Exposes information about the current target.
Options for controlling the target.
Information about a module that has been loaded by the ASTReader.
Defines the clang::TargetInfo interface.
The JSON file list parser is used to communicate input to InstallAPI.
ArrayRef< IdentifierLoc > ModuleIdPath
A sequence of identifier/location pairs used to describe a particular module or submodule,...
TranslationUnitKind
Describes the kind of translation unit being processed.
DisableValidationForModuleKind
Whether to disable the normal validation performed on precompiled headers and module files when they ...
Visibility
Describes the different kinds of visibility that a declaration may have.
Diagnostic wrappers for TextAPI types for error reporting.
int const char * function