Closed
Bug 728736
Opened 11 years ago
Closed 11 years ago
Simplify JS_IterateCompartments
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla13
People
(Reporter: n.nethercote, Assigned: n.nethercote)
Details
Attachments
(1 file)
643 bytes,
patch
|
billm
:
review+
|
Details | Diff | Splinter Review |
From bug 702300 comment 61: > @@ +3773,5 @@ > > + rt->gcHelperThread.waitBackgroundSweepEnd(); > > +#endif > > + AutoUnlockGC unlock(rt); > > + > > + AutoCopyFreeListToArenas copy(rt); > > Waiting for background sweeping to end and the AutoUnlockGC should be > unnecessary. Same for AutoCopyFreeListToArenas. The functions that can be simplified are JS_IterateCompartments, IterateCompartmentsArenasCells, and IterateChunks.
It's only JS_IterateCompartments that needs to be changed. The others touch things that are modified by background sweeping (cells and chunks), so they should still wait for it to end. (Although we probably don't need the AutoCopyFreeListToArenas in IterateChunks, but it really doesn't cost us much.) This is my fault. I should have caught it in review when JS_IterateCompartments landed.
![]() |
Assignee | |
Comment 2•11 years ago
|
||
Attachment #598757 -
Flags: review?(wmccloskey)
Attachment #598757 -
Flags: review?(wmccloskey) → review+
![]() |
Assignee | |
Updated•11 years ago
|
Summary: Simplify the GC heap iterator functions → Simplify JS_IterateCompartments
![]() |
Assignee | |
Comment 3•11 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/c3e591a5b867
Comment 4•11 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/c3e591a5b867
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla13
You need to log in
before you can comment on or make changes to this bug.
Description
•