clang 20.0.0git
BackendConsumer.h
Go to the documentation of this file.
1//===--- BackendConsumer.h - LLVM BackendConsumer Header File -------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_LIB_CODEGEN_BACKENDCONSUMER_H
10#define LLVM_CLANG_LIB_CODEGEN_BACKENDCONSUMER_H
11
14
15#include "llvm/IR/DiagnosticInfo.h"
16#include "llvm/Support/Timer.h"
17
18namespace llvm {
19 class DiagnosticInfoDontCall;
20}
21
22namespace clang {
23class ASTContext;
24class CodeGenAction;
25class CoverageSourceInfo;
26
28 using LinkModule = CodeGenAction::LinkModule;
29
30 virtual void anchor();
32 DiagnosticsEngine &Diags;
33 const CodeGenOptions &CodeGenOpts;
34 const TargetOptions &TargetOpts;
35 const LangOptions &LangOpts;
36 std::unique_ptr<raw_pwrite_stream> AsmOutStream;
37 ASTContext *Context = nullptr;
39
40 llvm::Timer LLVMIRGeneration;
41 unsigned LLVMIRGenerationRefCount = 0;
42
43 /// True if we've finished generating IR. This prevents us from generating
44 /// additional LLVM IR after emitting output in HandleTranslationUnit. This
45 /// can happen when Clang plugins trigger additional AST deserialization.
46 bool IRGenFinished = false;
47
48 bool TimerIsEnabled = false;
49
50 BackendAction Action;
51
52 std::unique_ptr<CodeGenerator> Gen;
53
55
56 // A map from mangled names to their function's source location, used for
57 // backend diagnostics as the Clang AST may be unavailable. We actually use
58 // the mangled name's hash as the key because mangled names can be very
59 // long and take up lots of space. Using a hash can cause name collision,
60 // but that is rare and the consequences are pointing to a wrong source
61 // location which is not severe. This is a vector instead of an actual map
62 // because we optimize for time building this map rather than time
63 // retrieving an entry, as backend diagnostics are uncommon.
64 std::vector<std::pair<llvm::hash_code, FullSourceLoc>>
65 ManglingFullSourceLocs;
66
67
68 // This is here so that the diagnostic printer knows the module a diagnostic
69 // refers to.
70 llvm::Module *CurLinkModule = nullptr;
71
72public:
75 llvm::LLVMContext &C, SmallVector<LinkModule, 4> LinkModules,
76 StringRef InFile, std::unique_ptr<raw_pwrite_stream> OS,
77 CoverageSourceInfo *CoverageInfo,
78 llvm::Module *CurLinkModule = nullptr);
79
80 llvm::Module *getModule() const;
81 std::unique_ptr<llvm::Module> takeModule();
82
84
86 void Initialize(ASTContext &Ctx) override;
87 bool HandleTopLevelDecl(DeclGroupRef D) override;
90 void HandleTranslationUnit(ASTContext &C) override;
91 void HandleTagDeclDefinition(TagDecl *D) override;
92 void HandleTagDeclRequiredDefinition(const TagDecl *D) override;
95 void AssignInheritanceModel(CXXRecordDecl *RD) override;
96 void HandleVTable(CXXRecordDecl *RD) override;
97
98 // Links each entry in LinkModules into our module. Returns true on error.
99 bool LinkInModules(llvm::Module *M);
100
101 /// Get the best possible source location to represent a diagnostic that
102 /// may have associated debug info.
104 const llvm::DiagnosticInfoWithLocationBase &D,
105 bool &BadDebugInfo, StringRef &Filename,
106 unsigned &Line, unsigned &Column) const;
107
108 std::optional<FullSourceLoc> getFunctionSourceLocation(
109 const llvm::Function &F) const;
110
111 void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI);
112 /// Specialized handler for InlineAsm diagnostic.
113 /// \return True if the diagnostic has been successfully reported, false
114 /// otherwise.
115 bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D);
116 /// Specialized handler for diagnostics reported using SMDiagnostic.
117 void SrcMgrDiagHandler(const llvm::DiagnosticInfoSrcMgr &D);
118 /// Specialized handler for StackSize diagnostic.
119 /// \return True if the diagnostic has been successfully reported, false
120 /// otherwise.
121 bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D);
122 /// Specialized handler for ResourceLimit diagnostic.
123 /// \return True if the diagnostic has been successfully reported, false
124 /// otherwise.
125 bool ResourceLimitDiagHandler(const llvm::DiagnosticInfoResourceLimit &D);
126
127 /// Specialized handler for unsupported backend feature diagnostic.
128 void UnsupportedDiagHandler(const llvm::DiagnosticInfoUnsupported &D);
129 /// Specialized handlers for optimization remarks.
130 /// Note that these handlers only accept remarks and they always handle
131 /// them.
132 void EmitOptimizationMessage(const llvm::DiagnosticInfoOptimizationBase &D,
133 unsigned DiagID);
134 void
135 OptimizationRemarkHandler(const llvm::DiagnosticInfoOptimizationBase &D);
137 const llvm::OptimizationRemarkAnalysisFPCommute &D);
139 const llvm::OptimizationRemarkAnalysisAliasing &D);
141 const llvm::DiagnosticInfoOptimizationFailure &D);
142 void DontCallDiagHandler(const llvm::DiagnosticInfoDontCall &D);
143 /// Specialized handler for misexpect warnings.
144 /// Note that misexpect remarks are emitted through ORE
145 void MisExpectDiagHandler(const llvm::DiagnosticInfoMisExpect &D);
146};
147
148} // namespace clang
149#endif
const Decl * D
StringRef Filename
Definition: Format.cpp:3051
ASTConsumer - This is an abstract interface that should be implemented by clients that read ASTs.
Definition: ASTConsumer.h:34
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:188
llvm::Module * getModule() const
void CompleteExternalDeclaration(DeclaratorDecl *D) override
CompleteExternalDeclaration - Callback invoked at the end of a translation unit to notify the consume...
void OptimizationRemarkHandler(const llvm::DiagnosticInfoOptimizationBase &D)
bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D)
Specialized handler for StackSize diagnostic.
void HandleVTable(CXXRecordDecl *RD) override
Callback involved at the end of a translation unit to notify the consumer that a vtable for the given...
void HandleTagDeclDefinition(TagDecl *D) override
HandleTagDeclDefinition - This callback is invoked each time a TagDecl (e.g.
bool HandleTopLevelDecl(DeclGroupRef D) override
HandleTopLevelDecl - Handle the specified top-level declaration.
void Initialize(ASTContext &Ctx) override
Initialize - This is called to initialize the consumer, providing the ASTContext.
void HandleInlineFunctionDefinition(FunctionDecl *D) override
This callback is invoked each time an inline (method or friend) function definition in a class is com...
void OptimizationFailureHandler(const llvm::DiagnosticInfoOptimizationFailure &D)
void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI)
This function is invoked when the backend needs to report something to the user.
void HandleTagDeclRequiredDefinition(const TagDecl *D) override
This callback is invoked the first time each TagDecl is required to be complete.
void HandleInterestingDecl(DeclGroupRef D) override
HandleInterestingDecl - Handle the specified interesting declaration.
void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override
HandleCXXStaticMemberVarInstantiation - Tell the consumer that this.
std::optional< FullSourceLoc > getFunctionSourceLocation(const llvm::Function &F) const
bool ResourceLimitDiagHandler(const llvm::DiagnosticInfoResourceLimit &D)
Specialized handler for ResourceLimit diagnostic.
std::unique_ptr< llvm::Module > takeModule()
void AssignInheritanceModel(CXXRecordDecl *RD) override
Callback invoked when an MSInheritanceAttr has been attached to a CXXRecordDecl.
void HandleTranslationUnit(ASTContext &C) override
HandleTranslationUnit - This method is called when the ASTs for entire translation unit have been par...
void CompleteTentativeDefinition(VarDecl *D) override
CompleteTentativeDefinition - Callback invoked at the end of a translation unit to notify the consume...
void UnsupportedDiagHandler(const llvm::DiagnosticInfoUnsupported &D)
Specialized handler for unsupported backend feature diagnostic.
bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D)
Specialized handler for InlineAsm diagnostic.
bool LinkInModules(llvm::Module *M)
const FullSourceLoc getBestLocationFromDebugLoc(const llvm::DiagnosticInfoWithLocationBase &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.
void EmitOptimizationMessage(const llvm::DiagnosticInfoOptimizationBase &D, unsigned DiagID)
Specialized handlers for optimization remarks.
void DontCallDiagHandler(const llvm::DiagnosticInfoDontCall &D)
void MisExpectDiagHandler(const llvm::DiagnosticInfoMisExpect &D)
Specialized handler for misexpect warnings.
CodeGenerator * getCodeGenerator()
void SrcMgrDiagHandler(const llvm::DiagnosticInfoSrcMgr &D)
Specialized handler for diagnostics reported using SMDiagnostic.
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
The primary public interface to the Clang code generator.
Definition: ModuleBuilder.h:52
CompilerInstance - Helper class for managing a single instance of the Clang compiler.
Stores additional source code information like skipped ranges which is required by the coverage mappi...
Represents a ValueDecl that came out of a declarator.
Definition: Decl.h:735
Concrete class used by the front-end to report problems and issues.
Definition: Diagnostic.h:231
A SourceLocation and its associated SourceManager.
Represents a function declaration or definition.
Definition: Decl.h:1935
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:499
Represents the declaration of a struct/union/class/enum.
Definition: Decl.h:3578
Options for controlling the target.
Definition: TargetOptions.h:26
Represents a variable declaration or definition.
Definition: Decl.h:882
The JSON file list parser is used to communicate input to InstallAPI.
BackendAction
Definition: BackendUtil.h:33
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30