Don't abort with "NYI: arguments & setarg."
Categories
(Core :: JavaScript Engine: JIT, defect, P3)
Tracking
()
Tracking | Status | |
---|---|---|
firefox75 | --- | fixed |
People
(Reporter: anba, Assigned: anba)
References
Details
Attachments
(3 files)
Comment 1•8 years ago
|
||
Updated•8 years ago
|
Assignee | ||
Updated•5 years ago
|
Assignee | ||
Comment 2•5 years ago
|
||
Looks like a ~40% improvement on ARES-6/ml when this gets fixed. Sigh.
Assignee | ||
Comment 3•5 years ago
|
||
When the arguments object is unmapped, JSOp::SetArg can directly write to the
arguments slot, because we don't need to synchronise it with the arguments
object.
Assignee | ||
Comment 4•5 years ago
|
||
This change just moves the point where we decide if parameter modification
combined with an unmapped arguments object requires to eagerly create an
arguments object. It shouldn't result in any change of behaviour.
Depends on D64574
Assignee | ||
Comment 5•5 years ago
|
||
When the script contains JSOp::SetArg
and uses unmapped arguments objects, we
can still omit creating the arguments object as long as the arguments contents
are never observed.
Depends on D64575
Comment 7•5 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/ddd4454e71c0
https://hg.mozilla.org/mozilla-central/rev/6a01bbfc11f7
https://hg.mozilla.org/mozilla-central/rev/098eb676052f
Comment 8•5 years ago
|
||
== Change summary for alert #25248 (as of Sun, 01 Mar 2020 21:04:12 GMT) ==
Improvements:
13% raptor-ares6-firefox macosx1014-64-shippable opt 69.99 -> 61.13
10% raptor-ares6-firefox linux64-shippable-qr opt 55.15 -> 49.58
9% raptor-ares6-firefox windows7-32-shippable opt 57.60 -> 52.27
9% raptor-ares6-firefox windows10-64-shippable opt 57.98 -> 52.82
9% raptor-ares6-firefox linux64-shippable opt 54.17 -> 49.48
8% raptor-ares6-firefox windows10-64-shippable-qr opt 57.55 -> 52.78
8% raptor-ares6-firefox windows7-32-shippable opt 57.49 -> 52.76
For up to date results, see: https://treeherder.mozilla.org/perf.html#/alerts?id=25248
Comment 9•5 years ago
|
||
== Change summary for alert #25251 (as of Mon, 02 Mar 2020 10:52:31 GMT) ==
Improvements:
13% raptor-ares6-firefox windows10-64 opt 64.94 -> 56.25
12% raptor-ares6-firefox windows10-64-qr opt 64.15 -> 56.17
11% raptor-ares6-firefox linux64 opt 57.97 -> 51.74
10% raptor-ares6-firefox linux64-qr opt 57.68 -> 51.81
10% raptor-ares6-firefox windows10-64-shippable-qr opt 57.46 -> 51.67
10% raptor-ares6-firefox macosx1014-64-shippable opt 69.66 -> 62.70
10% raptor-ares6-firefox linux64-shippable opt 54.75 -> 49.28
10% raptor-ares6-firefox windows7-32-shippable opt 57.81 -> 52.17
10% raptor-ares6-firefox windows7-32 opt 63.29 -> 57.20
10% raptor-ares6-firefox linux64-shippable-qr opt 54.39 -> 49.19
9% raptor-ares6-firefox linux64-shippable opt 54.54 -> 49.74
For up to date results, see: https://treeherder.mozilla.org/perf.html#/alerts?id=25251
Description
•