9#ifndef LLVM_CLANG_FRONTEND_COMPILERINSTANCE_H_
10#define LLVM_CLANG_FRONTEND_COMPILERINSTANCE_H_
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/ADT/DenseMap.h"
24#include "llvm/ADT/IntrusiveRefCntPtr.h"
25#include "llvm/ADT/StringRef.h"
26#include "llvm/Support/BuryPointer.h"
27#include "llvm/Support/FileSystem.h"
28#include "llvm/Support/VirtualFileSystem.h"
29#include "llvm/Support/VirtualOutputBackend.h"
85 std::shared_ptr<CompilerInvocation> Invocation;
97 std::unique_ptr<TargetOptions> AuxTargetOpts;
115 std::unique_ptr<DependencyDirectivesGetter> GetDependencyDirectives;
118 std::shared_ptr<Preprocessor> PP;
127 std::unique_ptr<ASTConsumer> Consumer;
130 std::unique_ptr<CodeCompleteConsumer> CompletionConsumer;
133 std::unique_ptr<Sema> TheSema;
136 std::vector<std::unique_ptr<llvm::PassPlugin>> PassPlugins;
139 std::unique_ptr<llvm::TimerGroup> timerGroup;
142 std::unique_ptr<llvm::Timer> FrontendTimer;
148 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
151 std::shared_ptr<PCHContainerOperations> ThePCHContainerOperations;
153 std::vector<std::shared_ptr<DependencyCollector>> DependencyCollectors;
161 llvm::StringSet<> FailedModules;
165 std::map<std::string, std::string, std::less<>> BuiltModules;
168 bool DeleteBuiltModules =
true;
180 bool BuildGlobalModuleIndex =
false;
183 bool HaveFullGlobalModuleIndex =
false;
186 bool DisableGeneratingGlobalModuleIndex =
false;
189 std::unique_ptr<raw_ostream> OwnedVerboseOutputStream;
192 raw_ostream *VerboseOutputStream = &llvm::errs();
195 std::list<llvm::vfs::OutputFile> OutputFiles;
198 std::unique_ptr<llvm::raw_pwrite_stream> OutputStream;
200 CompilerInstance(
const CompilerInstance &) =
delete;
201 void operator=(
const CompilerInstance &) =
delete;
203 explicit CompilerInstance(
204 std::shared_ptr<CompilerInvocation> Invocation =
205 std::make_shared<CompilerInvocation>(),
206 std::shared_ptr<PCHContainerOperations> PCHContainerOps =
207 std::make_shared<PCHContainerOperations>(),
263 BuildGlobalModuleIndex = Build;
273 return Invocation->getCodeGenOpts();
276 return Invocation->getCodeGenOpts();
280 return Invocation->getDependencyOutputOpts();
283 return Invocation->getDependencyOutputOpts();
287 return Invocation->getDiagnosticOpts();
290 return Invocation->getDiagnosticOpts();
294 return Invocation->getFileSystemOpts();
297 return Invocation->getFileSystemOpts();
301 return Invocation->getFrontendOpts();
304 return Invocation->getFrontendOpts();
308 return Invocation->getHeaderSearchOpts();
311 return Invocation->getHeaderSearchOpts();
316 return Invocation->getAPINotesOpts();
323 return Invocation->getPreprocessorOpts();
326 return Invocation->getPreprocessorOpts();
330 return Invocation->getPreprocessorOutputOpts();
333 return Invocation->getPreprocessorOutputOpts();
337 return Invocation->getTargetOpts();
340 return Invocation->getTargetOpts();
351 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
356 assert(Diagnostics &&
"Compiler instance has no diagnostics!");
364 assert(Diagnostics && Diagnostics->getClient() &&
365 "Compiler instance has no diagnostic client!");
366 return *Diagnostics->getClient();
381 return *VerboseOutputStream;
391 assert(Target &&
"Compiler instance has no target!");
396 assert(Target &&
"Compiler instance has no target!");
431 BaseFS = llvm::vfs::getRealFileSystem(),
453 assert(FileMgr &&
"Compiler instance has no file manager!");
458 assert(FileMgr &&
"Compiler instance has no file manager!");
463 llvm::BuryPointer(FileMgr.get());
464 FileMgr.resetWithoutRelease();
494 assert(SourceMgr &&
"Compiler instance has no source manager!");
499 assert(SourceMgr &&
"Compiler instance has no source manager!");
504 llvm::BuryPointer(SourceMgr.get());
505 SourceMgr.resetWithoutRelease();
519 assert(PP &&
"Compiler instance has no preprocessor!");
526 llvm::BuryPointer(
new std::shared_ptr<Preprocessor>(PP));
539 assert(Context &&
"Compiler instance has no AST context!");
544 assert(Context &&
"Compiler instance has no AST context!");
549 llvm::BuryPointer(Context.get());
550 Context.resetWithoutRelease();
567 assert(Consumer &&
"Compiler instance has no AST consumer!");
582 bool hasSema()
const {
return (
bool)TheSema; }
585 assert(TheSema &&
"Compiler instance has no Sema object!");
601 std::shared_ptr<ModuleDependencyCollector> Collector);
604 return ThePCHContainerOperations;
610 assert(Invocation &&
"cannot determine module format without invocation");
612 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
615 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
616 llvm::report_fatal_error(
"unknown module format");
624 assert(Invocation &&
"cannot determine module format without invocation");
626 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
629 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
630 llvm::report_fatal_error(
"unknown module format");
642 assert(CompletionConsumer &&
643 "Compiler instance has no code completion consumer!");
644 return *CompletionConsumer;
666 assert(FrontendTimer &&
"Compiler instance has no frontend timer!");
667 return *FrontendTimer;
697 bool ShouldOwnClient =
true);
723 bool ShouldOwnClient =
true,
737 std::unique_ptr<DependencyDirectivesGetter> Getter) {
738 GetDependencyDirectives = std::move(Getter);
753 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
754 bool OwnDeserializationListener);
760 StringRef Path, StringRef Sysroot,
765 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
766 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
767 void *DeserializationListener,
bool OwnDeserializationListener,
768 bool Preamble,
bool UseGlobalModuleIndex);
798 bool Binary =
true, StringRef BaseInput =
"", StringRef Extension =
"",
799 bool RemoveFileOnSignal =
true,
bool CreateMissingDirectories =
false,
800 bool ForceUseTemporary =
false);
806 std::unique_ptr<raw_pwrite_stream>
808 bool UseTemporary,
bool CreateMissingDirectories =
false);
829 createOutputFileImpl(StringRef OutputPath,
bool Binary,
830 bool RemoveFileOnSignal,
bool UseTemporary,
831 bool CreateMissingDirectories);
858 OutputStream = std::move(OutStream);
862 return std::move(OutputStream);
875 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector;
881 std::shared_ptr<ModuleDependencyCollector> ModuleDepCollector =
nullptr)
882 : VFS(
std::move(VFS)), DiagConsumer(DiagConsumer),
883 ModuleDepCollector(
std::move(ModuleDepCollector)) {
884 assert(this->VFS &&
"Clone config requires non-null VFS");
890 return ModuleDepCollector;
909 bool IsInclusionDirective);
914 std::unique_ptr<CompilerInstance> cloneForModuleCompileImpl(
916 StringRef OriginalModuleMapFile, StringRef ModuleFileName,
917 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
929 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig = std::nullopt);
941 bool IsInclusionDirective)
override;
944 StringRef Source)
override;
958 DependencyCollectors.push_back(std::move(Listener));
964 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
ThreadSafeCloneConfig(IntrusiveRefCntPtr< llvm::vfs::FileSystem > VFS, DiagnosticConsumer &DiagConsumer, std::shared_ptr< ModuleDependencyCollector > ModuleDepCollector=nullptr)
IntrusiveRefCntPtr< llvm::vfs::FileSystem > getVFS() const
DiagnosticConsumer & getDiagConsumer() const
CompilerInstance - Helper class for managing a single instance of the Clang compiler.
bool hasOutputManager() const
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)
bool 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...
const DiagnosticOptions & getDiagnosticOpts() const
std::string getSpecificModuleCachePath()
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
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)
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.
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.
bool loadModuleFile(StringRef FileName, serialization::ModuleFile *&LoadedModuleFile)
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.
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.
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.