Closed
Bug 950942
Opened 12 years ago
Closed 12 years ago
GenerationalGC: Assertion failure: !gc::IsInsideNursery(cx->compartment()->runtimeFromAnyThread(), metadata), at vm/Shape.cpp:1663
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:ignore])
The following testcase asserts on mozilla-central built with --enable-exact-rooting --enable-gcgenerational, revision 1ad9af3a2ab8 (run with --fuzzing-safe --ion-check-range-analysis --ion-eager --ion-compile-try-catch):
incallback = false;
function callback(obj) {
if (incallback)
return null;
incallback = true;
var res = {};
incallback = false;
return res;
}
setObjectMetadataCallback(callback);
var s = Set();
var obj = {};
referencesVia(s, (1), obj)
function referencesVia(from, edge, to) {
var edges = findReferences(to);
if (alternatives.length == 0) {}
}
Comment 1•12 years ago
|
||
This no longer reproduces since that assertion was removed by bug 951213.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•