Closed
Bug 756094
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: defdata->classPrev == __null, at ion/ValueNumbering.cpp:464
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Assigned: rpearl)
References
Details
Attachments
(1 file, 2 obsolete files)
(deleted),
patch
|
mjrosenb
:
review+
|
Details | Diff | Splinter Review |
The following testcase asserts on revision 8958cc186a4f, 32-bit and 64-bit, with and without --ion-eager.
Marty, I got this assert a lot with chunked compilation, I hope it's the same issue.
function f() {
for (var i=0; i<100; i++) {
var x, y, z;
y = null;
for (var j=0; j<100; j++) {
String();
for(var l in []) { }
}
}
}
f();
Updated•13 years ago
|
Assignee: general → kvijayan
Assignee | ||
Comment 1•13 years ago
|
||
Sorry to take your bug, but I was staring this because I was bored. I am pretty sure that the attached fixes the bug, but it would be good if you could convince me that my reasoning is correct. We just need to re-lookup the value number if |breakClass(ins)| changes it, and add it otherwise. Luckily, there is already a hashtable method to do this!
Assignee: kvijayan → rpearl
Attachment #625341 -
Flags: review?(kvijayan)
Assignee | ||
Comment 2•13 years ago
|
||
Hmm, I am actually a little dubious of my fix. I think it works still, but I suspect it is fixing a symptom, rather than the underlying problem. I believe that the main problem is that we are selecting an incorrect new representative--one that is actually still congruent to the evicted representative.
I believe it is the case that we should select the representative that causes needSplit() to return true. I have a patch for this, but it does a lot of crappy linked list manipulations. I'll clean it up and post it later.
No longer blocks: IonFuzz
Comment 3•13 years ago
|
||
I think your take on the last comment is correct. The real problem is that an incorrect representative is being picked. I think your patch probably will show correct behaviour, though. Here's what'll happen:
1. The next member in the class will get picked, even if it's in the same class as the head of the class.
2. It'll be entered into the hashtable as the new head.
3. The relookupOrAdd will put the original head on the tail of the class list.
The next member will be marked for processing, so it'll get hit at some point and likewise migrate to the tail of its own list, picking a new representative - until any same-class members on the head of the list are exhausted, at which point the class will split.
I don't think the patch is incorrect behaviour, but it is a bit roundabout and it seems to add potential for a quadratic runtime as we iterate through the list multiple times (e.g. a case where the all but the last element of the list migrate to the same new class, and we process the members in order).
This was my approach to fixing it: basically modifying breakClass to iterate through the head of the list, manually migrating the heads of the list to the new class, until a proper new representative member shows up.
Lemme know what you think.
Attachment #626017 -
Flags: review?(rpearl)
Updated•13 years ago
|
Attachment #625341 -
Flags: review?(kvijayan)
Assignee | ||
Comment 4•13 years ago
|
||
Okay, after discussing it on IRC, djvj and I think this is the right approach: break the class into two lists--the prefix is still congruent to the old canonical element--and then split off everything after the first non-congruent element, call it |newRep| into its own list with |newRep| as the canonical element.
I think it's right but please review carefully since linked list code is generally annoying. Also, since I haven't made IM commits in a while... the test suite needs to be run and I don't know how to do that. I think we have some sort of test bot these days?
Attachment #625341 -
Attachment is obsolete: true
Attachment #626017 -
Attachment is obsolete: true
Attachment #626017 -
Flags: review?(rpearl)
Attachment #626080 -
Flags: review?(mrosenberg)
Comment 5•13 years ago
|
||
FYI on the testing: I ran a build against jstests on OSX 64-bit and it seems to come up with no regressions.
Comment 6•13 years ago
|
||
Comment on attachment 626080 [details] [diff] [review]
Alternative approach, take 2
Review of attachment 626080 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/ion/ValueNumbering.cpp
@@ +479,5 @@
> + // |newdata| to a new list, with |defdata| still as the canonical
> + // element.
> + //
> + // We then want to take |newdata| and everything after, and
> + // mark them for processing (since |newdata| is now a new canonical
I can't think of any reasons that we'd ever see this, or it would affect correctness, but it is not the case that everything after |newdata| should be in the congruence class for |newdata|. Some of them may still be congruent to the old class.
Attachment #626080 -
Flags: review?(mrosenberg) → review+
Updated•13 years ago
|
Keywords: checkin-needed
Assignee | ||
Comment 7•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 8•13 years ago
|
||
Addendum to address mjrosenb's comment on the review: the bug is that we select an incorrect representative. Identical behavior would happen if we just moved newRep to the front of the list and marked the whole thing for processing, but this way is no more complex and saves a bit of time, since we already did a search (in |needsSplit()| / now |findSplit()|) to find out which def isn't congruent any more.
Updated•13 years ago
|
Keywords: checkin-needed
You need to log in
before you can comment on or make changes to this bug.
Description
•