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

Issue 2566983009: Support storing information about what modules are loaded in the process. (Closed)

Created:
4 years ago by bcwhite
Modified:
3 years, 11 months ago
CC:
chromium-reviews, vmpstr+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Support storing information about what modules are loaded in the process. BUG=620813 Review-Url: https://codereview.chromium.org/2566983009 Cr-Commit-Position: refs/heads/master@{#446382} Committed: https://chromium.googlesource.com/chromium/src/+/de229b494a475f4ac9e36383241b27716e806c51

Patch Set 1 #

Total comments: 21

Patch Set 2 : refactored to support analysis extraction #

Patch Set 3 : addressed review comments by manzagop; fixed build problems #

Patch Set 4 : rebased #

Total comments: 2

Patch Set 5 : addressed review comments by manzagop #

Patch Set 6 : rebased #

Patch Set 7 : updated with PMA changes and improved atomicity #

Total comments: 2

Patch Set 8 : new ModuleInfo fields #

Patch Set 9 : rebased #

Total comments: 14

Patch Set 10 : fixed some problems with new data structure #

Total comments: 2

Patch Set 11 : rebased #

Total comments: 3

Patch Set 12 : changed GUID to generic 'identifier'; noted it and others as 'opaque' with no defined meaning #

Unified diffs Side-by-side diffs Delta from patch set Stats (+331 lines, -10 lines) Patch
M base/debug/activity_analyzer.h View 1 1 chunk +3 lines, -0 lines 0 comments Download
M base/debug/activity_analyzer.cc View 1 2 3 4 5 6 2 chunks +21 lines, -1 line 0 comments Download
M base/debug/activity_analyzer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +76 lines, -0 lines 0 comments Download
M base/debug/activity_tracker.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +80 lines, -0 lines 0 comments Download
M base/debug/activity_tracker.cc View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +151 lines, -9 lines 0 comments Download

Messages

Total messages: 119 (96 generated)
bcwhite
Here's the storage part for you to take a look at. I'll add the retrieval ...
4 years ago (2016-12-14 15:26:30 UTC) #6
manzagop (departed)
Nice! Main comment is about the possibility of modules being loaded more than once at ...
4 years ago (2016-12-14 20:08:54 UTC) #11
bcwhite
https://codereview.chromium.org/2566983009/diff/1/base/debug/activity_tracker.cc File base/debug/activity_tracker.cc (right): https://codereview.chromium.org/2566983009/diff/1/base/debug/activity_tracker.cc#newcode63 base/debug/activity_tracker.cc:63: // State of a module as stared in persistent ...
4 years ago (2016-12-14 21:59:06 UTC) #26
manzagop (departed)
lgtm https://codereview.chromium.org/2566983009/diff/1/base/debug/activity_tracker.cc File base/debug/activity_tracker.cc (right): https://codereview.chromium.org/2566983009/diff/1/base/debug/activity_tracker.cc#newcode1168 base/debug/activity_tracker.cc:1168: return; On 2016/12/14 21:59:05, bcwhite wrote: > On ...
4 years ago (2016-12-16 16:09:31 UTC) #33
bcwhite
The implementation by some compilers of std::atomic makes it impossible to hold them in PersistentMemory ...
4 years ago (2016-12-16 18:35:15 UTC) #36
bcwhite
PMA changes are in. PTAL.
3 years, 11 months ago (2017-01-13 19:11:11 UTC) #73
manzagop (departed)
lgtm up to the question about what the module info provider code will feed into ...
3 years, 11 months ago (2017-01-13 23:01:03 UTC) #76
bcwhite
https://codereview.chromium.org/2566983009/diff/320001/base/debug/activity_tracker.cc File base/debug/activity_tracker.cc (right): https://codereview.chromium.org/2566983009/diff/320001/base/debug/activity_tracker.cc#newcode1009 base/debug/activity_tracker.cc:1009: sizer.AddString(info.debug_identifier); On 2017/01/13 23:01:02, manzagop wrote: > Siggi was ...
3 years, 11 months ago (2017-01-14 01:23:24 UTC) #77
manzagop (departed)
On 2017/01/14 01:23:24, bcwhite wrote: > https://codereview.chromium.org/2566983009/diff/320001/base/debug/activity_tracker.cc > File base/debug/activity_tracker.cc (right): > > https://codereview.chromium.org/2566983009/diff/320001/base/debug/activity_tracker.cc#newcode1009 > ...
3 years, 11 months ago (2017-01-16 14:39:24 UTC) #78
bcwhite
Fields updated. PTAL.
3 years, 11 months ago (2017-01-23 17:54:36 UTC) #81
manzagop (departed)
Almost there! Some naming suggestions and my mistake on guid size. https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): ...
3 years, 11 months ago (2017-01-23 20:33:29 UTC) #86
bcwhite
https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h#newcode663 base/debug/activity_tracker.h:663: size_t size = 0; On 2017/01/23 20:33:29, manzagop wrote: ...
3 years, 11 months ago (2017-01-24 13:45:53 UTC) #89
manzagop (departed)
lgtm https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h#newcode669 base/debug/activity_tracker.h:669: uint32_t age; On 2017/01/24 13:45:53, bcwhite wrote: > ...
3 years, 11 months ago (2017-01-24 14:42:46 UTC) #92
bcwhite
https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h#newcode670 base/debug/activity_tracker.h:670: uint64_t guid; On 2017/01/24 14:42:46, manzagop wrote: > On ...
3 years, 11 months ago (2017-01-24 14:54:39 UTC) #93
manzagop (departed)
+Scott Let's ask someone who knows more about modules on other platforms. Scott: Brian is ...
3 years, 11 months ago (2017-01-24 15:02:53 UTC) #95
scottmg
On 2017/01/24 15:02:53, manzagop wrote: > +Scott > > Let's ask someone who knows more ...
3 years, 11 months ago (2017-01-24 18:36:08 UTC) #98
manzagop (departed)
https://codereview.chromium.org/2566983009/diff/400001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/400001/base/debug/activity_tracker.h#newcode670 base/debug/activity_tracker.h:670: uint8_t guid[16]; I'm looking to do the (guid+age) -> ...
3 years, 11 months ago (2017-01-24 22:45:55 UTC) #101
bcwhite
https://codereview.chromium.org/2566983009/diff/400001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/400001/base/debug/activity_tracker.h#newcode670 base/debug/activity_tracker.h:670: uint8_t guid[16]; On 2017/01/24 22:45:55, manzagop wrote: > I'm ...
3 years, 11 months ago (2017-01-25 01:13:23 UTC) #102
manzagop (departed)
lgtm https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h File base/debug/activity_tracker.h (right): https://codereview.chromium.org/2566983009/diff/360001/base/debug/activity_tracker.h#newcode669 base/debug/activity_tracker.h:669: uint32_t age; On 2017/01/24 14:42:46, manzagop wrote: > ...
3 years, 11 months ago (2017-01-25 14:53:29 UTC) #110
bcwhite
3 years, 11 months ago (2017-01-25 15:12:45 UTC) #111
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2566983009/440001
3 years, 11 months ago (2017-01-25 15:13:09 UTC) #113
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2566983009/440001
3 years, 11 months ago (2017-01-26 17:04:50 UTC) #116
commit-bot: I haz the power
3 years, 11 months ago (2017-01-26 18:29:12 UTC) #119
Message was sent while issue was closed.
Committed patchset #12 (id:440001) as
https://chromium.googlesource.com/chromium/src/+/de229b494a475f4ac9e36383241b...

Powered by Google App Engine
This is Rietveld 408576698