Closed
Bug 808453
Opened 13 years ago
Closed 13 years ago
IonMonkey: Crash on Heap with NULL-deref
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 807047
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: crash, testcase, Whiteboard: [jsbugmon:])
The following testcase crashes on mozilla-central revision e9a9341e27ed (run with --ion-eager):
function testCALLELEM() {
var x = [({}).operators];
for (var i = 0; i < 5; ++i)
y = x[i]();
}
testCALLELEM()
| Reporter | ||
Comment 1•13 years ago
|
||
Crash trace:
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff7fe906c in ?? ()
(gdb) bt
#0 0x00007ffff7fe906c in ?? ()
#1 0xfffbfffff601c080 in ?? ()
#2 0x00007ffff601c080 in ?? ()
#3 0x0000000000000000 in ?? ()
(gdb) x /i $pc
=> 0x7ffff7fe906c: mov (%rax),%r8
(gdb) info reg rax
rax 0x0 0
Looks like a null-deref, but since this is a crash in JIT code without symbols, marking s-s until triaged.
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, result:
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 111708:4a2c17905a17
user: Nicolas B. Pierron
date: Mon Oct 29 14:48:45 2012 -0700
summary: Bug 792631 - Add IC for missing properties. r=dvander
This iteration took 0.464 seconds to run.
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update] → [jsbugmon:update,ignore]
| Reporter | ||
Comment 3•13 years ago
|
||
JSBugMon: The testcase found in this bug no longer reproduces (tried revision f4aeed115e54).
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update,ignore] → [jsbugmon:bisectfix]
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:bisectfix] → [jsbugmon:]
| Reporter | ||
Comment 4•13 years ago
|
||
JSBugMon: Fix Bisection requested, result:
autoBisect shows this is probably related to the following changeset:
The first good revision is:
changeset: 112365:197b182baf4f
user: Nicolas B. Pierron
date: Mon Nov 05 16:40:41 2012 -0800
summary: Bug 807047 - Only use missing property cache on non-idempotent IC. r=jandem
This iteration took 0.203 seconds to run.
| Reporter | ||
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
Updated•10 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•