Closed
Bug 564060
Opened 15 years ago
Closed 13 years ago
TM: Implement arena pool chunk time-deferred "soft release"
Categories
(Core :: JavaScript Engine, enhancement, P5)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 684039
People
(Reporter: cdleary, Assigned: cdleary)
References
Details
Attachments
(1 file, 2 obsolete files)
55.23 KB,
patch
|
Details | Diff | Splinter Review |
Never filed a bug for this -- an interesting experiment stemming from bug 561286:
"""you can use time locality to let the arenas sit and age until
the next garbage collection. For imacro_asm, this seems particularly useful in
regular expression evaluation."""
Assignee | ||
Updated•15 years ago
|
Assignee: general → cdleary
Assignee | ||
Comment 1•14 years ago
|
||
Adding reference to regexp pool fix bug. I've actually implemented and tested a single-big-chunk arena strategy that shows no speedup in the shell, but still has to be tested in browser. Will post patches for that tomorrow.
Status: NEW → ASSIGNED
Depends on: 586827
Assignee | ||
Comment 2•14 years ago
|
||
Make an arena template class in arenang.h that just uses a huge primary chunk. For this part of the experiment I just made it sufficiently huge that secondary chunks are unnecessary for benchmark runs.
Assignee | ||
Comment 3•14 years ago
|
||
It helps when you add new files...
Attachment #467453 -
Attachment is obsolete: true
Assignee | ||
Comment 5•14 years ago
|
||
To do: we can also eliminate all the emit checks with a sufficiently large single primary chunk.
Assignee | ||
Updated•14 years ago
|
Severity: normal → enhancement
Assignee | ||
Comment 6•14 years ago
|
||
My observation was that this wouldn't give us much of a speedup, so I'm downgrading to my "cleanup" priority. :-)
Priority: -- → P5
Assignee | ||
Updated•13 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•