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);
276 BuildGlobalModuleIndex = Build;
286 return Invocation->getCodeGenOpts();
289 return Invocation->getCodeGenOpts();
293 return Invocation->getDependencyOutputOpts();
296 return Invocation->getDependencyOutputOpts();
300 return Invocation->getDiagnosticOpts();
303 return Invocation->getDiagnosticOpts();
307 return Invocation->getFileSystemOpts();
310 return Invocation->getFileSystemOpts();
314 return Invocation->getFrontendOpts();
317 return Invocation->getFrontendOpts();
321 return Invocation->getHeaderSearchOpts();
324 return Invocation->getHeaderSearchOpts();
329 return Invocation->getAPINotesOpts();
336 return Invocation->getPreprocessorOpts();
339 return Invocation->getPreprocessorOpts();
343 return Invocation->getPreprocessorOutputOpts();
346 return Invocation->getPreprocessorOutputOpts();
350 return Invocation->getTargetOpts();
353 return Invocation->getTargetOpts();
364 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
369 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
377 assert(Diagnostics && Diagnostics->getClient() &&
378 "Compiler instance has no diagnostic client!");
379 return *Diagnostics->getClient();
394 return *VerboseOutputStream;
404 assert(Target &&
"Compiler instance has no target!");
409 assert(Target &&
"Compiler instance has no target!");
444 BaseFS = llvm::vfs::getRealFileSystem(),
466 assert(FileMgr &&
"Compiler instance has no file manager!");
471 assert(FileMgr &&
"Compiler instance has no file manager!");
476 llvm::BuryPointer(FileMgr.get());
477 FileMgr.resetWithoutRelease();
507 assert(SourceMgr &&
"Compiler instance has no source manager!");
512 assert(SourceMgr &&
"Compiler instance has no source manager!");
517 llvm::BuryPointer(SourceMgr.get());
518 SourceMgr.resetWithoutRelease();
532 assert(PP &&
"Compiler instance has no preprocessor!");
539 llvm::BuryPointer(
new std::shared_ptr<Preprocessor>(PP));
552 assert(Context &&
"Compiler instance has no AST context!");
557 assert(Context &&
"Compiler instance has no AST context!");
562 llvm::BuryPointer(Context.get());
563 Context.resetWithoutRelease();
580 assert(Consumer &&
"Compiler instance has no AST consumer!");
595 bool hasSema()
const {
return (
bool)TheSema; }
598 assert(TheSema &&
"Compiler instance has no Sema object!");
614 std::shared_ptr<ModuleDependencyCollector> Collector);
617 return ThePCHContainerOperations;
623 assert(Invocation &&
"cannot determine module format without invocation");
625 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
628 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
629 llvm::report_fatal_error(
"unknown module format");
637 assert(Invocation &&
"cannot determine module format without invocation");
639 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
642 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
643 llvm::report_fatal_error(
"unknown module format");
655 assert(CompletionConsumer &&
656 "Compiler instance has no code completion consumer!");
657 return *CompletionConsumer;
679 assert(FrontendTimer &&
"Compiler instance has no frontend timer!");
680 return *FrontendTimer;
710 bool ShouldOwnClient =
true);
736 bool ShouldOwnClient =
true,
750 std::unique_ptr<DependencyDirectivesGetter> Getter) {
751 GetDependencyDirectives = std::move(Getter);
761 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
762 bool OwnDeserializationListener);
768 StringRef Path, StringRef Sysroot,
773 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
774 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
775 void *DeserializationListener,
bool OwnDeserializationListener,
776 bool Preamble,
bool UseGlobalModuleIndex);
806 bool Binary =
true, StringRef BaseInput =
"", StringRef Extension =
"",
807 bool RemoveFileOnSignal =
true,
bool CreateMissingDirectories =
false,
808 bool ForceUseTemporary =
false);
814 std::unique_ptr<raw_pwrite_stream>
816 bool UseTemporary,
bool CreateMissingDirectories =
false);
824 void PrepareForExecution();
844 createOutputFileImpl(StringRef OutputPath,
bool Binary,
845 bool RemoveFileOnSignal,
bool UseTemporary,
846 bool CreateMissingDirectories);
873 OutputStream = std::move(OutStream);
877 return std::move(OutputStream);
890 std::shared_ptr<ModuleCache> ModCache;
891 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
897 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector =
nullptr)
898 : VFS(
std::move(VFS)), DiagConsumer(DiagConsumer),
899 ModCache(
std::move(ModCache)),
900 ModuleDepCollector(
std::move(ModuleDepCollector)) {
901 assert(this->VFS &&
"Clone config requires non-null VFS");
902 assert(this->ModCache &&
"Clone config requires non-null ModuleCache");
909 return ModuleDepCollector;
928 bool IsInclusionDirective);
933 std::unique_ptr<CompilerInstance> cloneForModuleCompileImpl(
936 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
948 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
956 StringRef ModuleName,
962 bool IsInclusionDirective)
override;
965 StringRef Source)
override;
979 GenModuleActionWrapper = Wrapper;
983 return GenModuleActionWrapper;
987 DependencyCollectors.push_back(std::move(Listener));
993 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