clang
3.9.0
|
Public Member Functions | |
BackendConsumer (BackendAction Action, DiagnosticsEngine &Diags, const HeaderSearchOptions &HeaderSearchOpts, const PreprocessorOptions &PPOpts, const CodeGenOptions &CodeGenOpts, const TargetOptions &TargetOpts, const LangOptions &LangOpts, bool TimePasses, const std::string &InFile, const SmallVectorImpl< std::pair< unsigned, llvm::Module * >> &LinkModules, std::unique_ptr< raw_pwrite_stream > OS, LLVMContext &C, CoverageSourceInfo *CoverageInfo=nullptr) | |
llvm::Module * | getModule () const |
std::unique_ptr< llvm::Module > | takeModule () |
void | releaseLinkModules () |
void | HandleCXXStaticMemberVarInstantiation (VarDecl *VD) override |
HandleCXXStaticMemberVarInstantiation - Tell the consumer that this. More... | |
void | Initialize (ASTContext &Ctx) override |
Initialize - This is called to initialize the consumer, providing the ASTContext. More... | |
bool | HandleTopLevelDecl (DeclGroupRef D) override |
HandleTopLevelDecl - Handle the specified top-level declaration. More... | |
void | HandleInlineFunctionDefinition (FunctionDecl *D) override |
This callback is invoked each time an inline (method or friend) function definition in a class is completed. More... | |
void | HandleTranslationUnit (ASTContext &C) override |
HandleTranslationUnit - This method is called when the ASTs for entire translation unit have been parsed. More... | |
void | HandleTagDeclDefinition (TagDecl *D) override |
HandleTagDeclDefinition - This callback is invoked each time a TagDecl (e.g. More... | |
void | HandleTagDeclRequiredDefinition (const TagDecl *D) override |
This callback is invoked the first time each TagDecl is required to be complete. More... | |
void | CompleteTentativeDefinition (VarDecl *D) override |
CompleteTentativeDefinition - Callback invoked at the end of a translation unit to notify the consumer that the given tentative definition should be completed. More... | |
void | AssignInheritanceModel (CXXRecordDecl *RD) override |
Callback invoked when an MSInheritanceAttr has been attached to a CXXRecordDecl. More... | |
void | HandleVTable (CXXRecordDecl *RD) override |
Callback involved at the end of a translation unit to notify the consumer that a vtable for the given C++ class is required. More... | |
const FullSourceLoc | getBestLocationFromDebugLoc (const llvm::DiagnosticInfoWithDebugLocBase &D, bool &BadDebugInfo, StringRef &Filename, unsigned &Line, unsigned &Column) const |
Get the best possible source location to represent a diagnostic that may have associated debug info. More... | |
void | InlineAsmDiagHandler2 (const llvm::SMDiagnostic &, SourceLocation LocCookie) |
InlineAsmDiagHandler2 - This function is invoked when the backend hits an error parsing inline asm. More... | |
void | DiagnosticHandlerImpl (const llvm::DiagnosticInfo &DI) |
This function is invoked when the backend needs to report something to the user. More... | |
bool | InlineAsmDiagHandler (const llvm::DiagnosticInfoInlineAsm &D) |
Specialized handler for InlineAsm diagnostic. More... | |
bool | StackSizeDiagHandler (const llvm::DiagnosticInfoStackSize &D) |
Specialized handler for StackSize diagnostic. More... | |
void | UnsupportedDiagHandler (const llvm::DiagnosticInfoUnsupported &D) |
Specialized handler for unsupported backend feature diagnostic. More... | |
void | EmitOptimizationMessage (const llvm::DiagnosticInfoOptimizationBase &D, unsigned DiagID) |
Specialized handlers for optimization remarks. More... | |
void | OptimizationRemarkHandler (const llvm::DiagnosticInfoOptimizationRemark &D) |
void | OptimizationRemarkHandler (const llvm::DiagnosticInfoOptimizationRemarkMissed &D) |
void | OptimizationRemarkHandler (const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D) |
void | OptimizationRemarkHandler (const llvm::DiagnosticInfoOptimizationRemarkAnalysisFPCommute &D) |
void | OptimizationRemarkHandler (const llvm::DiagnosticInfoOptimizationRemarkAnalysisAliasing &D) |
void | OptimizationFailureHandler (const llvm::DiagnosticInfoOptimizationFailure &D) |
![]() | |
ASTConsumer () | |
virtual | ~ASTConsumer () |
virtual void | HandleInterestingDecl (DeclGroupRef D) |
HandleInterestingDecl - Handle the specified interesting declaration. More... | |
virtual void | HandleCXXImplicitFunctionInstantiation (FunctionDecl *D) |
Invoked when a function is implicitly instantiated. More... | |
virtual void | HandleTopLevelDeclInObjCContainer (DeclGroupRef D) |
Handle the specified top-level declaration that occurred inside and ObjC container. More... | |
virtual void | HandleImplicitImportDecl (ImportDecl *D) |
Handle an ImportDecl that was implicitly created due to an inclusion directive. More... | |
virtual ASTMutationListener * | GetASTMutationListener () |
If the consumer is interested in entities getting modified after their initial creation, it should return a pointer to an ASTMutationListener here. More... | |
virtual ASTDeserializationListener * | GetASTDeserializationListener () |
If the consumer is interested in entities being deserialized from AST files, it should return a pointer to a ASTDeserializationListener here. More... | |
virtual void | PrintStats () |
PrintStats - If desired, print any statistics. More... | |
virtual bool | shouldSkipFunctionBody (Decl *D) |
This callback is called for each function if the Parser was initialized with SkipFunctionBodies set to true . More... | |
Static Public Member Functions | |
static void | InlineAsmDiagHandler (const llvm::SMDiagnostic &SM, void *Context, unsigned LocCookie) |
static void | DiagnosticHandler (const llvm::DiagnosticInfo &DI, void *Context) |
Definition at line 42 of file CodeGenAction.cpp.
|
inline |
Definition at line 64 of file CodeGenAction.cpp.
References I.
|
inlineoverridevirtual |
Callback invoked when an MSInheritanceAttr has been attached to a CXXRecordDecl.
Reimplemented from clang::ASTConsumer.
Definition at line 203 of file CodeGenAction.cpp.
|
inlineoverridevirtual |
CompleteTentativeDefinition - Callback invoked at the end of a translation unit to notify the consumer that the given tentative definition should be completed.
The variable declaration itself will be a tentative definition. If it had an incomplete array type, its type will have already been changed to an array of size 1. However, the declaration remains a tentative definition and has not been modified by the introduction of an implicit zero initializer.
Reimplemented from clang::ASTConsumer.
Definition at line 199 of file CodeGenAction.cpp.
|
inlinestatic |
Definition at line 217 of file CodeGenAction.cpp.
void BackendConsumer::DiagnosticHandlerImpl | ( | const llvm::DiagnosticInfo & | DI | ) |
This function is invoked when the backend needs to report something to the user.
Definition at line 579 of file CodeGenAction.cpp.
References ComputeDiagID, and ComputeDiagRemarkID.
void BackendConsumer::EmitOptimizationMessage | ( | const llvm::DiagnosticInfoOptimizationBase & | D, |
unsigned | DiagID | ||
) |
Specialized handlers for optimization remarks.
Note that these handlers only accept remarks and they always handle them.
Definition at line 488 of file CodeGenAction.cpp.
const FullSourceLoc BackendConsumer::getBestLocationFromDebugLoc | ( | const llvm::DiagnosticInfoWithDebugLocBase & | D, |
bool & | BadDebugInfo, | ||
StringRef & | Filename, | ||
unsigned & | Line, | ||
unsigned & | Column | ||
) | const |
Get the best possible source location to represent a diagnostic that may have associated debug info.
Definition at line 429 of file CodeGenAction.cpp.
References Context, clang::FileManager::getFile(), clang::SourceManager::getFileManager(), clang::ASTContext::getSourceManager(), clang::SourceLocation::isInvalid(), and clang::SourceManager::translateFileLineCol().
|
inline |
Definition at line 84 of file CodeGenAction.cpp.
|
inlineoverridevirtual |
HandleCXXStaticMemberVarInstantiation - Tell the consumer that this.
Reimplemented from clang::ASTConsumer.
Definition at line 93 of file CodeGenAction.cpp.
|
inlineoverridevirtual |
This callback is invoked each time an inline (method or friend) function definition in a class is completed.
Reimplemented from clang::ASTConsumer.
Definition at line 127 of file CodeGenAction.cpp.
References Context, and clang::ASTContext::getSourceManager().
|
inlineoverridevirtual |
HandleTagDeclDefinition - This callback is invoked each time a TagDecl (e.g.
struct, union, enum, class) is completed. This allows the client to hack on the type, which can occur at any point in the file (because these can be defined in declspecs).
Reimplemented from clang::ASTConsumer.
Definition at line 188 of file CodeGenAction.cpp.
References Context, and clang::ASTContext::getSourceManager().
|
inlineoverridevirtual |
This callback is invoked the first time each TagDecl is required to be complete.
Reimplemented from clang::ASTConsumer.
Definition at line 195 of file CodeGenAction.cpp.
|
inlineoverridevirtual |
HandleTopLevelDecl - Handle the specified top-level declaration.
This is called by the parser to process every top-level Decl*.
Reimplemented from clang::ASTConsumer.
Definition at line 111 of file CodeGenAction.cpp.
References clang::DeclGroupRef::begin(), Context, and clang::ASTContext::getSourceManager().
|
inlineoverridevirtual |
HandleTranslationUnit - This method is called when the ASTs for entire translation unit have been parsed.
Reimplemented from clang::ASTConsumer.
Definition at line 140 of file CodeGenAction.cpp.
References Action, clang::EmbedBitcode(), clang::EmitBackendOutput(), clang::TargetInfo::getDataLayout(), clang::ASTContext::getTargetInfo(), and I.
|
inlineoverridevirtual |
Callback involved at the end of a translation unit to notify the consumer that a vtable for the given C++ class is required.
RD | The class whose vtable was used. |
Reimplemented from clang::ASTConsumer.
Definition at line 207 of file CodeGenAction.cpp.
|
inlineoverridevirtual |
Initialize - This is called to initialize the consumer, providing the ASTContext.
Reimplemented from clang::ASTConsumer.
Definition at line 97 of file CodeGenAction.cpp.
References Context.
|
inlinestatic |
Definition at line 211 of file CodeGenAction.cpp.
References clang::SourceLocation::getFromRawEncoding().
bool BackendConsumer::InlineAsmDiagHandler | ( | const llvm::DiagnosticInfoInlineAsm & | D | ) |
Specialized handler for InlineAsm diagnostic.
Definition at line 387 of file CodeGenAction.cpp.
References ComputeDiagID, clang::SourceLocation::getFromRawEncoding(), and clang::SourceLocation::isValid().
void BackendConsumer::InlineAsmDiagHandler2 | ( | const llvm::SMDiagnostic & | D, |
SourceLocation | LocCookie | ||
) |
InlineAsmDiagHandler2 - This function is invoked when the backend hits an error parsing inline asm.
The SMDiagnostic indicates the error relative to the temporary memory buffer that the inline asm parser has set up.
Definition at line 298 of file CodeGenAction.cpp.
References Context, ConvertBackendLocation(), clang::SourceLocation::getLocWithOffset(), clang::ASTContext::getSourceManager(), and clang::SourceLocation::isValid().
void BackendConsumer::OptimizationFailureHandler | ( | const llvm::DiagnosticInfoOptimizationFailure & | D | ) |
Definition at line 572 of file CodeGenAction.cpp.
void BackendConsumer::OptimizationRemarkHandler | ( | const llvm::DiagnosticInfoOptimizationRemark & | D | ) |
Definition at line 513 of file CodeGenAction.cpp.
void BackendConsumer::OptimizationRemarkHandler | ( | const llvm::DiagnosticInfoOptimizationRemarkMissed & | D | ) |
Definition at line 522 of file CodeGenAction.cpp.
void BackendConsumer::OptimizationRemarkHandler | ( | const llvm::DiagnosticInfoOptimizationRemarkAnalysis & | D | ) |
Definition at line 533 of file CodeGenAction.cpp.
void BackendConsumer::OptimizationRemarkHandler | ( | const llvm::DiagnosticInfoOptimizationRemarkAnalysisFPCommute & | D | ) |
Definition at line 546 of file CodeGenAction.cpp.
void BackendConsumer::OptimizationRemarkHandler | ( | const llvm::DiagnosticInfoOptimizationRemarkAnalysisAliasing & | D | ) |
Definition at line 559 of file CodeGenAction.cpp.
|
inline |
Definition at line 88 of file CodeGenAction.cpp.
References I.
Referenced by clang::CodeGenAction::EndSourceFileAction().
bool BackendConsumer::StackSizeDiagHandler | ( | const llvm::DiagnosticInfoStackSize & | D | ) |
Specialized handler for StackSize diagnostic.
Definition at line 412 of file CodeGenAction.cpp.
|
inline |
Definition at line 85 of file CodeGenAction.cpp.
Referenced by clang::CodeGenAction::EndSourceFileAction().
void BackendConsumer::UnsupportedDiagHandler | ( | const llvm::DiagnosticInfoUnsupported & | D | ) |
Specialized handler for unsupported backend feature diagnostic.
Definition at line 466 of file CodeGenAction.cpp.