49static std::optional<remarks::RemarkLocation>
54 unsigned Line =
DL.getLine();
55 unsigned Col =
DL.getColumn();
71 for (
const DiagnosticInfoOptimizationBase::Argument &Arg : Diag.
getArgs()) {
72 R.Args.emplace_back();
73 R.Args.back().Key = Arg.Key;
74 R.Args.back().Val = Arg.Val;
88 RS.getSerializer().emit(R);
100 Context.setDiagnosticsHotnessRequested(
true);
126 auto RS = std::make_unique<remarks::RemarkStreamer>(
131 RS->releaseSerializer();
137 Context.setMainRemarkStreamer(std::move(RS));
140 Context.setLLVMRemarkStreamer(
141 std::make_unique<LLVMRemarkStreamer>(*Context.getMainRemarkStreamer()));
146void LLVMRemarkFileHandle::Finalizer::finalize() {
158 Context.setDiagnosticsHotnessRequested(
true);
172 std::make_unique<remarks::RemarkStreamer>(std::move(*RemarkSerializer));
176 RS->releaseSerializer();
182 Context.setMainRemarkStreamer(std::move(RS));
185 Context.setLLVMRemarkStreamer(
186 std::make_unique<LLVMRemarkStreamer>(*Context.getMainRemarkStreamer()));
192 Context.setLLVMRemarkStreamer(
nullptr);
193 if (
auto *RS = Context.getMainRemarkStreamer()) {
194 RS->releaseSerializer();
195 Context.setMainRemarkStreamer(
nullptr);
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Common features for diagnostics dealing with optimization remarks that are used by both IR and MIR pa...
ArrayRef< Argument > getArgs() const
StringRef getPassName() const
StringRef getRemarkName() const
std::optional< uint64_t > getHotness() const
const Function & getFunction() const
void getLocation(StringRef &RelativePath, unsigned &Line, unsigned &Column) const
Return location information for this diagnostic in three parts: the relative source file path,...
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
static StringRef dropLLVMManglingEscape(StringRef Name)
If the given string begins with the GlobalValue name mangling escape character '\1',...
This is an important class for using LLVM in a threaded context.
RAII handle that manages the lifetime of the ToolOutputFile used to output remarks.
StringRef - Represent a constant reference to a string, i.e.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
This class implements an extremely fast bulk output stream that can only output to a stream.
@ OF_TextWithCRLF
The file should be opened in text mode and use a carriage linefeed '\r '.
This is an optimization pass for GlobalISel generic memory operations.
cl::opt< std::string > RemarksFormat("lto-pass-remarks-format", cl::desc("The format used for serializing remarks (default: YAML)"), cl::value_desc("format"), cl::init("yaml"))
LLVM_ABI Expected< LLVMRemarkFileHandle > setupLLVMOptimizationRemarks(LLVMContext &Context, StringRef RemarksFilename, StringRef RemarksPasses, StringRef RemarksFormat, bool RemarksWithHotness, std::optional< uint64_t > RemarksHotnessThreshold=0)
Set up optimization remarks that output to a file.
cl::opt< std::string > RemarksPasses("lto-pass-remarks-filter", cl::desc("Only record optimization remarks from passes whose " "names match the given regular expression"), cl::value_desc("regex"))
DiagnosticKind
Defines the different supported kind of a diagnostic.
@ DK_OptimizationRemarkAnalysis
@ DK_OptimizationRemarkAnalysisAliasing
@ DK_MachineOptimizationRemark
@ DK_OptimizationRemarkMissed
@ DK_MachineOptimizationRemarkAnalysis
@ DK_MachineOptimizationRemarkMissed
@ DK_OptimizationRemarkAnalysisFPCommute
cl::opt< bool > RemarksWithHotness("lto-pass-remarks-with-hotness", cl::desc("With PGO, include profile count in optimization remarks"), cl::Hidden)
cl::opt< std::string > RemarksFilename("lto-pass-remarks-output", cl::desc("Output filename for pass remarks"), cl::value_desc("filename"))
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
cl::opt< std::optional< uint64_t >, false, remarks::HotnessThresholdParser > RemarksHotnessThreshold("lto-pass-remarks-hotness-threshold", cl::desc("Minimum profile count required for an " "optimization remark to be output." " Use 'auto' to apply the threshold from profile summary."), cl::value_desc("uint or 'auto'"), cl::init(0), cl::Hidden)
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
LLVM_ABI void finalizeLLVMOptimizationRemarks(LLVMContext &Context)
Finalize optimization remarks and deregister the RemarkStreamer from the Context.