diff options
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/llvm-mca.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp index 5c085af9685..2ddba762f88 100644 --- a/llvm/tools/llvm-mca/llvm-mca.cpp +++ b/llvm/tools/llvm-mca/llvm-mca.cpp @@ -23,6 +23,7 @@ #include "BackendPrinter.h" #include "BackendStatistics.h" +#include "InstructionInfoView.h" #include "ResourcePressureView.h" #include "SummaryView.h" #include "TimelineView.h" @@ -332,8 +333,10 @@ int main(int argc, char **argv) { std::unique_ptr<mca::BackendPrinter> Printer = llvm::make_unique<mca::BackendPrinter>(*B); + Printer->addView(llvm::make_unique<mca::SummaryView>(*S, Width)); + Printer->addView( - llvm::make_unique<mca::SummaryView>(*STI, *MCII, *S, *IP, Width)); + llvm::make_unique<mca::InstructionInfoView>(*STI, *MCII, *S, *IP)); if (PrintModeVerbose) Printer->addView(llvm::make_unique<mca::BackendStatistics>(*STI)); |