Closed
Bug 799019
Opened 12 years ago
Closed 12 years ago
Tweak per-compartment memory reporting
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla19
Tracking | Status | |
---|---|---|
firefox18 | --- | fixed |
People
(Reporter: n.nethercote, Assigned: n.nethercote)
References
(Blocks 1 open bug)
Details
(Whiteboard: [MemShrink])
Attachments
(1 file)
(deleted),
patch
|
Ms2ger
:
review+
akeybl
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
Patch coming shortly.
Assignee | ||
Comment 1•12 years ago
|
||
This patch:
- Creates Compartment::sizeOfIncludingThis() and moves some pre-existing code
into it.
- Adds new measurement of Compartment::regExps. Note that I'm measuring the
hash table itself, but not measuring any of the RegExpShared objects
pointed to by the table; DMD indicates there's no need.
- Adds new measurement of Compartment::debuggees.
- Moves the memory reporting of JSCompartment objects themselves from
runtime/compartment-objects to $COMPARTMENT/compartment-objects, which is a
more logical place for it.
The two new reporters improve coverage of 64-bit desktop start-up by about
200KB, i.e. roughly 0.5%.
Attachment #669028 -
Flags: review?(Ms2ger)
Comment 2•12 years ago
|
||
Comment on attachment 669028 [details] [diff] [review]
Tweak per-compartment memory reporting.
Review of attachment 669028 [details] [diff] [review]:
-----------------------------------------------------------------
Gah, how did I end up owning this?
::: js/src/jscompartment.cpp
@@ +855,4 @@
> {
> + *compartmentObject = mallocSizeOf(this);
> + sizeOfTypeInferenceData(tiSizes, mallocSizeOf);
> + *shapesCompartmentTables = baseShapes.sizeOfExcludingThis(mallocSizeOf)
I have to admit that I have no idea what "shapesCompartmentTables" refers to.
Attachment #669028 -
Flags: review?(Ms2ger) → review+
Assignee | ||
Comment 3•12 years ago
|
||
> Gah, how did I end up owning this?
IIRC, you were the one who created jsmemorymetrics.cpp :) Thanks for reviewing, and quickly. I can ask others to review these kinds of changes in the future if you don't want to.
> I have to admit that I have no idea what "shapesCompartmentTables" refers to.
It shows up in about:memory under |compartment(foo)/shapes-extra/compartment-tables|.
BTW, I used DMD to find and check these changes, which should give you some added confidence!
Assignee | ||
Updated•12 years ago
|
Blocks: DarkMatter
Whiteboard: [MemShrink]
Assignee | ||
Comment 4•12 years ago
|
||
Comment 5•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla19
Comment 6•12 years ago
|
||
Comment on attachment 669028 [details] [diff] [review]
Tweak per-compartment memory reporting.
[Approval Request Comment]
This is needed to make the changes in bug 801780 apply cleanly. I can work around this, but I think it's less risky to take this patch.
It's also an improvement with respect to bug 798484, which is important for B2G.
Relatively low-risk patch, and taking it keeps aurora and nightly in sync, reducing pain for B2G.
Attachment #669028 -
Flags: approval-mozilla-aurora?
Updated•12 years ago
|
Attachment #669028 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment 7•12 years ago
|
||
status-firefox18:
--- → fixed
You need to log in
before you can comment on or make changes to this bug.
Description
•