Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 1 | //===--------------------- SchedulerStatistics.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 defines class SchedulerStatistics. Class SchedulerStatistics is a |
| 12 | /// View that listens to instruction issue events in order to print general |
| 13 | /// statistics related to the hardware schedulers. |
| 14 | /// |
| 15 | /// Example: |
| 16 | /// ======== |
| 17 | /// |
| 18 | /// Schedulers - number of cycles where we saw N instructions issued: |
| 19 | /// [# issued], [# cycles] |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 20 | /// 0, 6 (2.9%) |
| 21 | /// 1, 106 (50.7%) |
| 22 | /// 2, 97 (46.4%) |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 23 | /// |
| 24 | /// Scheduler's queue usage: |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 25 | /// [1] Resource name. |
| 26 | /// [2] Average number of used buffer entries. |
| 27 | /// [3] Maximum number of used buffer entries. |
| 28 | /// [4] Total number of buffer entries. |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 29 | /// |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 30 | /// [1] [2] [3] [4] |
| 31 | /// JALU01 0 0 20 |
| 32 | /// JFPU01 15 18 18 |
| 33 | /// JLSAGU 0 0 12 |
| 34 | // |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 35 | //===----------------------------------------------------------------------===// |
| 36 | |
| 37 | #ifndef LLVM_TOOLS_LLVM_MCA_SCHEDULERSTATISTICS_H |
| 38 | #define LLVM_TOOLS_LLVM_MCA_SCHEDULERSTATISTICS_H |
| 39 | |
Matt Davis | 10aa09f | 2018-08-24 20:24:53 +0000 | [diff] [blame] | 40 | #include "Views/View.h" |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 41 | #include "llvm/ADT/SmallVector.h" |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 42 | #include "llvm/MC/MCSubtargetInfo.h" |
Andrea Di Biagio | a88281d | 2018-06-18 17:04:56 +0000 | [diff] [blame] | 43 | #include <map> |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 44 | |
| 45 | namespace mca { |
| 46 | |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 47 | class SchedulerStatistics final : public View { |
Andrea Di Biagio | 074ff7c | 2018-04-11 12:31:44 +0000 | [diff] [blame] | 48 | const llvm::MCSchedModel &SM; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 49 | unsigned NumIssued; |
| 50 | unsigned NumCycles; |
| 51 | |
| 52 | // Tracks the usage of a scheduler's queue. |
| 53 | struct BufferUsage { |
| 54 | unsigned SlotsInUse; |
| 55 | unsigned MaxUsedSlots; |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 56 | uint64_t CumulativeNumUsedSlots; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 59 | std::vector<unsigned> IssuedPerCycle; |
| 60 | std::vector<BufferUsage> Usage; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 61 | |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 62 | void updateHistograms(); |
| 63 | void printSchedulerStats(llvm::raw_ostream &OS) const; |
Andrea Di Biagio | 074ff7c | 2018-04-11 12:31:44 +0000 | [diff] [blame] | 64 | void printSchedulerUsage(llvm::raw_ostream &OS) const; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 65 | |
| 66 | public: |
Andrea Di Biagio | 074ff7c | 2018-04-11 12:31:44 +0000 | [diff] [blame] | 67 | SchedulerStatistics(const llvm::MCSubtargetInfo &STI) |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 68 | : SM(STI.getSchedModel()), NumIssued(0), NumCycles(0), |
| 69 | IssuedPerCycle(STI.getSchedModel().NumProcResourceKinds, 0), |
| 70 | Usage(STI.getSchedModel().NumProcResourceKinds, {0, 0, 0}) {} |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 71 | |
Matt Davis | 0906a7f | 2018-07-12 16:56:17 +0000 | [diff] [blame] | 72 | void onEvent(const HWInstructionEvent &Event) override; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 73 | |
Andrea Di Biagio | 3e64644 | 2018-04-12 10:49:40 +0000 | [diff] [blame] | 74 | void onCycleBegin() override { NumCycles++; } |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 75 | |
Andrea Di Biagio | 3e64644 | 2018-04-12 10:49:40 +0000 | [diff] [blame] | 76 | void onCycleEnd() override { updateHistograms(); } |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 77 | |
| 78 | // Increases the number of used scheduler queue slots of every buffered |
| 79 | // resource in the Buffers set. |
Andrea Di Biagio | 29c5d5a | 2018-08-28 13:14:42 +0000 | [diff] [blame^] | 80 | void onReservedBuffers(const InstRef &IR, |
| 81 | llvm::ArrayRef<unsigned> Buffers) override; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 82 | |
| 83 | // Decreases by one the number of used scheduler queue slots of every |
| 84 | // buffered resource in the Buffers set. |
Andrea Di Biagio | 29c5d5a | 2018-08-28 13:14:42 +0000 | [diff] [blame^] | 85 | void onReleasedBuffers(const InstRef &IR, |
| 86 | llvm::ArrayRef<unsigned> Buffers) override; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 87 | |
Andrea Di Biagio | b89b96c | 2018-08-27 14:52:52 +0000 | [diff] [blame] | 88 | void printView(llvm::raw_ostream &OS) const override; |
Andrea Di Biagio | 1cc29c0 | 2018-04-11 11:37:46 +0000 | [diff] [blame] | 89 | }; |
| 90 | } // namespace mca |
| 91 | |
| 92 | #endif |