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;
181 bool BuildGlobalModuleIndex =
false;
184 bool HaveFullGlobalModuleIndex =
false;
187 bool DisableGeneratingGlobalModuleIndex =
false;
190 std::unique_ptr<raw_ostream> OwnedVerboseOutputStream;
193 raw_ostream *VerboseOutputStream = &llvm::errs();
196 std::list<llvm::vfs::OutputFile> OutputFiles;
199 std::unique_ptr<llvm::raw_pwrite_stream> OutputStream;
201 using GenModuleActionWrapperFunc =
207 GenModuleActionWrapperFunc GenModuleActionWrapper;
209 CompilerInstance(
const CompilerInstance &) =
delete;
210 void operator=(
const CompilerInstance &) =
delete;
212 explicit CompilerInstance(
213 std::shared_ptr<CompilerInvocation> Invocation =
214 std::make_shared<CompilerInvocation>(),
215 std::shared_ptr<PCHContainerOperations> PCHContainerOps =
216 std::make_shared<PCHContainerOperations>(),
217 std::shared_ptr<ModuleCache> ModCache =
nullptr);
272 BuildGlobalModuleIndex = Build;
282 return Invocation->getCodeGenOpts();
285 return Invocation->getCodeGenOpts();
289 return Invocation->getDependencyOutputOpts();
292 return Invocation->getDependencyOutputOpts();
296 return Invocation->getDiagnosticOpts();
299 return Invocation->getDiagnosticOpts();
303 return Invocation->getFileSystemOpts();
306 return Invocation->getFileSystemOpts();
310 return Invocation->getFrontendOpts();
313 return Invocation->getFrontendOpts();
317 return Invocation->getHeaderSearchOpts();
320 return Invocation->getHeaderSearchOpts();
325 return Invocation->getAPINotesOpts();
332 return Invocation->getPreprocessorOpts();
335 return Invocation->getPreprocessorOpts();
339 return Invocation->getPreprocessorOutputOpts();
342 return Invocation->getPreprocessorOutputOpts();
346 return Invocation->getTargetOpts();
349 return Invocation->getTargetOpts();
360 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
365 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
373 assert(Diagnostics && Diagnostics->getClient() &&
374 "Compiler instance has no diagnostic client!");
375 return *Diagnostics->getClient();
390 return *VerboseOutputStream;
400 assert(Target &&
"Compiler instance has no target!");
405 assert(Target &&
"Compiler instance has no target!");
440 BaseFS = llvm::vfs::getRealFileSystem(),
462 assert(FileMgr &&
"Compiler instance has no file manager!");
467 assert(FileMgr &&
"Compiler instance has no file manager!");
472 llvm::BuryPointer(FileMgr.get());
473 FileMgr.resetWithoutRelease();
503 assert(SourceMgr &&
"Compiler instance has no source manager!");
508 assert(SourceMgr &&
"Compiler instance has no source manager!");
513 llvm::BuryPointer(SourceMgr.get());
514 SourceMgr.resetWithoutRelease();
528 assert(PP &&
"Compiler instance has no preprocessor!");
535 llvm::BuryPointer(
new std::shared_ptr<Preprocessor>(PP));
548 assert(Context &&
"Compiler instance has no AST context!");
553 assert(Context &&
"Compiler instance has no AST context!");
558 llvm::BuryPointer(Context.get());
559 Context.resetWithoutRelease();
576 assert(Consumer &&
"Compiler instance has no AST consumer!");
591 bool hasSema()
const {
return (
bool)TheSema; }
594 assert(TheSema &&
"Compiler instance has no Sema object!");
610 std::shared_ptr<ModuleDependencyCollector> Collector);
613 return ThePCHContainerOperations;
619 assert(Invocation &&
"cannot determine module format without invocation");
621 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
624 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
625 llvm::report_fatal_error(
"unknown module format");
633 assert(Invocation &&
"cannot determine module format without invocation");
635 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
638 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
639 llvm::report_fatal_error(
"unknown module format");
651 assert(CompletionConsumer &&
652 "Compiler instance has no code completion consumer!");
653 return *CompletionConsumer;
675 assert(FrontendTimer &&
"Compiler instance has no frontend timer!");
676 return *FrontendTimer;
706 bool ShouldOwnClient =
true);
732 bool ShouldOwnClient =
true,
746 std::unique_ptr<DependencyDirectivesGetter> Getter) {
747 GetDependencyDirectives = std::move(Getter);
757 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
758 bool OwnDeserializationListener);
764 StringRef Path, StringRef Sysroot,
769 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
770 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
771 void *DeserializationListener,
bool OwnDeserializationListener,
772 bool Preamble,
bool UseGlobalModuleIndex);
802 bool Binary =
true, StringRef BaseInput =
"", StringRef Extension =
"",
803 bool RemoveFileOnSignal =
true,
bool CreateMissingDirectories =
false,
804 bool ForceUseTemporary =
false);
810 std::unique_ptr<raw_pwrite_stream>
812 bool UseTemporary,
bool CreateMissingDirectories =
false);
833 createOutputFileImpl(StringRef OutputPath,
bool Binary,
834 bool RemoveFileOnSignal,
bool UseTemporary,
835 bool CreateMissingDirectories);
862 OutputStream = std::move(OutStream);
866 return std::move(OutputStream);
879 std::shared_ptr<ModuleCache> ModCache;
880 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
886 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector =
nullptr)
887 : VFS(
std::move(VFS)), DiagConsumer(DiagConsumer),
888 ModCache(
std::move(ModCache)),
889 ModuleDepCollector(
std::move(ModuleDepCollector)) {
890 assert(this->VFS &&
"Clone config requires non-null VFS");
891 assert(this->ModCache &&
"Clone config requires non-null ModuleCache");
898 return ModuleDepCollector;
917 bool IsInclusionDirective);
922 std::unique_ptr<CompilerInstance> cloneForModuleCompileImpl(
925 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
937 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
945 StringRef ModuleName,
951 bool IsInclusionDirective)
override;
954 StringRef Source)
override;
968 GenModuleActionWrapper = Wrapper;
972 return GenModuleActionWrapper;
976 DependencyCollectors.push_back(std::move(Listener));
982 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