Closed
Bug 857846
Opened 13 years ago
Closed 13 years ago
Assertion failure: args[idxi].isInt32(), at vm/SelfHosting.cpp:366
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla23
People
(Reporter: decoder, Assigned: shu)
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:update])
Attachments
(1 file)
|
4.08 KB,
patch
|
nmatsakis
:
review+
|
Details | Diff | Splinter Review |
The following testcase asserts on mozilla-central revision 97cfc16ba5dc (no options required):
x = 0;
(x /= -9)
var len = 1024;
function add1(x) { return x+1; }
function id() { return x; }
var p = new ParallelArray(len, add1);
var revidx = build(len, id).reverse();
var r = p.scatter(revidx, 0, undefined, len, {});
function build(n, f) {
var result = [];
result.push(f(0));
return result;
}
Comment 1•13 years ago
|
||
CC-ing Shu and Niko, as I'd bet considerable amounts on one of them ending up fixing this.
| Reporter | ||
Comment 2•13 years ago
|
||
Thanks, you were faster than me :D
Whiteboard: [jsbugmon:update,bisect]
| Assignee | ||
Comment 3•13 years ago
|
||
-0 | 0 === 0, but -0 isn't an int32.
Assignee: general → shu
Attachment #733155 -
Flags: review?(nmatsakis)
| Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
| Reporter | ||
Comment 4•13 years ago
|
||
JSBugMon: Bisection requested, result:
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 125555:b00eb1ef1517
user: Nicholas D. Matsakis
date: Tue Mar 19 22:12:27 2013 -0400
summary: Bug 829602 - Enable self-hosted parallelarray r=dvander,till
This iteration took 0.988 seconds to run.
Comment 5•13 years ago
|
||
Comment on attachment 733155 [details] [diff] [review]
fix
Review of attachment 733155 [details] [diff] [review]:
-----------------------------------------------------------------
Good catch, but I'm not sure if this is the right way to handle the situation. It seems mildly inconsistent with arrays. For example:
[22, 23, 24][-0] === 22
whereas your change will throw an error. Also, whatever we decide, I imagine we'll need similar changes to all the places in ParallelArray where we check for integer-ness.
Giving r- for now until we settle on the path.
Attachment #733155 -
Flags: review?(nmatsakis) → review-
Updated•13 years ago
|
Attachment #733155 -
Flags: review- → review+
Comment 6•13 years ago
|
||
Never mind, in my previous comments I misinterpreted the patch. It is in fact doing what I think we should be doing.
| Assignee | ||
Comment 7•13 years ago
|
||
Comment 8•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla23
You need to log in
before you can comment on or make changes to this bug.
Description
•