Closed
Bug 1204722
Opened 9 years ago
Closed 9 years ago
Assertion failure: isObjectOrNull(), at dist/include/js/Value.h
Categories
(Core :: JavaScript Engine: JIT, defect)
Tracking
()
RESOLVED
FIXED
mozilla44
People
(Reporter: gkw, Assigned: bhackett1024)
References
Details
(Keywords: assertion, regression, testcase, Whiteboard: [jsbugmon:])
Attachments
(2 files)
6.28 KB,
text/plain
|
Details | |
2.56 KB,
patch
|
jandem
:
review+
|
Details | Diff | Splinter Review |
x = [1e81];
x.map(function() {});
x.pop();
x.push([]);
[].map(function() {});
eval("[1/0]");
asserts js debug shell on m-c changeset fba4b0cd3823 with --fuzzing-safe --no-threads --ion-eager --unboxed-arrays --ion-osr=off at Assertion failure: isObjectOrNull(), at dist/include/js/Value.h
Configure options:
CC="clang -Qunused-arguments" CXX="clang++ -Qunused-arguments" AR=ar AUTOCONF=/usr/local/Cellar/autoconf213/2.13/bin/autoconf213 sh /Users/skywalker/trees/mozilla-central/js/src/configure --target=x86_64-apple-darwin12.5.0 --enable-debug --enable-nspr-build --enable-more-deterministic --with-ccache --enable-gczeal --enable-debug-symbols --disable-tests
python -u ~/funfuzz/js/compileShell.py -b "--enable-debug --enable-more-deterministic --enable-nspr-build" -r fba4b0cd3823
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: https://hg.mozilla.org/mozilla-central/rev/3a994e364343
user: Brian Hackett
date: Sat Jun 13 07:54:06 2015 -0700
summary: Bug 1172943 - Use unboxed arrays for JSON and script literal arrays, r=jandem.
Brian, is bug 1172943 a likely regressor?
Flags: needinfo?(bhackett1024)
Reporter | ||
Comment 1•9 years ago
|
||
(lldb) bt 5
* thread #1: tid = 0x5de61e, 0x000000010001e066 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`JS::Value::toObjectOrNull(this=<unavailable>) const + 182 at Value.h:1242, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x0)
* frame #0: 0x000000010001e066 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`JS::Value::toObjectOrNull(this=<unavailable>) const + 182 at Value.h:1242
frame #1: 0x00000001003ada28 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`js::SetUnboxedValueNoTypeChange(unboxedObject=0x000000010435f080, p=0x000000010435f098, type=<unavailable>, v=0x00007fff5fbfc060, preBarrier=false) + 296 at UnboxedObject-inl.h:82
frame #2: 0x00000001003e3161 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`js::DenseElementResult SetOrExtendBoxedOrUnboxedDenseElementsFunctor::operator()<(JSValueType)8>() + 353 at UnboxedObject-inl.h:518
frame #3: 0x00000001003e3000 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`js::DenseElementResult SetOrExtendBoxedOrUnboxedDenseElementsFunctor::operator(this=<unavailable>)<(JSValueType)8>() + 112 at UnboxedObject.cpp:2086
frame #4: 0x00000001003d4927 js-dbg-64-dm-nsprBuild-darwin-fba4b0cd3823`js::DenseElementResult js::CallBoxedOrUnboxedSpecialization<SetOrExtendBoxedOrUnboxedDenseElementsFunctor>(f=SetOrExtendBoxedOrUnboxedDenseElementsFunctor at 0x00007fff5fbfbd30, obj=<unavailable>) + 183 at UnboxedObject-inl.h:652
(lldb)
Updated•9 years ago
|
Whiteboard: [jsbugmon:update] → [jsbugmon:]
Comment 2•9 years ago
|
||
JSBugMon: Cannot process bug: Unable to automatically reproduce, please track manually.
Assignee | ||
Comment 3•9 years ago
|
||
When creating new literal arrays we know the type of the element is already reflected in type information, but need to perform additional checks to make sure we can fill in a new unboxed array without testing the values being set.
Assignee: nobody → bhackett1024
Flags: needinfo?(bhackett1024)
Attachment #8663328 -
Flags: review?(jdemooij)
Comment 5•9 years ago
|
||
Comment on attachment 8663328 [details] [diff] [review]
patch
Review of attachment 8663328 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/vm/ObjectGroup.cpp
@@ +891,5 @@
> + if (elementType != TypeSet::StringType())
> + updateTypes = ShouldUpdateTypes::Update;
> + break;
> + case JSVAL_TYPE_OBJECT:
> + if (!elementType.get().isObjectUnchecked())
Should we also check for NullType here?
Attachment #8663328 -
Flags: review?(jdemooij) → review+
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox44:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla44
You need to log in
before you can comment on or make changes to this bug.
Description
•