Closed
Bug 875789
Opened 12 years ago
Closed 12 years ago
Assertion failure: allocKind <= size_t(FINALIZE_LIMIT), at gc/Heap.h:456 or Crash [@ fetchNextFreeArena]
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 875748
People
(Reporter: decoder, Unassigned)
Details
(Keywords: assertion, crash, testcase, Whiteboard: [jsbugmon:update])
Crash Data
Attachments
(1 file)
|
2.93 KB,
text/plain
|
Details |
The following testcase asserts on mozilla-central revision df526497d949 (no options required):
var actual = '';
test();
function test(y, m, ... x)
print(actual += test(1,2,3,4));
| Reporter | ||
Comment 1•12 years ago
|
||
| Reporter | ||
Comment 2•12 years ago
|
||
Valgrind on 64 bit debug crash:
==5117== Invalid read of size 8
==5117== at 0x48F056: js::gc::Chunk::allocateArena(JS::Zone*, js::gc::AllocKind) (jsgc.cpp:738)
==5117== by 0x495217: void* js::gc::ArenaLists::refillFreeList<(js::AllowGC)0>(JSContext*, js::gc::AllocKind) (jsgc.cpp:1268)
==5117== by 0x442641: js::NewDenseCopiedArray(JSContext*, unsigned int, JS::Value const*, JSObject*, js::NewObjectKind) (jsgcinlines.h:536)
==5117== by 0x72F099: js::ion::InitRestParameter(JSContext*, unsigned int, JS::Value*, JS::Handle<JSObject*>, JS::Handle<JSObject*>) (VMFunctions.cpp:706)
==5117== by 0x4028AAB: ???
==5117== by 0x4: ???
==5117== by 0x7FEFBCEC7: ???
==5117== Address 0xfff880000000000c is not stack'd, malloc'd or (recently) free'd
==5117==
==5117==
==5117== Process terminating with default action of signal 11 (SIGSEGV)
==5117== General Protection Fault
S-s due to possibly dangerous GC crash.
Crash Signature: [@ fetchNextFreeArena]
[@ js::gc::Chunk::allocateArena]
Keywords: crash
Whiteboard: [jsbugmon:update,bisect]
| Reporter | ||
Updated•12 years ago
|
Crash Signature: [@ fetchNextFreeArena]
[@ js::gc::Chunk::allocateArena] → [@ fetchNextFreeArena]
[@ js::gc::Chunk::allocateArena]
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
| Reporter | ||
Comment 3•12 years ago
|
||
JSBugMon: Bisection requested, result:
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 132612:b2216a10f95b
user: Shu-yu Guo
date: Tue May 21 23:52:45 2013 -0700
summary: Bug 867471 - Part 2: Compile rest parameter in Ion for sequential execution. (r=djvj)
This iteration took 13.006 seconds to run.
| Reporter | ||
Updated•12 years ago
|
Crash Signature: [@ fetchNextFreeArena]
[@ js::gc::Chunk::allocateArena] → [@ fetchNextFreeArena]
[@ js::gc::Chunk::allocateArena]
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 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
•