forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1407117 - Simplify static atom representation. r=froydnj,bz.
Currently nsAtom::mString points to the interior of an nsStringBuffer. For static atoms this requires the use of nsFakeStringBuffer, which is pretty gross. This patch changes things so that nsAtom::mString points to a static char buffer for static atoms. This simplifies a number of things: - nsFakeStringBuffer and CheckStaticAtomSizes are no longer needed. - FakeBufferRefCountHelper is no longer needed. - nsAtom's constructor for static atoms is simpler. - RegisterStaticAtoms() is simpler. On the flip-side, a couple of things get more complicated. - nsAtom::ToString() treats static and dynamic atoms differently. - nsAtom::GetStringBuffer() is now only valid for dynamic atoms. This function is only used in two places, both involving DOMString, so those locations are updated appropriately. This also requires updating some other code assigning nsStrings to DOMStrings, because we can't assume that nsStrings are shared. On Linux64 this change reduces the size of the binary by 8752 B, and moves 81968 B from the .data to the .rodata section, where it can be shared between processes. --HG-- extra : rebase_source : 0f6fcdec1c525aa66222e208b66a9f9026f69bcb
- Loading branch information
1 parent
ab27f10
commit f2d1f3b
Showing
8 changed files
with
56 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters