Closed
Bug 691603
Opened 13 years ago
Closed 13 years ago
IM: Assertion failure: GlobalIonContext, at ion/Ion.cpp:126
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Assigned: dvander)
References
Details
(Keywords: assertion, testcase)
Attachments
(1 file)
(deleted),
patch
|
cdleary
:
review+
|
Details | Diff | Splinter Review |
The following testcase asserts on ionmonkey revision acf3c1fb7c94 (run with --ion-eager), tested on 64 bit:
function bitsinbyte(b) {
while(m<0x100) { }
}
function TimeFunc(func) {
for(var y=0; y<256; y++) func(y);
}
function nestedExit2() {
TimeFunc(bitsinbyte);
}
assertEq(nestedExit2(), "ok");
Assignee | ||
Comment 1•13 years ago
|
||
Another test failure.
Updated•13 years ago
|
Attachment #566328 -
Flags: review?(cdleary) → review+
Comment 2•13 years ago
|
||
dvander explained that it was the bailout thunk-to-interpreter that was handling the false value returned from the interpreter and thus was calling into js::ion::HandleException.
Assignee | ||
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 5•12 years ago
|
||
A testcase for this bug was automatically identified at js/src/jit-test/tests/ion/bug691603.js.
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•