2020-06-29 19:21:56 +00:00
|
|
|
<!-- Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
|
|
found in the LICENSE file. -->
|
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
<head>
|
|
|
|
<link href="./index.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<style>
|
|
|
|
.count {
|
|
|
|
text-align: right;
|
|
|
|
width: 5em;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
.percentage {
|
|
|
|
text-align: right;
|
|
|
|
width: 5em;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
.key {
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
.drilldown-group-title {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0.5em 0 0.2em 0;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
.details {
|
|
|
|
width: 0.1em;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
.details span {
|
|
|
|
padding: 0 0.4em 0 0.4em;
|
|
|
|
background-color: var(--on-surface-color);
|
|
|
|
color: var(--surface-color);
|
|
|
|
border-radius: 25px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: -webkit-zoom-in;
|
|
|
|
}
|
2020-08-13 12:55:19 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
#legend {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
2020-08-13 12:55:19 +00:00
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
dl {
|
|
|
|
float: right;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
</style>
|
2020-07-13 18:02:52 +00:00
|
|
|
<div class="panel">
|
|
|
|
<h2>IC Panel</h2>
|
|
|
|
<div id="legend">
|
2020-08-13 12:55:19 +00:00
|
|
|
<dl>
|
2020-07-16 15:37:20 +00:00
|
|
|
<dt>0</dt>
|
|
|
|
<dd>uninitialized</dd>
|
|
|
|
<dt>X</dt>
|
|
|
|
<dd>no feedback</dd>
|
|
|
|
<dt>1</dt>
|
|
|
|
<dd>monomorphic</dd>
|
|
|
|
<dt>^</dt>
|
|
|
|
<dd>recompute handler</dd>
|
|
|
|
<dt>P</dt>
|
|
|
|
<dd>polymorphic</dd>
|
|
|
|
<dt>N</dt>
|
|
|
|
<dd>megamorphic</dd>
|
|
|
|
<dt>G</dt>
|
|
|
|
<dd>generic</dd>
|
|
|
|
</dl>
|
2020-07-13 18:02:52 +00:00
|
|
|
</div>
|
|
|
|
<h3>Data</h3>
|
|
|
|
<p>Trace Count: <span id="count">0</span></p>
|
2020-08-25 06:31:43 +00:00
|
|
|
<h3>Result</h3>
|
|
|
|
<p>
|
2020-07-14 12:18:25 +00:00
|
|
|
Group-Key:
|
|
|
|
<select id="group-key"></select>
|
2020-08-25 06:31:43 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2020-07-14 12:18:25 +00:00
|
|
|
Filter by Time
|
2020-08-13 12:55:19 +00:00
|
|
|
<input type="search" id="filter-time-start" placeholder="start"></input> :
|
2020-08-25 06:31:43 +00:00
|
|
|
<input type="search" id="filter-time-end" placeholder="end"></input>
|
2020-07-14 12:18:25 +00:00
|
|
|
<button id="filterICTimeBtn">Filter</button>
|
2020-08-25 06:31:43 +00:00
|
|
|
<p>
|
|
|
|
<table id="table" width="100%">
|
|
|
|
<tbody id="table-body">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</p>
|
2020-06-29 19:21:56 +00:00
|
|
|
</div>
|