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

Issue 9289052: Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate mem… (Closed)

Created:
8 years, 11 months ago by mmocny
Modified:
8 years, 10 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam, apatrick_chromium
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate memory allocations This is initial work using partial information to start making decisions on memory allocation for various RenderWidgets/GraphicsContexts. Subsequent work will fill in some of the missing information, and add do-somethings where we currently do-nothing -- namely implementing GpuCommandBufferSub::SetMemoryAllocation(...).\ BUG=111967 TEST=content_unittests GpuMemoryManager tests added Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=120339

Patch Set 1 #

Patch Set 2 : Changing to use gpu_memory_allocation.h file so it lands first #

Total comments: 33

Patch Set 3 : Changing to use surface_id instead of render_widget_id, and made testable #

Patch Set 4 : Minor updates, working on tests #

Total comments: 83

Patch Set 5 : Fixing issues identified by reviewers. Tests are not complete yet. #

Patch Set 6 : Fixing a few more chromium style issues I missed, and making the WeakPtr factory change. #

Patch Set 7 : Adding a bunch of tests. Helped find a bug introduced with a recent refactor. #

Patch Set 8 : Removing lines of slashes as that is not the convention in gpu #

Patch Set 9 : Changing tests to use a test harness for setup, and splitting big test into several smaller. #

Total comments: 17

Patch Set 10 : . #

Total comments: 26

Patch Set 11 : Moving the affected_surface_ids structure to subsequent patch since it isnt used anyway. #

Patch Set 12 : . #

Patch Set 13 : . #

Patch Set 14 : Changing surface_state pointer to const-ref with a bool has_*() #

Total comments: 6

Patch Set 15 : . #

Patch Set 16 : Moving inlined functions back out since they were virtuals, which is against chromium style. #

Patch Set 17 : Adding CONTENT_EXPORT to SurfaceComparer to fix link error on win #

Patch Set 18 : . #

Unified diffs Side-by-side diffs Delta from patch set Stats (+604 lines, -7 lines) Patch
M content/common/gpu/gpu_channel.h View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
M content/common/gpu/gpu_channel.cc View 1 2 3 4 1 chunk +8 lines, -0 lines 0 comments Download
M content/common/gpu/gpu_channel_manager.h View 1 2 3 4 5 chunks +10 lines, -1 line 0 comments Download
M content/common/gpu/gpu_channel_manager.cc View 1 2 3 4 5 6 7 8 9 3 chunks +12 lines, -0 lines 0 comments Download
M content/common/gpu/gpu_command_buffer_stub.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 15 5 chunks +41 lines, -4 lines 0 comments Download
M content/common/gpu/gpu_command_buffer_stub.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 8 chunks +38 lines, -2 lines 0 comments Download
A content/common/gpu/gpu_memory_allocation.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +48 lines, -0 lines 0 comments Download
A content/common/gpu/gpu_memory_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +57 lines, -0 lines 0 comments Download
A content/common/gpu/gpu_memory_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +130 lines, -0 lines 0 comments Download
A content/common/gpu/gpu_memory_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +251 lines, -0 lines 0 comments Download
M content/content_common.gypi View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
mmocny
I believe this is ready for review. Part 2 and 3 are referenced in the ...
8 years, 11 months ago (2012-01-26 23:40:53 UTC) #1
nduca
We need a 1:1 to talk about testability. The manage function needs to be created ...
8 years, 11 months ago (2012-01-27 10:10:13 UTC) #2
nduca
8 years, 11 months ago (2012-01-27 10:10:22 UTC) #3
Ken Russell (switch to Gerrit)
http://codereview.chromium.org/9289052/diff/11/content/common/gpu/gpu_channel.cc File content/common/gpu/gpu_channel.cc (right): http://codereview.chromium.org/9289052/diff/11/content/common/gpu/gpu_channel.cc#newcode214 content/common/gpu/gpu_channel.cc:214: std::vector<GpuCommandBufferStub*> GpuChannel::GetCommandBuffers() { On 2012/01/27 10:10:13, nduca wrote: > ...
8 years, 11 months ago (2012-01-27 19:21:23 UTC) #4
mmocny
The patch will come soon, but here are my replies to comments. https://chromiumcodereview.appspot.com/9289052/diff/11/content/common/gpu/gpu_channel.cc File content/common/gpu/gpu_channel.cc ...
8 years, 11 months ago (2012-01-27 19:51:33 UTC) #5
nduca
http://codereview.chromium.org/9289052/diff/11002/content/common/gpu/gpu_channel.h File content/common/gpu/gpu_channel.h (right): http://codereview.chromium.org/9289052/diff/11002/content/common/gpu/gpu_channel.h#newcode79 content/common/gpu/gpu_channel.h:79: virtual void AppendAllCommandBufferStubs( Overkill. Just append them all. Then ...
8 years, 10 months ago (2012-01-31 06:53:47 UTC) #6
jonathan.backer
https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_channel.h File content/common/gpu/gpu_channel.h (right): https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_channel.h#newcode40 content/common/gpu/gpu_channel.h:40: public GpuMemoryManagerClient, Necessary? https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_command_buffer_stub.cc File content/common/gpu/gpu_command_buffer_stub.cc (right): https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_command_buffer_stub.cc#newcode285 content/common/gpu/gpu_command_buffer_stub.cc:285: ...
8 years, 10 months ago (2012-01-31 18:13:58 UTC) #7
mmocny
https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_channel.h File content/common/gpu/gpu_channel.h (right): https://chromiumcodereview.appspot.com/9289052/diff/11002/content/common/gpu/gpu_channel.h#newcode40 content/common/gpu/gpu_channel.h:40: public GpuMemoryManagerClient, Indeed, no. On 2012/01/31 18:13:58, jonathan.backer wrote: ...
8 years, 10 months ago (2012-01-31 18:54:57 UTC) #8
nduca
LGTM with nits. https://chromiumcodereview.appspot.com/9289052/diff/24001/content/common/gpu/gpu_command_buffer_stub.cc File content/common/gpu/gpu_command_buffer_stub.cc (right): https://chromiumcodereview.appspot.com/9289052/diff/24001/content/common/gpu/gpu_command_buffer_stub.cc#newcode27 content/common/gpu/gpu_command_buffer_stub.cc:27: bool visible, Awkward indent. https://chromiumcodereview.appspot.com/9289052/diff/24001/content/common/gpu/gpu_command_buffer_stub.cc#newcode57 content/common/gpu/gpu_command_buffer_stub.cc:57: ...
8 years, 10 months ago (2012-02-01 00:01:17 UTC) #9
mmocny
https://chromiumcodereview.appspot.com/9289052/diff/24001/content/common/gpu/gpu_memory_allocation.h File content/common/gpu/gpu_memory_allocation.h (right): https://chromiumcodereview.appspot.com/9289052/diff/24001/content/common/gpu/gpu_memory_allocation.h#newcode46 content/common/gpu/gpu_memory_allocation.h:46: } For now, during testing. I could have defined ...
8 years, 10 months ago (2012-02-01 15:29:42 UTC) #10
nduca
> Operator overloading I dont understand why struct equality isn't sufficient?
8 years, 10 months ago (2012-02-01 15:43:10 UTC) #11
mmocny
This was resolved through IM: op== (etc) are not defined by default, and need to ...
8 years, 10 months ago (2012-02-01 17:56:35 UTC) #12
jonathan.backer
http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h File content/common/gpu/gpu_command_buffer_stub.h (right): http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h#newcode57 content/common/gpu/gpu_command_buffer_stub.h:57: virtual SurfaceState* surface_state() = 0; Can the surface state ...
8 years, 10 months ago (2012-02-01 19:43:17 UTC) #13
mmocny
http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h File content/common/gpu/gpu_command_buffer_stub.h (right): http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h#newcode57 content/common/gpu/gpu_command_buffer_stub.h:57: virtual SurfaceState* surface_state() = 0; It is modified: last_used_time ...
8 years, 10 months ago (2012-02-01 20:44:18 UTC) #14
jonathan.backer
http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h File content/common/gpu/gpu_command_buffer_stub.h (right): http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h#newcode57 content/common/gpu/gpu_command_buffer_stub.h:57: virtual SurfaceState* surface_state() = 0; On 2012/02/01 20:44:19, mmocny ...
8 years, 10 months ago (2012-02-01 21:39:14 UTC) #15
mmocny
http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h File content/common/gpu/gpu_command_buffer_stub.h (right): http://codereview.chromium.org/9289052/diff/18038/content/common/gpu/gpu_command_buffer_stub.h#newcode57 content/common/gpu/gpu_command_buffer_stub.h:57: virtual SurfaceState* surface_state() = 0; On 2012/02/01 21:39:14, jonathan.backer ...
8 years, 10 months ago (2012-02-01 22:31:07 UTC) #16
jonathan.backer
LGTM http://codereview.chromium.org/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc File content/common/gpu/gpu_command_buffer_stub.cc (right): http://codereview.chromium.org/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc#newcode535 content/common/gpu/gpu_command_buffer_stub.cc:535: return !!surface_state_.get(); Correct me if I'm wrong, I ...
8 years, 10 months ago (2012-02-02 14:03:53 UTC) #17
mmocny
http://codereview.chromium.org/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc File content/common/gpu/gpu_command_buffer_stub.cc (right): http://codereview.chromium.org/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc#newcode535 content/common/gpu/gpu_command_buffer_stub.cc:535: return !!surface_state_.get(); Its not redundant, but its needlessly clever. ...
8 years, 10 months ago (2012-02-02 14:58:10 UTC) #18
mmocny
https://chromiumcodereview.appspot.com/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc File content/common/gpu/gpu_command_buffer_stub.cc (right): https://chromiumcodereview.appspot.com/9289052/diff/23005/content/common/gpu/gpu_command_buffer_stub.cc#newcode535 content/common/gpu/gpu_command_buffer_stub.cc:535: return !!surface_state_.get(); Update: These functions are virtual and should ...
8 years, 10 months ago (2012-02-02 15:22:29 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mmocny@chromium.org/9289052/23031
8 years, 10 months ago (2012-02-02 18:56:10 UTC) #20
commit-bot: I haz the power
Try job failure for 9289052-23031 (retry) on win_rel for step "test_shell_tests". It's a second try, ...
8 years, 10 months ago (2012-02-02 21:25:31 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mmocny@chromium.org/9289052/26027
8 years, 10 months ago (2012-02-03 15:07:43 UTC) #22
commit-bot: I haz the power
Change committed as 120339
8 years, 10 months ago (2012-02-03 16:28:57 UTC) #23
scottmg
8 years, 10 months ago (2012-02-04 01:23:18 UTC) #24
content/content_common.gypi references 'common/gpu/gpu_memory_management.h'
which doesn't seem to exist. This causes unnecessary rebuilds on Windows. Could
you remove that (or add that file if it's supposed to be there?)

Powered by Google App Engine
This is Rietveld 408576698