1 ///===- MachineOptimizationRemarkEmitter.cpp - Opt Diagnostic -*- C++ -*---===//
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
7 ///===---------------------------------------------------------------------===//
9 /// Optimization diagnostic interfaces for machine passes. It's packaged as an
10 /// analysis pass so that by using this service passes become dependent on MBFI
11 /// as well. MBFI is used to compute the "hotness" of the diagnostic message.
13 ///===---------------------------------------------------------------------===//
15 #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
16 #include "llvm/CodeGen/LazyMachineBlockFrequencyInfo.h"
17 #include "llvm/CodeGen/MachineInstr.h"
18 #include "llvm/IR/DiagnosticInfo.h"
19 #include "llvm/IR/LLVMContext.h"
20 #include "llvm/InitializePasses.h"
24 DiagnosticInfoMIROptimization::MachineArgument::MachineArgument(
25 StringRef MKey
, const MachineInstr
&MI
) {
26 Key
= std::string(MKey
);
28 raw_string_ostream
OS(Val
);
29 MI
.print(OS
, /*IsStandalone=*/true, /*SkipOpers=*/false,
30 /*SkipDebugLoc=*/true);
34 MachineOptimizationRemarkEmitter::computeHotness(const MachineBasicBlock
&MBB
) {
38 return MBFI
->getBlockProfileCount(&MBB
);
41 void MachineOptimizationRemarkEmitter::computeHotness(
42 DiagnosticInfoMIROptimization
&Remark
) {
43 const MachineBasicBlock
*MBB
= Remark
.getBlock();
45 Remark
.setHotness(computeHotness(*MBB
));
48 void MachineOptimizationRemarkEmitter::emit(
49 DiagnosticInfoOptimizationBase
&OptDiagCommon
) {
50 auto &OptDiag
= cast
<DiagnosticInfoMIROptimization
>(OptDiagCommon
);
51 computeHotness(OptDiag
);
53 LLVMContext
&Ctx
= MF
.getFunction().getContext();
55 // Only emit it if its hotness meets the threshold.
56 if (OptDiag
.getHotness().value_or(0) < Ctx
.getDiagnosticsHotnessThreshold())
59 Ctx
.diagnose(OptDiag
);
62 MachineOptimizationRemarkEmitterPass::MachineOptimizationRemarkEmitterPass()
63 : MachineFunctionPass(ID
) {
64 initializeMachineOptimizationRemarkEmitterPassPass(
65 *PassRegistry::getPassRegistry());
68 bool MachineOptimizationRemarkEmitterPass::runOnMachineFunction(
69 MachineFunction
&MF
) {
70 MachineBlockFrequencyInfo
*MBFI
;
72 if (MF
.getFunction().getContext().getDiagnosticsHotnessRequested())
73 MBFI
= &getAnalysis
<LazyMachineBlockFrequencyInfoPass
>().getBFI();
77 ORE
= std::make_unique
<MachineOptimizationRemarkEmitter
>(MF
, MBFI
);
81 void MachineOptimizationRemarkEmitterPass::getAnalysisUsage(
82 AnalysisUsage
&AU
) const {
83 AU
.addRequired
<LazyMachineBlockFrequencyInfoPass
>();
85 MachineFunctionPass::getAnalysisUsage(AU
);
88 char MachineOptimizationRemarkEmitterPass::ID
= 0;
89 static const char ore_name
[] = "Machine Optimization Remark Emitter";
90 #define ORE_NAME "machine-opt-remark-emitter"
92 INITIALIZE_PASS_BEGIN(MachineOptimizationRemarkEmitterPass
, ORE_NAME
, ore_name
,
94 INITIALIZE_PASS_DEPENDENCY(LazyMachineBlockFrequencyInfoPass
)
95 INITIALIZE_PASS_END(MachineOptimizationRemarkEmitterPass
, ORE_NAME
, ore_name
,