Closed
Bug 1154128
Opened 10 years ago
Closed 10 years ago
Deduplicate TrackedOptimization constants
Categories
(Core :: Gecko Profiler, defect)
Core
Gecko Profiler
Tracking
()
RESOLVED
DUPLICATE
of bug 1154115
People
(Reporter: shu, Unassigned)
Details
Attachments
(1 file)
11.48 KB,
patch
|
djvj
:
review+
|
Details | Diff | Splinter Review |
Deduplicate TrackedOptimization constants and put them in a side table. Instead of emitting
attempts: [ { strategy: "FOO", outcome: "BAR" } ]
emit
attempts: [0,0]
with a side table
optimizationConstants: {
strategies: [ "FOO" ],
outcomes: [ "BAR" ]
};
This reclaims a 5%. Not spectacular, but still worth it.
Reporter | ||
Comment 1•10 years ago
|
||
Attachment #8592030 -
Flags: review?(kvijayan)
Comment 2•10 years ago
|
||
Comment on attachment 8592030 [details] [diff] [review]
Deduplicate tracked optimization constants.
Review of attachment 8592030 [details] [diff] [review]:
-----------------------------------------------------------------
Looks reasonable.
Attachment #8592030 -
Flags: review?(kvijayan) → review+
Reporter | ||
Comment 3•10 years ago
|
||
Folding this into bug 1154115, which has become a rewrite and this part is not worth the time to separate out.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•