Changes between Version 3 and Version 4 of Performance Tests


Ignore:
Timestamp:
Dec 17, 2012 11:38:01 AM (11 years ago)
Author:
eric@webkit.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Performance Tests

    v3 v4  
    200200
    201201For more in-depth analysis, all profilers print instructions after profiling as to how to explore the full sample data, as shown above.
     202
     203== Adding support for a new profiler==
     204
     205{{{run-perf-tests --profile --profiler=PROFILER}}} uses Profilers provided by [http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/system/profiler.py webkitpy.common.system.profiler], except for {{{perf}}} on Android which is currently implemented in [http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py chromium_android.py].  Profilers should conform to the {{{Profiler}}} class interface, and {{{ProfilerFactory}}} needs to know how to create one.  All of this is defined in profiler.py.   If you have any trouble, email eric@webkit.