Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 1 | //===--------------------- PipelinePrinter.h --------------------*- C++ -*-===// |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// \file |
| 10 | /// |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 11 | /// This file implements class PipelinePrinter. |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 12 | /// |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 13 | /// PipelinePrinter allows the customization of the performance report. |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 14 | /// |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 17 | #ifndef LLVM_TOOLS_LLVM_MCA_PIPELINEPRINTER_H |
| 18 | #define LLVM_TOOLS_LLVM_MCA_PIPELINEPRINTER_H |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 19 | |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 20 | #include "Pipeline.h" |
Matt Davis | 10aa09f | 2018-08-24 20:24:53 +0000 | [diff] [blame] | 21 | #include "Views/View.h" |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallVector.h" |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 24 | |
| 25 | #define DEBUG_TYPE "llvm-mca" |
| 26 | |
| 27 | namespace mca { |
| 28 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 29 | /// A printer class that knows how to collects statistics on the |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 30 | /// code analyzed by the llvm-mca tool. |
| 31 | /// |
| 32 | /// This class knows how to print out the analysis information collected |
| 33 | /// during the execution of the code. Internally, it delegates to other |
| 34 | /// classes the task of printing out timeline information as well as |
| 35 | /// resource pressure. |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 36 | class PipelinePrinter { |
| 37 | Pipeline &P; |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 38 | llvm::SmallVector<std::unique_ptr<View>, 8> Views; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 39 | |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 40 | public: |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 41 | PipelinePrinter(Pipeline &pipeline) : P(pipeline) {} |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 42 | |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 43 | void addView(std::unique_ptr<View> V) { |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 44 | P.addEventListener(V.get()); |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 45 | Views.emplace_back(std::move(V)); |
| 46 | } |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 47 | |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 48 | void printReport(llvm::raw_ostream &OS) const; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 49 | }; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 50 | } // namespace mca |
| 51 | |
Matt Davis | dea343d | 2018-06-25 16:53:00 +0000 | [diff] [blame] | 52 | #endif // LLVM_TOOLS_LLVM_MCA_PIPELINEPRINTER_H |