blob: 8c2a61c20f8fa78e7818f2c81911050fd0160d62 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Richard Burtonbcec6752023-11-03 16:21:58 +00002 * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
alexander3c798932021-03-26 21:42:19 +00003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef APP_PROFILER_HPP
18#define APP_PROFILER_HPP
19
20#include "hal.h"
21
Richard Burtonbcec6752023-11-03 16:21:58 +000022#include <cstdint>
alexander3c798932021-03-26 21:42:19 +000023#include <string>
24#include <map>
25#include <vector>
26
27namespace arm {
28namespace app {
29
Isabella Gottardi8df12f32021-04-07 17:15:31 +010030 /** Statistics for a profiling metric. */
31 struct Statistics {
32 std::string name;
33 std::string unit;
34 std::uint64_t total;
35 double avrg;
36 std::uint64_t min;
37 std::uint64_t max;
Richard Burton2c2cacd2022-05-13 09:46:57 +010038 std::uint32_t samplesNum = 0;
Isabella Gottardi8df12f32021-04-07 17:15:31 +010039 };
40
41 /** Profiling results with calculated statistics. */
42 struct ProfileResult {
43 std::string name;
44 std::uint32_t samplesNum;
45 std::vector<Statistics> data;
46 };
47
alexander3c798932021-03-26 21:42:19 +000048 /** A single profiling unit definition. */
49 struct ProfilingUnit {
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010050 pmu_counters counters;
alexander3c798932021-03-26 21:42:19 +000051 };
52
Richard Burton2c2cacd2022-05-13 09:46:57 +010053 /* A map for string identifiable profiling statistics. */
54 using ProfilingStats = std::map<std::string, std::vector<Statistics>>;
alexander3c798932021-03-26 21:42:19 +000055
56 /**
57 * @brief A very simple profiler example using the platform timer
58 * implementation.
59 */
60 class Profiler {
61 public:
62 /**
63 * @brief Constructor for profiler.
alexander3c798932021-03-26 21:42:19 +000064 * @param[in] name A friendly name for this profiler.
65 **/
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010066 Profiler(const char* name);
alexander3c798932021-03-26 21:42:19 +000067
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010068 /** Default constructor. */
69 Profiler();
alexander3c798932021-03-26 21:42:19 +000070
71 /** Default destructor. */
72 ~Profiler() = default;
73
74 /** @brief Start profiling => get starting time-stamp. */
75 bool StartProfiling(const char* name = nullptr);
76
77 /** @brief Stop profiling => get the ending time-stamp. */
78 bool StopProfiling();
79
80 /** @brief Stops the profiling and internally resets the
81 * platform timers. */
82 bool StopProfilingAndReset();
83
84 /** @brief Reset the platform timers. */
85 void Reset();
86
87 /**
Isabella Gottardi8df12f32021-04-07 17:15:31 +010088 * @brief Collects profiling results statistics and resets the profiler.
alexander3c798932021-03-26 21:42:19 +000089 **/
Isabella Gottardi8df12f32021-04-07 17:15:31 +010090 void GetAllResultsAndReset(std::vector<ProfileResult>& results);
91
92 /**
93 * @brief Prints collected profiling results and resets the profiler.
94 **/
95 void PrintProfilingResult(bool printFullStat = false);
alexander3c798932021-03-26 21:42:19 +000096
97 /** @brief Set the profiler name. */
98 void SetName(const char* str);
99
100 private:
Richard Burton2c2cacd2022-05-13 09:46:57 +0100101 ProfilingStats m_profStats; /* Profiling stats map. */
102 pmu_counters m_tstampSt{}; /* Container for a current starting timestamp. */
103 pmu_counters m_tstampEnd{}; /* Container for a current ending timestamp. */
104 bool m_started = false; /* Indicates profiler has been started. */
105 std::string m_name; /* Name given to this profiler. */
106
alexander3c798932021-03-26 21:42:19 +0000107
108 /**
Richard Burton2c2cacd2022-05-13 09:46:57 +0100109 * @brief Updates the running average stats with those computed
110 * by the "start" and "end" timestamps for the profiling
111 * stats identified by the name provided.
alexander3c798932021-03-26 21:42:19 +0000112 * @param[in] start Starting time-stamp.
113 * @param[in] end Ending time-stamp.
Richard Burton2c2cacd2022-05-13 09:46:57 +0100114 * @param[in] name Name for the profiling running stats series to be
115 * updated.
alexander3c798932021-03-26 21:42:19 +0000116 **/
Richard Burton2c2cacd2022-05-13 09:46:57 +0100117 void UpdateRunningStats(pmu_counters start, pmu_counters end,
118 const std::string& name);
alexander3c798932021-03-26 21:42:19 +0000119 };
120
121} /* namespace app */
122} /* namespace arm */
123
124#endif /* APP_PROFILER_HPP */