Closed
Bug 850635
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: [infer failure] Missing type pushed 0: int, at jsinfer.cpp:315
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 847412
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:update])
The following testcase asserts on mozilla-central revision c1a5c44ae3d8 (run with --ion-eager):
new Object1('true,111,0.5');
function Object1(value) {
this.array = value.split(",");
this.length = this.array.length;
for ( var i = 0; i < this.length; i++)
this[i] = eval(this.array[i]);
}
| Reporter | ||
Comment 1•13 years ago
|
||
S-s due to infer failure. There are other infer failure bugs open, but I'll let this bisect first before deciding to dupe. Also the test here looks simpler than some of the other bugs we have on file.
Blocks: IonFuzz
Whiteboard: [jsbugmon:update,bisect]
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
| Reporter | ||
Comment 2•13 years ago
|
||
JSBugMon: Bisection requested, failed due to error (try manually).
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update] → [jsbugmon:update,bisect]
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
| Reporter | ||
Comment 3•13 years ago
|
||
JSBugMon: Bisection requested, result:
Due to skipped revisions, the first bad revision could be any of:
changeset: 122543:5b0002d4b427
user: Brian Hackett
date: Thu Feb 21 06:46:46 2013 -0700
summary: Bug 842424 - Add missing newKind, r=terrence.
changeset: 122544:985efc588a5e
user: Mark Finkle
date: Thu Feb 21 08:52:37 2013 -0500
summary: Bug 843361 - Dump list of open files if we fail to unlock the DB r=blassey
changeset: 122545:cd16203968a5
user: Brian Hackett
date: Thu Feb 21 06:54:16 2013 -0700
summary: Bug 842425 - Watch for arrays that need elements converted to doubles when pushing elements, r=jandem.
changeset: 122546:0ded3af9b2d7
user: Brian Hackett
date: Thu Feb 21 06:56:54 2013 -0700
summary: Bug 743394 - Ion compile JSOP_EVAL, r=jandem.
changeset: 122547:48c067a87ba2
user: Brian Hackett
date: Thu Feb 21 07:02:41 2013 -0700
summary: Bug 842424 - Remove assertion.
This iteration took 1.893 seconds to run.
| Reporter | ||
Comment 4•13 years ago
|
||
Needinfo from Brian, based on comment 3 :)
Flags: needinfo?(bhackett1024)
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Flags: needinfo?(bhackett1024)
Resolution: --- → DUPLICATE
Updated•11 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•