Closed
Bug 756243
Opened 12 years ago
Closed 12 years ago
IonMonkey: Assertion failure: kind == GetGCThingTraceKind(*thingp), at gc/Marking.cpp:231
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
Tracking | Status | |
---|---|---|
firefox-esr10 | --- | unaffected |
People
(Reporter: decoder, Assigned: dvander)
References
Details
(Keywords: assertion, sec-high, testcase, Whiteboard: [jsbugmon:update])
Attachments
(1 file, 1 obsolete file)
(deleted),
patch
|
nbp
:
review+
|
Details | Diff | Splinter Review |
The following testcase asserts on ionmonkey revision 14735b4dbccc (run with --ion -n -m):
function enterFunc (funcName)
funcName += "()";
var lfcode = new Array();
gczeal(2);
evaluate("test();\
function test() {\
enterFunc ('test');\
(new test('(a(b(c)))(d(e(f)))\\\\2\\\\5'));\
}\
");
Assignee | ||
Updated•12 years ago
|
Hardware: x86 → x86_64
Assignee | ||
Updated•12 years ago
|
Assignee: general → dvander
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•12 years ago
|
||
This is some kind of horrible bug involving invalidation, gc - we're restoring a value to the interpreter stack which has been freed. Investigating.
Assignee | ||
Comment 2•12 years ago
|
||
Another simple off-by-N bug.
Attachment #624917 -
Flags: review?(nicolas.b.pierron)
Assignee | ||
Comment 3•12 years ago
|
||
Attachment #624917 -
Attachment is obsolete: true
Attachment #624917 -
Flags: review?(nicolas.b.pierron)
Attachment #624958 -
Flags: review?(nicolas.b.pierron)
Comment 4•12 years ago
|
||
Comment on attachment 624958 [details] [diff] [review]
better fix
Review of attachment 624958 [details] [diff] [review]:
-----------------------------------------------------------------
Good, would be better if you can define
JSFunction *fun = maybeCalleeTokenToFunction(layout->calleeToken());
Attachment #624958 -
Flags: review?(nicolas.b.pierron) → review+
Assignee | ||
Comment 5•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 6•12 years ago
|
||
JSBugMon: This bug has been automatically verified fixed.
Reporter | ||
Updated•12 years ago
|
Status: RESOLVED → VERIFIED
Updated•12 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•