-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe_info.cc
266 lines (222 loc) · 8.83 KB
/
frame_info.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/metrics/frame_info.h"
#include <algorithm>
#include "base/check.h"
#include "base/files/file_util.h"
#include "build/build_config.h"
namespace cc {
namespace {
bool IsCompositorSmooth(FrameInfo::SmoothThread thread) {
return thread == FrameInfo::SmoothThread::kSmoothCompositor ||
thread == FrameInfo::SmoothThread::kSmoothBoth;
}
bool IsMainSmooth(FrameInfo::SmoothThread thread) {
return thread == FrameInfo::SmoothThread::kSmoothMain ||
thread == FrameInfo::SmoothThread::kSmoothBoth;
}
bool ValidateFinalStateIsForMainThread(FrameInfo::FrameFinalState state) {
switch (state) {
case FrameInfo::FrameFinalState::kPresentedPartialOldMain:
case FrameInfo::FrameFinalState::kPresentedPartialNewMain:
// Frames that contain main-thread update cannot have a 'partial update'
// state.
return false;
case FrameInfo::FrameFinalState::kPresentedAll:
case FrameInfo::FrameFinalState::kNoUpdateDesired:
case FrameInfo::FrameFinalState::kDropped:
return true;
}
}
} // namespace
FrameInfo::FrameInfo() = default;
FrameInfo::FrameInfo(const FrameInfo& other) = default;
FrameInfo::~FrameInfo() = default;
bool FrameInfo::IsDroppedAffectingSmoothness() const {
// If neither of the threads are expected to be smooth, then this frame cannot
// affect smoothness.
if (smooth_thread == SmoothThread::kSmoothNone)
return false;
return WasSmoothMainUpdateDropped() || WasSmoothCompositorUpdateDropped();
}
void FrameInfo::MergeWith(const FrameInfo& other) {
#if BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/40208073): on android-webview, multiple frames can be
// submitted against the same BeginFrameArgs. This can trip the DCHECK()s in
// this function.
if (was_merged)
return;
if (main_thread_response == MainThreadResponse::kIncluded &&
other.main_thread_response == MainThreadResponse::kIncluded) {
return;
}
#endif
DCHECK(!was_merged);
DCHECK(!other.was_merged);
DCHECK(Validate());
DCHECK(other.Validate());
if (main_thread_response == MainThreadResponse::kIncluded) {
// |this| includes the main-thread updates. Therefore:
// - |other| must not also include main-thread updates.
// - |this| must have a valid final-state.
DCHECK_EQ(MainThreadResponse::kMissing, other.main_thread_response);
DCHECK(ValidateFinalStateIsForMainThread(final_state));
// If the compositor-only update did not include any changes from the
// main-thread, then it did drop the main-thread update. Therefore, overall
// the main-thread update was dropped, even if the 'main thread update' is
// presented in a subsequent frame.
bool compositor_only_change_included_new_main =
other.final_state == FrameFinalState::kPresentedAll ||
other.final_state == FrameFinalState::kPresentedPartialNewMain;
main_update_was_dropped = final_state == FrameFinalState::kDropped ||
!compositor_only_change_included_new_main;
compositor_update_was_dropped =
other.final_state == FrameFinalState::kDropped;
raster_property_was_dropped =
other.final_state_raster_property == FrameFinalState::kDropped;
compositor_final_state = other.final_state;
compositor_termination_time = other.termination_time;
main_final_state = final_state;
main_termination_time = termination_time;
} else {
// |this| does not include main-thread updates. Therefore:
// - |other| must include main-thread updates.
// - |other| must have a valid final-state.
DCHECK_EQ(MainThreadResponse::kIncluded, other.main_thread_response);
DCHECK(ValidateFinalStateIsForMainThread(other.final_state));
main_update_was_dropped = other.final_state == FrameFinalState::kDropped;
compositor_update_was_dropped = final_state == FrameFinalState::kDropped;
raster_property_was_dropped =
final_state_raster_property == FrameFinalState::kDropped;
compositor_final_state = final_state;
compositor_termination_time = termination_time;
main_final_state = other.final_state;
main_termination_time = other.termination_time;
}
was_merged = true;
main_thread_response = MainThreadResponse::kIncluded;
// The |scroll_thread| information cannot change once the frame starts.
// However, if a frame did not have any scroll-events, or the scroll-events
// for the frame did not cause any visual updates, then |scroll_thread| is
// reset. Therefore, either |scroll_thread| should be the same for |this| and
// |other|, or one of them must be |kUnknown|.
if (scroll_thread != other.scroll_thread) {
if (scroll_thread == SmoothEffectDrivingThread::kUnknown) {
scroll_thread = other.scroll_thread;
} else {
DCHECK_EQ(other.scroll_thread, SmoothEffectDrivingThread::kUnknown);
}
}
checkerboarded_needs_raster |= other.checkerboarded_needs_raster;
checkerboarded_needs_record |= other.checkerboarded_needs_record;
if (other.final_state == FrameFinalState::kDropped)
final_state = FrameFinalState::kDropped;
const bool is_compositor_smooth = IsCompositorSmooth(smooth_thread) ||
IsCompositorSmooth(other.smooth_thread);
const bool is_main_smooth =
IsMainSmooth(smooth_thread) || IsMainSmooth(other.smooth_thread);
if (is_compositor_smooth && is_main_smooth) {
smooth_thread = SmoothThread::kSmoothBoth;
} else if (is_compositor_smooth) {
smooth_thread = SmoothThread::kSmoothCompositor;
} else if (is_main_smooth) {
smooth_thread = SmoothThread::kSmoothMain;
} else {
smooth_thread = SmoothThread::kSmoothNone;
}
termination_time = std::max(termination_time, other.termination_time);
// Validate the state after the merge.
DCHECK(Validate());
}
bool FrameInfo::Validate() const {
// If |scroll_thread| is set, then the |smooth_thread| must include that
// thread.
if (scroll_thread == SmoothEffectDrivingThread::kCompositor) {
DCHECK(IsCompositorSmooth(smooth_thread));
} else if (scroll_thread == SmoothEffectDrivingThread::kMain) {
DCHECK(IsMainSmooth(smooth_thread));
}
return true;
}
bool FrameInfo::WasSmoothCompositorUpdateDropped() const {
if (!IsCompositorSmooth(smooth_thread))
return false;
if (was_merged)
return compositor_update_was_dropped;
return final_state == FrameFinalState::kDropped;
}
bool FrameInfo::WasSmoothRasterPropertyUpdateDropped() const {
if (!IsCompositorSmooth(smooth_thread_raster_property)) {
return false;
}
if (was_merged) {
return raster_property_was_dropped;
}
return final_state_raster_property == FrameFinalState::kDropped;
}
bool FrameInfo::WasSmoothMainUpdateDropped() const {
if (!IsMainSmooth(smooth_thread))
return false;
if (was_merged)
return main_update_was_dropped;
switch (final_state) {
case FrameFinalState::kDropped:
case FrameFinalState::kPresentedPartialOldMain:
return true;
case FrameFinalState::kPresentedPartialNewMain:
// Although this frame dropped the main-thread updates for this particular
// frame, it did include new main-thread update. So do not treat this as a
// dropped frame.
return false;
case FrameFinalState::kNoUpdateDesired:
case FrameFinalState::kPresentedAll:
return false;
}
return false;
}
bool FrameInfo::WasSmoothMainUpdateExpected() const {
return final_state != FrameFinalState::kNoUpdateDesired;
}
bool FrameInfo::IsScrollPrioritizeFrameDropped() const {
// If any scroll is active the dropped frame for only the scrolling thread is
// reported. If no scroll is active then reports if dropped frames is
// affecting smoothness.
switch (scroll_thread) {
case SmoothEffectDrivingThread::kCompositor:
return WasSmoothCompositorUpdateDropped();
case SmoothEffectDrivingThread::kMain:
return WasSmoothMainUpdateDropped();
case SmoothEffectDrivingThread::kUnknown:
return IsDroppedAffectingSmoothness();
}
}
FrameInfo::FrameFinalState FrameInfo::GetFinalStateForThread(
SmoothEffectDrivingThread thread) const {
if (!was_merged) {
return final_state;
}
switch (thread) {
case SmoothEffectDrivingThread::kCompositor:
return compositor_final_state;
case SmoothEffectDrivingThread::kMain:
return main_final_state;
case SmoothEffectDrivingThread::kUnknown:
return final_state;
}
}
base::TimeTicks FrameInfo::GetTerminationTimeForThread(
SmoothEffectDrivingThread thread) const {
if (!was_merged) {
return termination_time;
}
switch (thread) {
case SmoothEffectDrivingThread::kCompositor:
return compositor_termination_time;
case SmoothEffectDrivingThread::kMain:
return main_termination_time;
case SmoothEffectDrivingThread::kUnknown:
return termination_time;
}
}
} // namespace cc