Closed Bug 1324808 Opened 8 years ago Closed 8 years ago

Improve string allocation

Categories

(Core :: XPCOM, defect)

50 Branch
defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla53
Tracking Status
firefox52 --- fixed
firefox53 --- fixed

People

(Reporter: smaug, Assigned: smaug)

References

Details

Attachments

(1 file)

Assignee: nobody → bugs
And StringBuffer allocates realloc(aHdr, sizeof(nsStringBuffer) + aSize), so need to deal with the sizeof nsStringBuffer too.
A bit ugly code.

Try to ensure we get the next jemalloc bucket size (pow2 or large bucket) including the sizeof (nsStringBuffer) and also the extra sizeof(char_type) for null termination.
This should ensure we don't allocate too much when StringBuffer::Alloc/Realloc are called.

Currently, say we're allocating for nsString length 17, we end up rounding capacity to 32, then multiply with sizeof(char_type) to 64
and add 2 bytes for null and 8 for nsStringBuffer, and end up having allocation 74, which then
malloc rounds to 80 or 96 or 112 or 128 or such

With new setup we round (17 + 5) -> 32, decrease 5 -> 27, add 1 for null, 28, multiple with sizeof(char_type) -> 56 and add sizeof(nsStringBuffer) -> 64

The difference is more when doing large allocations.
Attachment #8820385 - Flags: review?(nfroyd)
remote: View your change here:
remote:   https://hg.mozilla.org/try/rev/d7199ee695435ea767d5404a27f68134b443605b
remote: 
remote: Follow the progress of your build on Treeherder:
remote:   https://treeherder.mozilla.org/#/jobs?repo=try&revision=d7199ee695435ea767d5404a27f68134b443605b
remote: 
remote: It looks like this try push has talos jobs. Compare performance against a baseline revision:
remote:   https://treeherder.mozilla.org/perf.html#/comparechooser?newProject=try&newRevision=d7199ee695435ea767d5404a27f68134b443605b

m-i base 9034d9e08ee3
Comment on attachment 8820385 [details] [diff] [review]
string_alloc_optimization.diff

Review of attachment 8820385 [details] [diff] [review]:
-----------------------------------------------------------------

Had to think through this a bit, but I believe this is correct.
Attachment #8820385 - Flags: review?(nfroyd) → review+
Awesome, thanks for the quick fix!

However, considering bug 1301025, won't this be a problem until the fix is released in version 53?
Wouldn't it make more sense to release bug 1301025 and bug 1324808 together so we won't have the problem in release? Or at least as soon as possible?

Thank you very much!!
Flags: needinfo?(bugs)
Well, even before bug 1301025 we've allocated somewhat random jemalloc buckets for strings, and often increased the allocated size more than needed.
Is there some particular memory usage pattern you're worried about? Have you seen higher memory usage after bug 1301025? (It should have still reduced memory usage in many cases, especially when dealing with very long strings)
Flags: needinfo?(bugs)
Well yeah.
I compared Firefox 51b9 and 50.1.0 using F12->Memory snapshot and it seems Firefox 51 is using much more memory in the "strings" block.

Well I think it might have to do with the fact that bug 1301025 made strings with curCapacity = 0 get allocated to their nearest power of 2, and not exactly their initial size, increasing memory usage..
Flags: needinfo?(bugs)
I don't know what that "strings" block is measuring. Is it about JS strings or all strings. My guess is JS strings.
And anyhow, I tried without this patch, without patch for bug 1301025 and with both patches and couldn't really see difference in "strings"
Flags: needinfo?(bugs)
Well, I noticed it on some popular sites, probably depends on the content..

Anyway, I think the ESR will be released with version 52, right?
I really hoped we could make it by then - so we won't have this effect for a long period of time in the ESR

What do you think?
Flags: needinfo?(bugs)
I was told in #devtools that 'strings' in Memory means JS strings.

Oh, right, 52 makes sense.
And if we can see some regression caused by bug 1301025 which this bug fixes, this should land to 51 too.
Flags: needinfo?(bugs)
https://hg.mozilla.org/mozilla-central/rev/d9d75cfe7af3
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla53
Sounds good, it could be great if we make it to the ESR,
I see now that we're still not fixed in the aurora channel (which is Firefox 52..)

Don't we need to uplift this to the aurora channel to make it to 52? 

Thanks! :)
Flags: needinfo?(bugs)
Comment on attachment 8820385 [details] [diff] [review]
string_alloc_optimization.diff

Hmm, I guess we could take this to Aurora.

Approval Request Comment
[Feature/Bug causing the regression]: bug 1301025 may have increased memory usage in some cases (but reduce in others). This patch tries to always ensure better memory usage with Gecko C++ strings.
[User impact if declined]: Possibly higher memory usage
[Is this code covered by automated tests?]: We use nsString everywhere
[Has the fix been verified in Nightly?]: NA
[Needs manual test from QE? If yes, steps to reproduce]: NA 
[List of other uplifts needed for the feature/fix]: NA
[Is the change risky?]: Should be rather safe. Just allocate less extra memory
[Why is the change risky/not risky?]: See above
[String changes made/needed]: NA
Flags: needinfo?(bugs)
Attachment #8820385 - Flags: approval-mozilla-aurora?
Comment on attachment 8820385 [details] [diff] [review]
string_alloc_optimization.diff

string allocation tweak, aurora52+
Attachment #8820385 - Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: