Closed
Bug 599332
Opened 15 years ago
Closed 2 years ago
investigating if string literals should not be atomized
Categories
(Core :: JavaScript Engine, enhancement)
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: igor, Unassigned)
Details
According to callgring on 64-bit Linux js_AtomizeString takes about 2-3% of browser startup time. Part of that time is spend on atomizing string literals embedded into the script. If these literals are not used to access properties such initial atomization is useless and just adds to the parse time.
So the idea is to investigate how often we do this useless atomizations. If it takes substantial time, we should consider doing atomizations only for names.
| Reporter | ||
Updated•13 years ago
|
Assignee: igor → general
| Assignee | ||
Updated•11 years ago
|
Assignee: general → nobody
Updated•3 years ago
|
Severity: normal → S3
Updated•2 years ago
|
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•