Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 1 | //===--------------------- BackendPrinter.h ---------------------*- C++ -*-===// |
| 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 | /// |
| 11 | /// This file implements class BackendPrinter. |
Andrea Di Biagio | 8af3fe8 | 2018-03-08 16:08:43 +0000 | [diff] [blame] | 12 | /// |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 13 | /// BackendPrinter allows the customization of the performance report. |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 14 | /// |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #ifndef LLVM_TOOLS_LLVM_MCA_BACKENDPRINTER_H |
| 18 | #define LLVM_TOOLS_LLVM_MCA_BACKENDPRINTER_H |
| 19 | |
| 20 | #include "Backend.h" |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 21 | #include "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 | |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 29 | /// \brief A printer class that knows how to collects statistics on the |
| 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. |
| 36 | class BackendPrinter { |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 37 | Backend &B; |
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: |
Andrea Di Biagio | 0cc66c7 | 2018-03-09 13:52:03 +0000 | [diff] [blame] | 41 | BackendPrinter(Backend &backend) : B(backend) {} |
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) { |
| 44 | B.addEventListener(V.get()); |
| 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 | |
| 52 | #endif |