Closed
Bug 807035
Opened 13 years ago
Closed 13 years ago
IonMonkey: "Assertion failure: pobj,"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla19
People
(Reporter: gkw, Assigned: nbp)
References
Details
(Keywords: assertion, regression, testcase, Whiteboard: [jsbugmon:update])
Attachments
(2 files)
|
7.68 KB,
text/plain
|
Details | |
|
1.63 KB,
patch
|
nbp
:
review+
|
Details | Diff | Splinter Review |
x = [0, 0, 0, 0, 0, 0, 0, 0]
y = ({}).__proto__
x.sort(function() {
y.z
})
asserts js debug shell on m-c changeset a2a201dd7a85 with --no-jm at Assertion failure: pobj, and Ion seems to be on the stack so may be related to IonMonkey.
autoBisect is underway.
| Reporter | ||
Comment 1•13 years ago
|
||
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 111708:4a2c17905a17
user: Nicolas B. Pierron
date: Mon Oct 29 14:48:45 2012 -0700
summary: Bug 792631 - Add IC for missing properties. r=dvander
Blocks: 792631
| Assignee | ||
Updated•13 years ago
|
Assignee: general → nicolas.b.pierron
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•13 years ago
|
||
Do not try to add any guard if there is not prototype chain. This is similar to what I can find in the PolyIC code of JM.
| Assignee | ||
Comment 5•13 years ago
|
||
Same patch, not private anymore (keep review from dvander).
Do not walk the proto-chain if there is none, the object shape should still be guarded before we check the proto-chain, so this is fine to replace this assertion by an early-exit of this function. As mentioned before JM does the same thing in the PolyIC.
Attachment #677209 -
Flags: review+
| Assignee | ||
Comment 6•13 years ago
|
||
Comment 7•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla19
Comment 8•13 years ago
|
||
A testcase for this bug was automatically identified at js/src/jit-test/tests/ion/bug807035.js.
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•