Closed
Bug 1500194
Opened 6 years ago
Closed 4 years ago
Use IC counters to highlight underperforming IC chains
Categories
(Core :: JavaScript Engine: JIT, enhancement, P3)
Core
JavaScript Engine: JIT
Tracking
()
RESOLVED
DUPLICATE
of bug 1640284
Tracking | Status | |
---|---|---|
firefox64 | --- | affected |
People
(Reporter: mgaudet, Unassigned)
References
Details
In Bug 1494473 counters on the IC chain are being added.
We should have a spew mode that highlights cases where the IC chain appears to be underperforming.
This will be chains where the entry count at the fallback is approximately the entry count of each element on the chain. For example:
1005 -> 1004 -> 1003 -> 1002 -> 1001 -> (fb) 1000
Would be a chain where every IC has failed every time, leading to the creation of five stubs that never provide any value.
Reporter | ||
Comment 1•6 years ago
|
||
Whoops. This is why you don't whip up examples willy nilly. Got the chain backwards:
1000 -> 1001 -> 1002 -> 1003 -> 1004 -> (fb) 1005
Reporter | ||
Updated•4 years ago
|
Status: NEW → RESOLVED
Closed: 4 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•