Closed
Bug 1206265
Opened 10 years ago
Closed 10 years ago
Differential Testing: Different output message involving --unboxed-arrays
Categories
(Core :: JavaScript Engine: JIT, defect)
Core
JavaScript Engine: JIT
Tracking
()
RESOLVED
FIXED
mozilla43
Tracking | Status | |
---|---|---|
firefox43 | --- | fixed |
People
(Reporter: gkw, Assigned: bhackett1024)
References
Details
(Keywords: regression, testcase)
Attachments
(1 file)
1.73 KB,
patch
|
jandem
:
review+
|
Details | Diff | Splinter Review |
x = [
objectEmulatingUndefined(),
function() {}
];
x.forEach(function() {});
x.sort(function() {});
print(uneval(this.x));
$ ./js-dbg-64-dm-nsprBuild-darwin-de0e763b5210 --fuzzing-safe --no-threads --ion-eager testcase.js
[{}, (function () {})]
$ ./js-dbg-64-dm-nsprBuild-darwin-de0e763b5210 --fuzzing-safe --no-threads --ion-eager --unboxed-arrays testcase.js
[(function () {}), (function () {})]
Tested this on m-c rev de0e763b5210.
My configure flags are:
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 de0e763b5210
autoBisect is running, but since --unboxed-arrays seem to be involved here, setting needinfo? from Brian.
Flags: needinfo?(bhackett1024)
![]() |
Reporter | |
Comment 1•10 years ago
|
||
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: https://hg.mozilla.org/mozilla-central/rev/1410ca139039
user: Brian Hackett
date: Tue May 19 07:57:41 2015 -0600
summary: Bug 1163091 - Handle unboxed arrays in jsarray.cpp fast paths, r=jandem.
Brian, is bug 1163091 a likely regressor?
Blocks: 1163091
Assignee | ||
Comment 2•10 years ago
|
||
Assignee: nobody → bhackett1024
Flags: needinfo?(bhackett1024)
Attachment #8663307 -
Flags: review?(jdemooij)
Updated•10 years ago
|
Attachment #8663307 -
Flags: review?(jdemooij) → review+
Comment 4•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla43
You need to log in
before you can comment on or make changes to this bug.
Description
•