John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | #ifndef FRAMEINFO_H_ |
| 17 | #define FRAMEINFO_H_ |
| 18 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 19 | #include <cutils/compiler.h> |
Ady Abraham | e088dcd | 2023-08-10 11:45:58 -0700 | [diff] [blame] | 20 | #include <memory.h> |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 21 | #include <utils/Timers.h> |
| 22 | |
Siarhei Vishniakou | efed166 | 2020-11-30 10:30:52 -1000 | [diff] [blame] | 23 | #include <array> |
Ady Abraham | e088dcd | 2023-08-10 11:45:58 -0700 | [diff] [blame] | 24 | #include <optional> |
John Reck | 4db3d17 | 2015-06-02 15:58:43 -0700 | [diff] [blame] | 25 | #include <string> |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 26 | |
Ady Abraham | e088dcd | 2023-08-10 11:45:58 -0700 | [diff] [blame] | 27 | #include "SkippedFrameInfo.h" |
| 28 | #include "utils/Macros.h" |
| 29 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 30 | namespace android { |
| 31 | namespace uirenderer { |
| 32 | |
Melody Hsu | 92b519b | 2025-02-05 22:01:40 +0000 | [diff] [blame] | 33 | // This value must be in sync with `FRAME_INFO_SIZE` in FrameInfo.Java |
| 34 | static constexpr size_t UI_THREAD_FRAME_INFO_SIZE = 13; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 35 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 36 | enum class FrameInfoIndex { |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 37 | Flags = 0, |
Steven Thomas | 6fabb5a | 2020-08-21 16:56:08 -0700 | [diff] [blame] | 38 | FrameTimelineVsyncId, |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 39 | IntendedVsync, |
| 40 | Vsync, |
Siarhei Vishniakou | 4bcbffd | 2021-02-17 06:19:36 +0000 | [diff] [blame] | 41 | InputEventId, |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 42 | HandleInputStart, |
| 43 | AnimationStart, |
| 44 | PerformTraversalsStart, |
| 45 | DrawStart, |
Ady Abraham | dfb1398 | 2020-10-05 17:59:09 -0700 | [diff] [blame] | 46 | FrameDeadline, |
Bo Liu | 027b218 | 2021-03-18 16:50:38 -0400 | [diff] [blame] | 47 | FrameStartTime, |
Jorim Jaggi | 10f328c | 2021-01-19 00:08:02 +0100 | [diff] [blame] | 48 | FrameInterval, |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 49 | // End of UI frame info |
| 50 | |
Melody Hsu | 92b519b | 2025-02-05 22:01:40 +0000 | [diff] [blame] | 51 | // The target workload duration based on the original frame deadline and |
| 52 | // and intended vsync. Counted in UI_THREAD_FRAME_INFO_SIZE so its value |
| 53 | // can be set in setVsync(). |
| 54 | WorkloadTarget, |
| 55 | |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 56 | SyncQueued, |
| 57 | |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 58 | SyncStart, |
| 59 | IssueDrawCommandsStart, |
| 60 | SwapBuffers, |
| 61 | FrameCompleted, |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 62 | |
John Reck | 2d5b8d7 | 2016-07-28 15:36:11 -0700 | [diff] [blame] | 63 | DequeueBufferDuration, |
| 64 | QueueBufferDuration, |
| 65 | |
Stan Iliev | 7203e1f | 2019-07-25 13:12:02 -0400 | [diff] [blame] | 66 | GpuCompleted, |
Jorim Jaggi | 71db889 | 2021-02-03 23:19:29 +0100 | [diff] [blame] | 67 | SwapBuffersCompleted, |
Siarhei Vishniakou | 4bcbffd | 2021-02-17 06:19:36 +0000 | [diff] [blame] | 68 | DisplayPresentTime, |
Alec Mouri | 3afb397 | 2022-05-27 22:03:11 +0000 | [diff] [blame] | 69 | CommandSubmissionCompleted, |
Stan Iliev | 7203e1f | 2019-07-25 13:12:02 -0400 | [diff] [blame] | 70 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 71 | // Must be the last value! |
John Reck | 65ddb15 | 2016-08-02 09:38:26 -0700 | [diff] [blame] | 72 | // Also must be kept in sync with FrameMetrics.java#FRAME_STATS_COUNT |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 73 | NumIndexes |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 74 | }; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 75 | |
Siarhei Vishniakou | 4bcbffd | 2021-02-17 06:19:36 +0000 | [diff] [blame] | 76 | extern const std::array<const char*, static_cast<int>(FrameInfoIndex::NumIndexes)> FrameInfoNames; |
John Reck | 4db3d17 | 2015-06-02 15:58:43 -0700 | [diff] [blame] | 77 | |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 78 | namespace FrameInfoFlags { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 79 | enum { |
Jorim Jaggi | 9516605 | 2021-05-03 15:49:25 +0200 | [diff] [blame] | 80 | WindowVisibilityChanged = 1 << 0, |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 81 | RTAnimation = 1 << 1, |
| 82 | SurfaceCanvas = 1 << 2, |
| 83 | SkippedFrame = 1 << 3, |
| 84 | }; |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 85 | }; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 86 | |
Siarhei Vishniakou | aed2282 | 2025-02-18 11:35:58 -0800 | [diff] [blame] | 87 | using FrameInfoBuffer = std::array<int64_t, static_cast<size_t>(FrameInfoIndex::NumIndexes)>; |
| 88 | |
Derek Sollenberger | 3fedf5a | 2020-02-21 13:07:28 -0500 | [diff] [blame] | 89 | class UiFrameInfoBuilder { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 90 | public: |
Steven Thomas | 6fabb5a | 2020-08-21 16:56:08 -0700 | [diff] [blame] | 91 | static constexpr int64_t INVALID_VSYNC_ID = -1; |
Jorim Jaggi | 10f328c | 2021-01-19 00:08:02 +0100 | [diff] [blame] | 92 | static constexpr int64_t UNKNOWN_DEADLINE = std::numeric_limits<int64_t>::max(); |
| 93 | static constexpr int64_t UNKNOWN_FRAME_INTERVAL = -1; |
| 94 | |
Steven Thomas | 6fabb5a | 2020-08-21 16:56:08 -0700 | [diff] [blame] | 95 | |
Chih-Hung Hsieh | faecb78 | 2016-07-21 11:23:06 -0700 | [diff] [blame] | 96 | explicit UiFrameInfoBuilder(int64_t* buffer) : mBuffer(buffer) { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 97 | memset(mBuffer, 0, UI_THREAD_FRAME_INFO_SIZE * sizeof(int64_t)); |
Steven Thomas | 6fabb5a | 2020-08-21 16:56:08 -0700 | [diff] [blame] | 98 | set(FrameInfoIndex::FrameTimelineVsyncId) = INVALID_VSYNC_ID; |
Siarhei Vishniakou | dca1946 | 2021-02-27 08:38:31 +0000 | [diff] [blame] | 99 | // The struct is zeroed by memset above. That also sets FrameInfoIndex::InputEventId to |
| 100 | // equal android::os::IInputConstants::INVALID_INPUT_EVENT_ID == 0. |
| 101 | // Therefore, we can skip setting the value for InputEventId here. If the value for |
| 102 | // INVALID_INPUT_EVENT_ID changes, this code would have to be updated, as well. |
Ady Abraham | dfb1398 | 2020-10-05 17:59:09 -0700 | [diff] [blame] | 103 | set(FrameInfoIndex::FrameDeadline) = std::numeric_limits<int64_t>::max(); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 104 | } |
| 105 | |
Ady Abraham | dfb1398 | 2020-10-05 17:59:09 -0700 | [diff] [blame] | 106 | UiFrameInfoBuilder& setVsync(nsecs_t vsyncTime, nsecs_t intendedVsync, |
Jorim Jaggi | 10f328c | 2021-01-19 00:08:02 +0100 | [diff] [blame] | 107 | int64_t vsyncId, int64_t frameDeadline, nsecs_t frameInterval) { |
Steven Thomas | 6fabb5a | 2020-08-21 16:56:08 -0700 | [diff] [blame] | 108 | set(FrameInfoIndex::FrameTimelineVsyncId) = vsyncId; |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 109 | set(FrameInfoIndex::Vsync) = vsyncTime; |
| 110 | set(FrameInfoIndex::IntendedVsync) = intendedVsync; |
John Reck | bf3c602 | 2015-06-02 15:55:00 -0700 | [diff] [blame] | 111 | // Pretend the other fields are all at vsync, too, so that naive |
| 112 | // duration calculations end up being 0 instead of very large |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 113 | set(FrameInfoIndex::HandleInputStart) = vsyncTime; |
| 114 | set(FrameInfoIndex::AnimationStart) = vsyncTime; |
| 115 | set(FrameInfoIndex::PerformTraversalsStart) = vsyncTime; |
| 116 | set(FrameInfoIndex::DrawStart) = vsyncTime; |
Matt Buckley | e9023cf | 2022-11-23 22:39:25 +0000 | [diff] [blame] | 117 | set(FrameInfoIndex::FrameStartTime) = vsyncTime; |
Ady Abraham | dfb1398 | 2020-10-05 17:59:09 -0700 | [diff] [blame] | 118 | set(FrameInfoIndex::FrameDeadline) = frameDeadline; |
Jorim Jaggi | 10f328c | 2021-01-19 00:08:02 +0100 | [diff] [blame] | 119 | set(FrameInfoIndex::FrameInterval) = frameInterval; |
Melody Hsu | 92b519b | 2025-02-05 22:01:40 +0000 | [diff] [blame] | 120 | set(FrameInfoIndex::WorkloadTarget) = frameDeadline - intendedVsync; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 121 | return *this; |
| 122 | } |
| 123 | |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 124 | UiFrameInfoBuilder& addFlag(int frameInfoFlag) { |
| 125 | set(FrameInfoIndex::Flags) |= static_cast<uint64_t>(frameInfoFlag); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 126 | return *this; |
| 127 | } |
| 128 | |
| 129 | private: |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 130 | inline int64_t& set(FrameInfoIndex index) { return mBuffer[static_cast<int>(index)]; } |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 131 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 132 | int64_t* mBuffer; |
| 133 | }; |
| 134 | |
| 135 | class FrameInfo { |
| 136 | public: |
Siarhei Vishniakou | b07fe1d | 2025-02-13 13:23:53 -0800 | [diff] [blame] | 137 | void importUiThreadInfo(const int64_t* info); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 138 | |
Jerome Gaillard | e218c69 | 2019-06-14 12:58:57 +0100 | [diff] [blame] | 139 | void markSyncStart() { set(FrameInfoIndex::SyncStart) = systemTime(SYSTEM_TIME_MONOTONIC); } |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 140 | |
| 141 | void markIssueDrawCommandsStart() { |
Jerome Gaillard | e218c69 | 2019-06-14 12:58:57 +0100 | [diff] [blame] | 142 | set(FrameInfoIndex::IssueDrawCommandsStart) = systemTime(SYSTEM_TIME_MONOTONIC); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 143 | } |
| 144 | |
Jerome Gaillard | e218c69 | 2019-06-14 12:58:57 +0100 | [diff] [blame] | 145 | void markSwapBuffers() { set(FrameInfoIndex::SwapBuffers) = systemTime(SYSTEM_TIME_MONOTONIC); } |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 146 | |
Jorim Jaggi | 71db889 | 2021-02-03 23:19:29 +0100 | [diff] [blame] | 147 | void markSwapBuffersCompleted() { |
| 148 | set(FrameInfoIndex::SwapBuffersCompleted) = systemTime(SYSTEM_TIME_MONOTONIC); |
| 149 | } |
| 150 | |
Jerome Gaillard | e218c69 | 2019-06-14 12:58:57 +0100 | [diff] [blame] | 151 | void markFrameCompleted() { set(FrameInfoIndex::FrameCompleted) = systemTime(SYSTEM_TIME_MONOTONIC); } |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 152 | |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 153 | void addFlag(int frameInfoFlag) { |
| 154 | set(FrameInfoIndex::Flags) |= static_cast<uint64_t>(frameInfoFlag); |
John Reck | 240ff62 | 2015-04-28 13:50:00 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Siarhei Vishniakou | aed2282 | 2025-02-18 11:35:58 -0800 | [diff] [blame] | 157 | const FrameInfoBuffer& data() const { return mFrameInfo; } |
Andres Morales | 06f5bc7 | 2015-12-15 15:21:31 -0800 | [diff] [blame] | 158 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 159 | inline int64_t operator[](FrameInfoIndex index) const { return get(index); } |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 160 | |
John Reck | 4130027 | 2015-06-03 14:42:34 -0700 | [diff] [blame] | 161 | inline int64_t operator[](int index) const { |
Chris Craik | 1b54fb2 | 2015-06-02 17:40:58 -0700 | [diff] [blame] | 162 | if (index < 0 || index >= static_cast<int>(FrameInfoIndex::NumIndexes)) return 0; |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 163 | return mFrameInfo[index]; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 164 | } |
| 165 | |
John Reck | 4130027 | 2015-06-03 14:42:34 -0700 | [diff] [blame] | 166 | inline int64_t duration(FrameInfoIndex start, FrameInfoIndex end) const { |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 167 | int64_t endtime = get(end); |
| 168 | int64_t starttime = get(start); |
John Reck | 4130027 | 2015-06-03 14:42:34 -0700 | [diff] [blame] | 169 | int64_t gap = endtime - starttime; |
| 170 | gap = starttime > 0 ? gap : 0; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 171 | if (end > FrameInfoIndex::SyncQueued && start < FrameInfoIndex::SyncQueued) { |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 172 | // Need to subtract out the time spent in a stalled state |
| 173 | // as this will be captured by the previous frame's info |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 174 | int64_t offset = get(FrameInfoIndex::SyncStart) - get(FrameInfoIndex::SyncQueued); |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 175 | if (offset > 0) { |
| 176 | gap -= offset; |
| 177 | } |
| 178 | } |
John Reck | 4130027 | 2015-06-03 14:42:34 -0700 | [diff] [blame] | 179 | return gap > 0 ? gap : 0; |
| 180 | } |
| 181 | |
| 182 | inline int64_t totalDuration() const { |
| 183 | return duration(FrameInfoIndex::IntendedVsync, FrameInfoIndex::FrameCompleted); |
| 184 | } |
| 185 | |
Stan Iliev | 7203e1f | 2019-07-25 13:12:02 -0400 | [diff] [blame] | 186 | inline int64_t gpuDrawTime() const { |
| 187 | // GPU start time is approximated to the moment before swapBuffer is invoked. |
| 188 | // We could add an EGLSyncKHR fence at the beginning of the frame, but that is an overhead. |
| 189 | int64_t endTime = get(FrameInfoIndex::GpuCompleted); |
Boleyn Su | a9ce662 | 2020-11-18 03:15:29 +0000 | [diff] [blame] | 190 | return endTime > 0 ? endTime - get(FrameInfoIndex::SwapBuffers) : -1; |
Stan Iliev | 7203e1f | 2019-07-25 13:12:02 -0400 | [diff] [blame] | 191 | } |
| 192 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 193 | inline int64_t& set(FrameInfoIndex index) { return mFrameInfo[static_cast<int>(index)]; } |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 194 | |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 195 | inline int64_t get(FrameInfoIndex index) const { |
| 196 | if (index == FrameInfoIndex::NumIndexes) return 0; |
| 197 | return mFrameInfo[static_cast<int>(index)]; |
| 198 | } |
| 199 | |
Ady Abraham | e088dcd | 2023-08-10 11:45:58 -0700 | [diff] [blame] | 200 | void setSkippedFrameReason(SkippedFrameReason reason); |
| 201 | inline std::optional<SkippedFrameReason> getSkippedFrameReason() const { |
| 202 | return mSkippedFrameReason; |
| 203 | } |
| 204 | |
John Reck | be3fba0 | 2015-07-06 13:49:58 -0700 | [diff] [blame] | 205 | private: |
Siarhei Vishniakou | aed2282 | 2025-02-18 11:35:58 -0800 | [diff] [blame] | 206 | FrameInfoBuffer mFrameInfo; |
Ady Abraham | e088dcd | 2023-08-10 11:45:58 -0700 | [diff] [blame] | 207 | std::optional<SkippedFrameReason> mSkippedFrameReason; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | } /* namespace uirenderer */ |
| 211 | } /* namespace android */ |
| 212 | |
| 213 | #endif /* FRAMEINFO_H_ */ |