mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 17:00:01 +00:00
Add an option to enable MBFI dot viewer for a given function
llvm-svn: 273366
This commit is contained in:
parent
856a55687d
commit
aacca1a65c
@ -42,6 +42,9 @@ static cl::opt<GVDAGType> ViewMachineBlockFreqPropagationDAG(
|
||||
"integer fractional block frequency representation."),
|
||||
clEnumValEnd));
|
||||
|
||||
static cl::opt<std::string> ViewMachineBlockFreqFuncName("view-mbfi-func-name",
|
||||
cl::Hidden);
|
||||
|
||||
namespace llvm {
|
||||
|
||||
template <> struct GraphTraits<MachineBlockFrequencyInfo *> {
|
||||
@ -137,7 +140,9 @@ bool MachineBlockFrequencyInfo::runOnMachineFunction(MachineFunction &F) {
|
||||
MBFI.reset(new ImplType);
|
||||
MBFI->calculate(F, MBPI, MLI);
|
||||
#ifndef NDEBUG
|
||||
if (ViewMachineBlockFreqPropagationDAG != GVDT_None) {
|
||||
if (ViewMachineBlockFreqPropagationDAG != GVDT_None &&
|
||||
(ViewMachineBlockFreqFuncName.empty() ||
|
||||
F.getName().equals(ViewMachineBlockFreqFuncName))) {
|
||||
view();
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user