Closed
Bug 463334
Opened 17 years ago
Closed 17 years ago
TM: Crash [@ isPromoteInt] with generator
Categories
(Core :: JavaScript Engine, defect, P1)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
mozilla1.9.1b2
People
(Reporter: jruderman, Assigned: brendan)
References
Details
(4 keywords)
Crash Data
u = 3;
for (let i in (function() { for (var j=0;j<4;++j) { void u; yield; } })());
Crash [@ isPromoteInt] called by TraceRecorder::determineSlotType.
jsfunfuzz is hitting this a lot, so I'm guessing this is a regression from earlier today.
Updated•17 years ago
|
Assignee: general → brendan
| Assignee | ||
Comment 1•17 years ago
|
||
The imacros patch in bug 456511 fixes this.
/be
Depends on: imacros
| Assignee | ||
Updated•17 years ago
|
Status: NEW → ASSIGNED
Flags: blocking1.9.1?
OS: Mac OS X → All
Priority: -- → P1
Hardware: PC → All
Target Milestone: --- → mozilla1.9.1b2
| Reporter | ||
Comment 2•17 years ago
|
||
The testcase in comment 0 WFM, but here's another testcase that triggers the crash:
for (let i in (function() { for (let j = 0; j < 4; ++j) with({t: NaN}) yield; })()) { }
Updated•17 years ago
|
Flags: blocking1.9.1? → blocking1.9.1+
| Reporter | ||
Comment 3•17 years ago
|
||
This bug keeps showing up with different assertion failures and crash signatures :(
Comment 4•17 years ago
|
||
Brendan is about to fix this, hang in there. I already reviewed his patch. We are just waiting for the tree to go green.
Comment 5•17 years ago
|
||
This still asserts.
| Assignee | ||
Comment 6•17 years ago
|
||
Fixed bogus assertion:
http://hg.mozilla.org/tracemonkey/rev/b6bc52a55c89
http://hg.mozilla.org/mozilla-central/rev/4bfb610c88f6
Fixed by patch for bug 456511 plus this assertion fix.
/be
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Comment 7•17 years ago
|
||
test landed http://hg.mozilla.org/mozilla-central/rev/ccb860b3b4a5 and cvs
Flags: in-testsuite+
Flags: in-litmus-
Updated•17 years ago
|
Keywords: fixed1.9.1
Comment 8•17 years ago
|
||
v 1.9.1, 1.9.2
Status: RESOLVED → VERIFIED
Keywords: fixed1.9.1 → verified1.9.1
Updated•15 years ago
|
Crash Signature: [@ isPromoteInt]
You need to log in
before you can comment on or make changes to this bug.
Description
•