Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: content/common/gpu/gpu_memory_manager_unittest.cc

Issue 9289052: Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate mem… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changing tests to use a test harness for setup, and splitting big test into several smaller. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/common/gpu/gpu_command_buffer_stub.h"
6 #include "content/common/gpu/gpu_memory_allocation.h"
7 #include "content/common/gpu/gpu_memory_manager.h"
8
9 #include "testing/gtest/include/gtest/gtest.h"
10
11 class FakeCommandBufferStub : public GpuCommandBufferStubBase {
12 public:
13 SurfaceState surface_state_;
14 std::vector<int32> affected_surface_ids_;
15 GpuMemoryAllocation allocation_;
16
17 FakeCommandBufferStub()
18 : surface_state_(0, false, base::TimeTicks()) {
19 }
20
21 FakeCommandBufferStub(int32 surface_id,
22 bool visible,
23 base::TimeTicks last_used_time)
24 : surface_state_(surface_id, visible, last_used_time) {
25 }
26
27 virtual SurfaceState* surface_state() {
28 return (surface_state_.surface_id != 0) ? &surface_state_ : NULL;
29 }
30 virtual const std::vector<int32>& affected_surface_ids() {
31 return affected_surface_ids_;
32 }
33 virtual void SendMemoryAllocationToProxy(const GpuMemoryAllocation& alloc) {
34 allocation_ = alloc;
35 }
36 };
37
38 class FakeClient : public GpuMemoryManagerClient {
39 public:
40 std::vector<GpuCommandBufferStubBase*> stubs_;
41
42 virtual void AppendAllCommandBufferStubs(
43 std::vector<GpuCommandBufferStubBase*>& stubs) {
44 stubs.insert(stubs.end(), stubs_.begin(), stubs_.end());
45 }
46 };
47
48 class GpuMemoryManagerTest : public testing::Test {
49 protected:
50 GpuMemoryManagerTest()
51 : memory_manager_(&client_) {
52 }
53
54 virtual void SetUp() {
55 first_ = base::TimeTicks::FromInternalValue(1);
nduca 2012/02/01 00:01:17 first_, second_, third_ need better names.
56 second_ = base::TimeTicks::FromInternalValue(2);
57 third_ = base::TimeTicks::FromInternalValue(3);
58
59 memory_manager_.SetMaxSurfacesWithFrontbufferSoftLimit(3);
60 }
61
62 static int32 GenerateUniqueSurfaceId() {
63 static int32 surface_id_ = 1;
64 return surface_id_++;
65 }
66
67 void Manage() {
68 memory_manager_.Manage();
69 }
70
71 base::TimeTicks first_, second_, third_;
72 FakeClient client_;
73 GpuMemoryManager memory_manager_;
74 };
75
76
77 // Create fake stubs with every combination of {visibilty,last_use_time}
78 // and make sure they compare correctly. Only compare stubs with surfaces.
79 // Expect {more visible, newer} surfaces to be more important, in that order.
80 TEST_F(GpuMemoryManagerTest, ComparatorTests) {
81 FakeCommandBufferStub stub_true1(GenerateUniqueSurfaceId(), true, first_),
82 stub_true2(GenerateUniqueSurfaceId(), true, second_),
83 stub_true3(GenerateUniqueSurfaceId(), true, third_),
84 stub_false1(GenerateUniqueSurfaceId(), false, first_),
85 stub_false2(GenerateUniqueSurfaceId(), false, second_),
86 stub_false3(GenerateUniqueSurfaceId(), false, third_);
87
88 GpuMemoryManager::StubWithSurfaceComparator is_more_important;
89
90 // Should never be more important than self:
91 EXPECT_FALSE(is_more_important(&stub_true1,&stub_true1));
92 EXPECT_FALSE(is_more_important(&stub_true2,&stub_true2));
93 EXPECT_FALSE(is_more_important(&stub_true3,&stub_true3));
94 EXPECT_FALSE(is_more_important(&stub_false1,&stub_false1));
95 EXPECT_FALSE(is_more_important(&stub_false2,&stub_false2));
96 EXPECT_FALSE(is_more_important(&stub_false3,&stub_false3));
97
98 // Visible should always be more important than non visible:
99 EXPECT_TRUE(is_more_important(&stub_true1,&stub_false1));
100 EXPECT_TRUE(is_more_important(&stub_true1,&stub_false2));
101 EXPECT_TRUE(is_more_important(&stub_true1,&stub_false3));
102 EXPECT_TRUE(is_more_important(&stub_true2,&stub_false1));
103 EXPECT_TRUE(is_more_important(&stub_true2,&stub_false2));
104 EXPECT_TRUE(is_more_important(&stub_true2,&stub_false3));
105 EXPECT_TRUE(is_more_important(&stub_true3,&stub_false1));
106 EXPECT_TRUE(is_more_important(&stub_true3,&stub_false2));
107 EXPECT_TRUE(is_more_important(&stub_true3,&stub_false3));
108
109 // Not visible should never be more important than visible:
110 EXPECT_FALSE(is_more_important(&stub_false1,&stub_true1));
111 EXPECT_FALSE(is_more_important(&stub_false1,&stub_true2));
112 EXPECT_FALSE(is_more_important(&stub_false1,&stub_true3));
113 EXPECT_FALSE(is_more_important(&stub_false2,&stub_true1));
114 EXPECT_FALSE(is_more_important(&stub_false2,&stub_true2));
115 EXPECT_FALSE(is_more_important(&stub_false2,&stub_true3));
116 EXPECT_FALSE(is_more_important(&stub_false3,&stub_true1));
117 EXPECT_FALSE(is_more_important(&stub_false3,&stub_true2));
118 EXPECT_FALSE(is_more_important(&stub_false3,&stub_true3));
119
120 // Newer should always be more important than older:
121 EXPECT_TRUE(is_more_important(&stub_true2,&stub_true1));
122 EXPECT_TRUE(is_more_important(&stub_true3,&stub_true1));
123 EXPECT_TRUE(is_more_important(&stub_true3,&stub_true2));
124 EXPECT_TRUE(is_more_important(&stub_false2,&stub_false1));
125 EXPECT_TRUE(is_more_important(&stub_false3,&stub_false1));
126 EXPECT_TRUE(is_more_important(&stub_false3,&stub_false2));
127
128 // Older should never be more important than newer:
129 EXPECT_FALSE(is_more_important(&stub_true1,&stub_true2));
130 EXPECT_FALSE(is_more_important(&stub_true1,&stub_true3));
131 EXPECT_FALSE(is_more_important(&stub_true2,&stub_true3));
132 EXPECT_FALSE(is_more_important(&stub_false1,&stub_false2));
133 EXPECT_FALSE(is_more_important(&stub_false1,&stub_false3));
134 EXPECT_FALSE(is_more_important(&stub_false2,&stub_false3));
135 }
136
137 // Test GpuMemoryManager::Manage functionality: Basic test of stubs with
138 // surfaces, and stubs without surfaces but with affected surfaces
nduca 2012/02/01 00:01:17 These two first lines dont add a lot of value.
139 // Expect memory allocation to set hasFrontbuffer, hasBackbuffer according
140 // to visibility and last used time.
141 TEST_F(GpuMemoryManagerTest, TestManageBasicFunctionality) {
142 FakeCommandBufferStub stub1(GenerateUniqueSurfaceId(), true, first_),
143 stub2(GenerateUniqueSurfaceId(), false, first_);
144 client_.stubs_.push_back(&stub1);
145 client_.stubs_.push_back(&stub2);
146
147 Manage();
148 EXPECT_EQ(stub1.allocation_.hasFrontbuffer, true);
149 EXPECT_EQ(stub1.allocation_.hasBackbuffer, true);
150 EXPECT_EQ(stub2.allocation_.hasFrontbuffer, true);
151 EXPECT_EQ(stub2.allocation_.hasBackbuffer, false);
152
153 FakeCommandBufferStub stub3, stub4, stub5;
154 stub3.affected_surface_ids_.push_back(stub1.surface_state()->surface_id);
155 stub4.affected_surface_ids_.push_back(stub2.surface_state()->surface_id);
156 stub5.affected_surface_ids_.push_back(stub1.surface_state()->surface_id);
157 stub5.affected_surface_ids_.push_back(stub2.surface_state()->surface_id);
158 client_.stubs_.push_back(&stub3);
159 client_.stubs_.push_back(&stub4);
160 client_.stubs_.push_back(&stub5);
161
162 Manage();
163 EXPECT_EQ(stub3.allocation_, stub1.allocation_);
164 EXPECT_EQ(stub4.allocation_, stub2.allocation_);
165 EXPECT_EQ(stub5.allocation_, stub1.allocation_);
166 }
167
168 // Test GpuMemoryManager::Manage functionality: Test changing visibility
169 // Expect memory allocation to set hasFrontbuffer, hasBackbuffer according
170 // to visibility and last used time.
171 TEST_F(GpuMemoryManagerTest, TestManageChangingVisibility) {
172 FakeCommandBufferStub stub1(GenerateUniqueSurfaceId(), true, first_),
173 stub2(GenerateUniqueSurfaceId(), false, first_);
174 client_.stubs_.push_back(&stub1);
175 client_.stubs_.push_back(&stub2);
176
177 Manage();
178 EXPECT_EQ(stub1.allocation_.hasFrontbuffer, true);
179 EXPECT_EQ(stub1.allocation_.hasBackbuffer, true);
180 EXPECT_EQ(stub2.allocation_.hasFrontbuffer, true);
181 EXPECT_EQ(stub2.allocation_.hasBackbuffer, false);
182
183 stub1.surface_state()->visible = false;
184 stub2.surface_state()->visible = true;
185
186 Manage();
187 EXPECT_EQ(stub1.allocation_.hasFrontbuffer, true);
188 EXPECT_EQ(stub1.allocation_.hasBackbuffer, false);
189 EXPECT_EQ(stub2.allocation_.hasFrontbuffer, true);
190 EXPECT_EQ(stub2.allocation_.hasBackbuffer, true);
191 }
192
193 // Test GpuMemoryManager::Manage functionality: Test more than threshold number
194 // of visible stubs.
195 // Expect all allocations to continue to have frontbuffer.
196 TEST_F(GpuMemoryManagerTest, TestManageManyVisibleStubs) {
197 FakeCommandBufferStub stub1(GenerateUniqueSurfaceId(), true, first_),
198 stub2(GenerateUniqueSurfaceId(), true, first_),
199 stub3(GenerateUniqueSurfaceId(), true, first_),
200 stub4(GenerateUniqueSurfaceId(), true, first_);
201 client_.stubs_.push_back(&stub1);
202 client_.stubs_.push_back(&stub2);
203 client_.stubs_.push_back(&stub3);
204 client_.stubs_.push_back(&stub4);
205
206 Manage();
207 EXPECT_EQ(stub1.allocation_.hasFrontbuffer, true);
208 EXPECT_EQ(stub1.allocation_.hasBackbuffer, true);
209 EXPECT_EQ(stub2.allocation_.hasFrontbuffer, true);
210 EXPECT_EQ(stub2.allocation_.hasBackbuffer, true);
211 EXPECT_EQ(stub3.allocation_.hasFrontbuffer, true);
212 EXPECT_EQ(stub3.allocation_.hasBackbuffer, true);
213 EXPECT_EQ(stub4.allocation_.hasFrontbuffer, true);
214 EXPECT_EQ(stub4.allocation_.hasBackbuffer, true);
215 }
216
217 // Test GpuMemoryManager::Manage functionality: Test more than threshold number
218 // of not visible stubs.
219 // Expect the stubs surpassing the threshold to not have a backbuffer.
220 TEST_F(GpuMemoryManagerTest, TestManageManyNotVisibleStubs) {
221 FakeCommandBufferStub stub1(GenerateUniqueSurfaceId(), false, second_),
222 stub2(GenerateUniqueSurfaceId(), false, second_),
223 stub3(GenerateUniqueSurfaceId(), false, second_),
224 stub4(GenerateUniqueSurfaceId(), false, first_);
225 client_.stubs_.push_back(&stub1);
226 client_.stubs_.push_back(&stub2);
227 client_.stubs_.push_back(&stub3);
228 client_.stubs_.push_back(&stub4);
229
230 Manage();
231 EXPECT_EQ(stub1.allocation_.hasFrontbuffer, true);
232 EXPECT_EQ(stub1.allocation_.hasBackbuffer, false);
233 EXPECT_EQ(stub2.allocation_.hasFrontbuffer, true);
234 EXPECT_EQ(stub2.allocation_.hasBackbuffer, false);
235 EXPECT_EQ(stub3.allocation_.hasFrontbuffer, true);
236 EXPECT_EQ(stub3.allocation_.hasBackbuffer, false);
237 EXPECT_EQ(stub4.allocation_.hasFrontbuffer, false);
238 EXPECT_EQ(stub4.allocation_.hasBackbuffer, false);
239 }
240
241 // Test GpuMemoryManager::Manage functionality: Test changing the last used
242 // time of stubs when doing so causes change in which stubs surpass threshold.
243 // Expect frontbuffer to be dropped for the older stub.
244 TEST_F(GpuMemoryManagerTest, TestManageChangingLastUsedTime) {
245 FakeCommandBufferStub stub1(GenerateUniqueSurfaceId(), false, second_),
246 stub2(GenerateUniqueSurfaceId(), false, second_),
247 stub3(GenerateUniqueSurfaceId(), false, second_),
248 stub4(GenerateUniqueSurfaceId(), false, first_);
249 client_.stubs_.push_back(&stub1);
250 client_.stubs_.push_back(&stub2);
251 client_.stubs_.push_back(&stub3);
252 client_.stubs_.push_back(&stub4);
253
254 Manage();
255 EXPECT_EQ(stub3.allocation_.hasFrontbuffer, true);
256 EXPECT_EQ(stub3.allocation_.hasBackbuffer, false);
257 EXPECT_EQ(stub4.allocation_.hasFrontbuffer, false);
258 EXPECT_EQ(stub4.allocation_.hasBackbuffer, false);
259
260 stub3.surface_state()->last_used_time = first_;
261 stub4.surface_state()->last_used_time = second_;
262
263 Manage();
264 EXPECT_EQ(stub3.allocation_.hasFrontbuffer, false);
265 EXPECT_EQ(stub3.allocation_.hasBackbuffer, false);
266 EXPECT_EQ(stub4.allocation_.hasFrontbuffer, true);
267 EXPECT_EQ(stub4.allocation_.hasBackbuffer, false);
268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698