Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Side by Side Diff: tools/perf/measurements/page_cycler.py

Issue 239083010: Telemetry: adds CPU frequency stats. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/perf/metrics/cpu.py » ('j') | tools/perf/metrics/cpu.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """The page cycler measurement. 5 """The page cycler measurement.
6 6
7 This measurement registers a window load handler in which is forces a layout and 7 This measurement registers a window load handler in which is forces a layout and
8 then records the value of performance.now(). This call to now() measures the 8 then records the value of performance.now(). This call to now() measures the
9 time from navigationStart (immediately after the previous page's beforeunload 9 time from navigationStart (immediately after the previous page's beforeunload
10 event) until after the layout in the page's load event. In addition, two garbage 10 event) until after the layout in the page's load event. In addition, two garbage
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 # Avoid paying for a cross-renderer navigation on the first page on legacy 74 # Avoid paying for a cross-renderer navigation on the first page on legacy
75 # page cyclers which use the filesystem. 75 # page cyclers which use the filesystem.
76 tab.Navigate(tab.browser.http_server.UrlOf('nonexistent.html')) 76 tab.Navigate(tab.browser.http_server.UrlOf('nonexistent.html'))
77 77
78 def WillNavigateToPage(self, page, tab): 78 def WillNavigateToPage(self, page, tab):
79 page.script_to_evaluate_on_commit = self._page_cycler_js 79 page.script_to_evaluate_on_commit = self._page_cycler_js
80 if self.ShouldRunCold(page.url): 80 if self.ShouldRunCold(page.url):
81 tab.ClearCache(force=True) 81 tab.ClearCache(force=True)
82 if self._report_speed_index: 82 if self._report_speed_index:
83 self._speedindex_metric.Start(page, tab) 83 self._speedindex_metric.Start(page, tab)
84 self._cpu_metric.Start(page, tab)
84 85
85 def DidNavigateToPage(self, page, tab): 86 def DidNavigateToPage(self, page, tab):
86 self._memory_metric.Start(page, tab) 87 self._memory_metric.Start(page, tab)
87 self._power_metric.Start(page, tab) 88 self._power_metric.Start(page, tab)
88 # TODO(qyearsley): Uncomment the following line and move it to
89 # WillNavigateToPage once the cpu metric has been changed.
90 # This is being temporarily commented out to let the page cycler
91 # results return to how they were before the cpu metric was added.
92 # self._cpu_metric.Start(page, tab) See crbug.com/301714.
93 if self._record_v8_object_stats: 89 if self._record_v8_object_stats:
94 self._v8_object_stats_metric.Start(page, tab) 90 self._v8_object_stats_metric.Start(page, tab)
95 91
96 def CustomizeBrowserOptions(self, options): 92 def CustomizeBrowserOptions(self, options):
97 memory.MemoryMetric.CustomizeBrowserOptions(options) 93 memory.MemoryMetric.CustomizeBrowserOptions(options)
98 power.PowerMetric.CustomizeBrowserOptions(options) 94 power.PowerMetric.CustomizeBrowserOptions(options)
99 iometric.IOMetric.CustomizeBrowserOptions(options) 95 iometric.IOMetric.CustomizeBrowserOptions(options)
100 options.AppendExtraBrowserArgs('--js-flags=--expose_gc') 96 options.AppendExtraBrowserArgs('--js-flags=--expose_gc')
101 97
102 if self._record_v8_object_stats: 98 if self._record_v8_object_stats:
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 chart_name=chart_name_prefix+'times') 132 chart_name=chart_name_prefix+'times')
137 133
138 self._has_loaded_page[page.url] += 1 134 self._has_loaded_page[page.url] += 1
139 135
140 self._power_metric.Stop(page, tab) 136 self._power_metric.Stop(page, tab)
141 self._memory_metric.Stop(page, tab) 137 self._memory_metric.Stop(page, tab)
142 self._memory_metric.AddResults(tab, results) 138 self._memory_metric.AddResults(tab, results)
143 self._power_metric.AddResults(tab, results) 139 self._power_metric.AddResults(tab, results)
144 140
145 # TODO(qyearsley): Uncomment the following line when CPU metric is 141 # TODO(qyearsley): Uncomment the following line when CPU metric is
146 # changed. See crbug.com/301714. 142 # changed. See crbug.com/301714.
qyearsley 2014/04/22 18:22:26 This TODO comment can be removed as well, right?
bulach 2014/04/22 18:34:50 this patch is not yet ready to land :) I'll merge
147 # self._cpu_metric.Stop(page, tab) 143 self._cpu_metric.Stop(page, tab)
148 # self._cpu_metric.AddResults(tab, results) 144 self._cpu_metric.AddResults(tab, results)
149 if self._record_v8_object_stats: 145 if self._record_v8_object_stats:
150 self._v8_object_stats_metric.Stop(page, tab) 146 self._v8_object_stats_metric.Stop(page, tab)
151 self._v8_object_stats_metric.AddResults(tab, results) 147 self._v8_object_stats_metric.AddResults(tab, results)
152 148
153 if self._report_speed_index: 149 if self._report_speed_index:
154 def SpeedIndexIsFinished(): 150 def SpeedIndexIsFinished():
155 return self._speedindex_metric.IsFinished(tab) 151 return self._speedindex_metric.IsFinished(tab)
156 util.WaitFor(SpeedIndexIsFinished, 60) 152 util.WaitFor(SpeedIndexIsFinished, 60)
157 self._speedindex_metric.Stop(page, tab) 153 self._speedindex_metric.Stop(page, tab)
158 self._speedindex_metric.AddResults( 154 self._speedindex_metric.AddResults(
(...skipping 11 matching lines...) Expand all
170 # preserve any initial profile cache for as long as possible. 166 # preserve any initial profile cache for as long as possible.
171 # The second is that, if we did cold runs first, we'd have a transition 167 # The second is that, if we did cold runs first, we'd have a transition
172 # page set during which we wanted the run for each URL to both 168 # page set during which we wanted the run for each URL to both
173 # contribute to the cold data and warm the catch for the following 169 # contribute to the cold data and warm the catch for the following
174 # warm run, and clearing the cache before the load of the following 170 # warm run, and clearing the cache before the load of the following
175 # URL would eliminate the intended warmup for the previous URL. 171 # URL would eliminate the intended warmup for the previous URL.
176 return (self._has_loaded_page[url] >= self._cold_run_start_index) 172 return (self._has_loaded_page[url] >= self._cold_run_start_index)
177 173
178 def results_are_the_same_on_every_page(self): 174 def results_are_the_same_on_every_page(self):
179 return False 175 return False
OLDNEW
« no previous file with comments | « no previous file | tools/perf/metrics/cpu.py » ('j') | tools/perf/metrics/cpu.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698