blob: dd3ba661dd292228a88a5ff8630aa6d3237346f1 [file] [log] [blame]
John Reck7075c792017-07-05 14:03:43 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
Stan Iliev637ba5e2019-08-16 13:43:08 -040019#include "Properties.h"
John Reck7075c792017-07-05 14:03:43 -070020#include "utils/Macros.h"
21
22#include <utils/Timers.h>
23
24#include <array>
25#include <functional>
26#include <tuple>
27
28namespace android {
29namespace uirenderer {
30
31enum JankType {
32 kMissedVsync = 0,
33 kHighInputLatency,
34 kSlowUI,
35 kSlowSync,
36 kSlowRT,
John Reck0e486472018-03-19 14:06:16 -070037 kMissedDeadline,
John Reck7075c792017-07-05 14:03:43 -070038
39 // must be last
40 NUM_BUCKETS,
41};
42
43// For testing
44class MockProfileData;
45
46// Try to keep as small as possible, should match ASHMEM_SIZE in
47// GraphicsStatsService.java
48class ProfileData {
49 PREVENT_COPY_AND_ASSIGN(ProfileData);
50
51public:
52 ProfileData() { reset(); }
53
54 void reset();
55 void mergeWith(const ProfileData& other);
56 void dump(int fd) const;
57 uint32_t findPercentile(int percentile) const;
Stan Iliev7203e1f2019-07-25 13:12:02 -040058 uint32_t findGPUPercentile(int percentile) const;
John Reck7075c792017-07-05 14:03:43 -070059
60 void reportFrame(int64_t duration);
Stan Iliev7203e1f2019-07-25 13:12:02 -040061 void reportGPUFrame(int64_t duration);
John Reck7075c792017-07-05 14:03:43 -070062 void reportJank() { mJankFrameCount++; }
63 void reportJankType(JankType type) { mJankTypeCounts[static_cast<int>(type)]++; }
64
65 uint32_t totalFrameCount() const { return mTotalFrameCount; }
66 uint32_t jankFrameCount() const { return mJankFrameCount; }
67 nsecs_t statsStartTime() const { return mStatStartTime; }
68 uint32_t jankTypeCount(JankType type) const { return mJankTypeCounts[static_cast<int>(type)]; }
Stan Iliev637ba5e2019-08-16 13:43:08 -040069 RenderPipelineType pipelineType() const { return mPipelineType; }
John Reck7075c792017-07-05 14:03:43 -070070
71 struct HistogramEntry {
72 uint32_t renderTimeMs;
73 uint32_t frameCount;
74 };
75 void histogramForEach(const std::function<void(HistogramEntry)>& callback) const;
Stan Iliev7203e1f2019-07-25 13:12:02 -040076 void histogramGPUForEach(const std::function<void(HistogramEntry)>& callback) const;
John Reck7075c792017-07-05 14:03:43 -070077
78 constexpr static int HistogramSize() {
John Reck1bcacfd2017-11-03 10:12:19 -070079 return std::tuple_size<decltype(ProfileData::mFrameCounts)>::value +
80 std::tuple_size<decltype(ProfileData::mSlowFrameCounts)>::value;
John Reck7075c792017-07-05 14:03:43 -070081 }
82
Stan Iliev7203e1f2019-07-25 13:12:02 -040083 constexpr static int GPUHistogramSize() {
84 return std::tuple_size<decltype(ProfileData::mGPUFrameCounts)>::value;
85 }
86
John Reck7075c792017-07-05 14:03:43 -070087 // Visible for testing
88 static uint32_t frameTimeForFrameCountIndex(uint32_t index);
89 static uint32_t frameTimeForSlowFrameCountIndex(uint32_t index);
Stan Iliev7203e1f2019-07-25 13:12:02 -040090 static uint32_t GPUFrameTimeForFrameCountIndex(uint32_t index);
John Reck7075c792017-07-05 14:03:43 -070091
92private:
93 // Open our guts up to unit tests
94 friend class MockProfileData;
95
John Reck1bcacfd2017-11-03 10:12:19 -070096 std::array<uint32_t, NUM_BUCKETS> mJankTypeCounts;
John Reck7075c792017-07-05 14:03:43 -070097 // See comments on kBucket* constants for what this holds
98 std::array<uint32_t, 57> mFrameCounts;
99 // Holds a histogram of frame times in 50ms increments from 150ms to 5s
100 std::array<uint16_t, 97> mSlowFrameCounts;
Stan Iliev7203e1f2019-07-25 13:12:02 -0400101 // Holds a histogram of GPU draw times in 1ms increments. Frames longer than 25ms are placed in
102 // last bucket.
103 std::array<uint32_t, 26> mGPUFrameCounts;
John Reck7075c792017-07-05 14:03:43 -0700104
105 uint32_t mTotalFrameCount;
106 uint32_t mJankFrameCount;
107 nsecs_t mStatStartTime;
Stan Iliev637ba5e2019-08-16 13:43:08 -0400108
109 // true if HWUI renders with Vulkan pipeline
110 RenderPipelineType mPipelineType;
John Reck7075c792017-07-05 14:03:43 -0700111};
112
113// For testing
114class MockProfileData : public ProfileData {
115public:
116 std::array<uint32_t, NUM_BUCKETS>& editJankTypeCounts() { return mJankTypeCounts; }
117 std::array<uint32_t, 57>& editFrameCounts() { return mFrameCounts; }
118 std::array<uint16_t, 97>& editSlowFrameCounts() { return mSlowFrameCounts; }
119 uint32_t& editTotalFrameCount() { return mTotalFrameCount; }
120 uint32_t& editJankFrameCount() { return mJankFrameCount; }
121 nsecs_t& editStatStartTime() { return mStatStartTime; }
122};
123
124} /* namespace uirenderer */
125} /* namespace android */