Closed
Bug 1843965
Opened 2 years ago
Closed 2 years ago
Do not trace ParseTask::compileStorage_
Categories
(Core :: JavaScript Engine, task, P3)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
117 Branch
| Tracking | Status | |
|---|---|---|
| firefox117 | --- | fixed |
People
(Reporter: arai, Assigned: arai)
References
Details
Attachments
(1 file)
JS::CompilationStorage does not contain GC pointer, and it doesn't need trace.
struct ParseTask : public mozilla::LinkedListElement<ParseTask>,
public JS::OffThreadToken,
public HelperThreadTask {
...
JS::CompilationStorage compileStorage_;
void ParseTask::trace(JSTracer* trc) {
...
compileStorage_.trace(trc);
JS_HAZ_NON_GC_POINTER js::frontend::CompilationInput* input_ = nullptr;
| Assignee | ||
Comment 1•2 years ago
|
||
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/1d74693a9777
Do not trace ParseTask. r=nbp
Comment 3•2 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
status-firefox117:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 117 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•