Closed
Bug 1900001
Opened 2 years ago
Closed 2 years ago
GCRuntime::markGrayRoots has unused template parameter
Categories
(Core :: JavaScript: GC, task, P1)
Core
JavaScript: GC
Tracking
()
RESOLVED
FIXED
129 Branch
| Tracking | Status | |
|---|---|---|
| firefox129 | --- | fixed |
People
(Reporter: jonco, Assigned: jonco)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
While investigating bug 1896973 I noticed that the markGrayRoots method takes a zone iterator as a template parameter to tell it which zones to mark in, but it doesn't use it. Nowadays we use the zone state to control which zones have their gray roots marked.
| Assignee | ||
Comment 1•2 years ago
|
||
This removes the unused template parameter and adds assertions that the right
zones are getting marked.
While doing this I found some other inconsistencies that interferred with
adding these assertions, which I straightened out as well.
Updated•2 years ago
|
Pushed by jcoppeard@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/eb7c8d6e6e73
Remove unused template parameter from GCRuntime::markGrayRoots and add assertions r=sfink
Comment 3•2 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 2 years ago
status-firefox129:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 129 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•