summaryrefslogtreecommitdiff
path: root/deps/v8/tools/profviz/profviz.html
blob: 30494f80fe1ab11f52dc455830c9a22e877be9bb (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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">
  
  <img src="" id="plot" type="image/svg+xml" class="display"
      width="1200" height="600" class="float-right"/>

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

  <table width="1200">
    <tr>
      <td width="330">
        <button id="start" onclick="start()">
          Start
        </button>
        <button id="reset" onclick="ui.reset(); worker.reset();">
          Reset
        </button>
        <button id="toggledisplay" onclick="ui.toggle();">
          Show profile
        </button>
      </td>
      <td width="220">
        <input type="file" id="file" onchange="ui.reset();"/>
      </td>
      <td width="300">
      <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>
      <td width="350">
        <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">
    <h1>
      <a href="javascript:ui.info('instructions');" class="unroll">
        Instructions
      </a>
    </h1>
    <div id="instructions">
    <ol>
      <li>
        Run V8 with
        <span class="tt">--prof --log-timer-events</span>,
        or alternatively,<br/>
        Chrome with
        <span class="tt">
          --no-sandbox --js-flags="--prof --noprof-lazy --log-timer-events
        </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>
        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.
      </li>
    </div>
  </div>

  <div class="text">
    <h1>
      <a href="javascript:ui.info('credits');" class="unroll">
        Credits
      </a>
    </h1>
    <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>