Closed
Bug 880091
Opened 11 years ago
Closed 11 years ago
Assertion failure: v->toGCThing(), at gc/Marking.cpp with --ion-regalloc=backtracking
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: gkw, Unassigned)
References
Details
(Keywords: assertion, regression, testcase)
Attachments
(1 file)
(deleted),
text/plain
|
Details |
gczeal(8, 1)
function f() {
(function() {})()
}
function g(x) {
if (!x) {
x = ""
}
f(x.length)
}
g()
g(0)
asserts 32-bit js debug shell on m-c changeset 204de5b7e0a6 with --ion-eager --ion-regalloc=backtracking at Assertion failure: v->toGCThing(), at gc/Marking.cpp (pass in the testcase as a CLI argument)
Setting needinfo from Brian as this involves --ion-regalloc=backtracking, thanks to Jesse for helping to reduce this.
Flags: needinfo?(bhackett1024)
Reporter | ||
Comment 1•11 years ago
|
||
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: http://hg.mozilla.org/mozilla-central/rev/2ae7acc7c485
user: Brian Hackett
date: Tue May 28 07:00:55 2013 -0600
summary: Bug 875276 - Improve robustness when optimizing .length accesses on objects, r=jandem.
Blocks: 875276
Reporter | ||
Updated•11 years ago
|
Keywords: regression
Reporter | ||
Comment 2•11 years ago
|
||
autoBisect shows this is probably related to the following changeset:
The first good revision is:
changeset: http://hg.mozilla.org/mozilla-central/rev/1684c32be328
user: Kannan Vijayan
date: Tue Jun 11 15:49:51 2013 -0400
summary: Bug 859609 - Inline functions that use the scope chain, and also inline call sites with monomorphic cloned lambdas. r=h4writer
Kannan, is bug 859609 a possible fix?
Flags: needinfo?(kvijayan)
Comment 3•11 years ago
|
||
No, it's highly unlikely that bug 859609 is a fix for this. I think it's a fluke.
Flags: needinfo?(kvijayan)
Reporter | ||
Comment 4•11 years ago
|
||
A newer testcase has been found in bug 906858, so marking this as WFM for now.
Status: NEW → RESOLVED
Closed: 11 years ago
Flags: needinfo?(bhackett1024)
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•