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. -->
|
|
|
|
<style>
|
2020-07-13 18:02:52 +00:00
|
|
|
@import "./index.css";
|
2020-06-29 19:21:56 +00:00
|
|
|
|
|
|
|
.count {
|
2020-07-07 12:30:13 +00:00
|
|
|
text-align: right;
|
|
|
|
width: 5em;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.percentage {
|
2020-07-07 12:30:13 +00:00
|
|
|
text-align: right;
|
|
|
|
width: 5em;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.key {
|
2020-07-07 12:30:13 +00:00
|
|
|
padding-left: 1em;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.drilldown-group-title {
|
2020-07-07 12:30:13 +00:00
|
|
|
font-weight: bold;
|
|
|
|
padding: 0.5em 0 0.2em 0;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
.entry-details {
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-details TD {
|
|
|
|
}
|
|
|
|
|
|
|
|
.details {
|
2020-07-07 12:30:13 +00:00
|
|
|
width: 0.1em;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details span {
|
2020-07-07 12:30:13 +00:00
|
|
|
padding: 0 0.4em 0 0.4em;
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--on-surface-color);
|
|
|
|
color: var(--surface-color);
|
2020-07-07 12:30:13 +00:00
|
|
|
border-radius: 25px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: -webkit-zoom-in;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#legend {
|
2020-07-07 12:30:13 +00:00
|
|
|
padding-right: 20px;
|
2020-06-29 19:21:56 +00:00
|
|
|
}
|
2020-07-14 12:18:25 +00:00
|
|
|
|
2020-06-29 19:21:56 +00:00
|
|
|
</style>
|
2020-07-13 18:02:52 +00:00
|
|
|
<div class="panel">
|
|
|
|
<h2>IC Panel</h2>
|
|
|
|
<h3>IC Explorer</h3>
|
|
|
|
<div id="legend">
|
|
|
|
<div style="float:right; border-style: solid; border-width: 1px; padding:20px">
|
|
|
|
0 uninitialized<br>
|
|
|
|
X no feedback<br>
|
|
|
|
1 monomorphic<br>
|
|
|
|
^ recompute handler<br>
|
|
|
|
P polymorphic<br>
|
|
|
|
N megamorphic<br>
|
|
|
|
G generic
|
2020-07-07 12:30:13 +00:00
|
|
|
</div>
|
2020-07-13 18:02:52 +00:00
|
|
|
</div>
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-07-13 18:02:52 +00:00
|
|
|
<h3>Data</h3>
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-07-13 18:02:52 +00:00
|
|
|
<p>Trace Count: <span id="count">0</span></p>
|
2020-06-29 19:21:56 +00:00
|
|
|
|
2020-07-14 12:18:25 +00:00
|
|
|
<h3>Result</h3>
|
|
|
|
<p>
|
|
|
|
Group-Key:
|
|
|
|
<select id="group-key"></select>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Filter by Time
|
|
|
|
<br></br>
|
|
|
|
<input type="search" id="filter-time-start" placeholder="start"></input> : <input type="search" id="filter-time-end" placeholder="end"></input>
|
|
|
|
<button id="filterICTimeBtn">Filter</button>
|
|
|
|
<p>
|
|
|
|
<table id="table" width="100%">
|
|
|
|
<tbody id="table-body">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</p>
|
2020-06-29 19:21:56 +00:00
|
|
|
</div>
|