profviz.html 5.22 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
<!DOCTYPE html>
<!-- Copyright 2013 the V8 project authors. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.
    * Neither the name of Google Inc. nor the names of its
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -->

<html lang="en-us">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>V8 profile log plotter</title>
  <link rel="stylesheet" type="text/css" href="profviz.css">
  <script src="profviz.js"></script>
</head>

<body onload="onload()">
  <div id="content">
  
39
  <img src="" id="plot" type="image/svg+xml" class="display"
40
      width="1200" height="600" class="float-right"/>
41 42

  <textarea id="prof" class="display" disabled=true></textarea>
43 44
  <br/>

45
  <table width="1200">
46
    <tr>
47 48 49
      <td width="330">
        <button id="start" onclick="start()">
          Start
50
        </button>
51
        <button id="reset" onclick="ui.reset(); worker.reset();">
52 53
          Reset
        </button>
54 55 56
        <button id="toggledisplay" onclick="ui.toggle();">
          Show profile
        </button>
57
      </td>
58
      <td width="220">
59 60
        <input type="file" id="file" onchange="ui.reset();"/>
      </td>
61
      <td width="300">
62 63 64 65 66 67 68 69
      <label title="You can manually choose the range
to plot only part of the log file.">
        <span class="tooltip">Range</span>:
      </label>
      <input type="text" id="range_start" class="range"/>
      <label>to</label>
      <input type="text" id="range_end" class="range"/>
      </td>
70
      <td width="350">
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        <label title="We model profiling overhead by accounting a constant
execution delay to each log entry. Adjust to better suit
your computer's performance.">
          <span class="tooltip">Delay per log entry</span>:
        </label>
        <input type="text" id="distortion" class="range" value="4500"/>
        <label>picoseconds</label>
      </td>
    </tr>
  </table>

  <br/>
  <textarea class="log" id="log" rows="8" disabled=true></textarea>

  <div class="text">
86 87 88 89 90
    <h1>
      <a href="javascript:ui.info('instructions');" class="unroll">
        Instructions
      </a>
    </h1>
91 92 93 94 95 96 97 98
    <div id="instructions">
    <ol>
      <li>
        Run V8 with
        <span class="tt">--prof --log-timer-events</span>,
        or alternatively,<br/>
        Chrome with
        <span class="tt">
99
          --no-sandbox --js-flags="--prof --log-timer-events"
100 101 102 103 104 105 106 107
        </span> to produce <span class="tt">v8.log</span>.
      </li>
      <li>
        Open
        <span class="tt">v8.log</span>
        on this page. Don't worry, it won't be uploaded anywhere.
      </li>
      <li>
108 109 110 111 112 113 114 115 116 117 118
        Click "Start" to start number crunching. This will take a while.
      </li>
      <li>
        Click "Show plot/profile" to switch between the statistical profile and
        the timeline plot.<br/>
        C++ items are missing in the statistical profile because symbol
        information is not available.<br>
        Consider using the
        <a href="https://code.google.com/p/v8/wiki/V8Profiler">
          command-line utility
        </a> instead.
119
      </li>
120 121 122 123 124
    </ol>
    If you expect multiple V8 instances to run concurrently, for example
    with several tabs in Chrome,<br/>
    add the V8 flag <span class="tt">--logfile=v8.%p.log</span>
    so that each instance writes to its own log file.
125 126 127 128
    </div>
  </div>

  <div class="text">
129 130 131 132 133
    <h1>
      <a href="javascript:ui.info('credits');" class="unroll">
        Credits
      </a>
    </h1>
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    <div id="credits">
    <ul>
      <li>
        Christian Huettig for the
        <a href="http://gnuplot.respawned.com/">Javascript port</a>
        of Gnuplot 4.6.3.
      </li>
      <li>
        The
        <a href="https://github.com/kripken/emscripten">Emscripten compiler</a>
        that made the port possible.
      </li>
      <li>
        The <a href="http://www.gnuplot.info/">Gnuplot project</a>.
      </li>
      <li>
        The <a href="https://developers.google.com/v8/">V8 project</a>.
      </li>
    </ul>
    </div>
  </div>

</div>
</body>
</html>