2020-06-29 19:21:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- 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. -->
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Indicium</title>
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
|
|
|
<!-- <link rel="icon" type="image/png" href="/images/favicon.png"/> -->
|
2020-07-14 15:03:14 +00:00
|
|
|
<script type="module" src="index.mjs"></script>
|
2020-07-13 18:02:52 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="./index.css">
|
2020-06-29 19:21:56 +00:00
|
|
|
<script src="helper.js"></script>
|
2020-07-10 10:02:08 +00:00
|
|
|
|
2020-06-29 19:21:56 +00:00
|
|
|
<script src="../splaytree.js"></script>
|
|
|
|
<script src="../codemap.js"></script>
|
|
|
|
<script src="../csvparser.js"></script>
|
|
|
|
<script src="../consarray.js"></script>
|
|
|
|
<script src="../profile.js"></script>
|
|
|
|
<script src="../profile_view.js"></script>
|
|
|
|
<script src="../logreader.js"></script>
|
|
|
|
<script src="../arguments.js"></script>
|
|
|
|
<script src="../SourceMap.js"></script>
|
2020-07-14 15:03:14 +00:00
|
|
|
<style>
|
|
|
|
#instructions {
|
|
|
|
padding: 10px 10px 60px 10px ;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
kbd {
|
2020-07-15 03:26:53 +00:00
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: var(--on-primary-color);
|
2020-07-13 09:28:47 +00:00
|
|
|
border-radius: 3px;
|
2020-07-15 03:26:53 +00:00
|
|
|
border: 1px solid var(--on-primary-color);
|
2020-07-13 09:28:47 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: .9em;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0px 4px 2px 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
dl {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content auto;
|
|
|
|
grid-gap: 10px;
|
|
|
|
}
|
|
|
|
dt {
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
dd {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-06-29 19:21:56 +00:00
|
|
|
</style>
|
2020-07-14 15:03:14 +00:00
|
|
|
<script type="module" >
|
2020-07-15 07:28:00 +00:00
|
|
|
import {App} from './index.mjs';
|
|
|
|
|
|
|
|
globalThis.app = new App();
|
2020-06-29 19:21:56 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content">
|
|
|
|
<section id="file-reader">
|
|
|
|
<br></br>
|
2020-07-15 07:28:00 +00:00
|
|
|
<log-file-reader id="log-file-reader" onchange="app.globalDataUpload(event)"></log-file-reader>
|
2020-06-29 19:21:56 +00:00
|
|
|
<br></br>
|
|
|
|
</section>
|
2020-07-08 12:07:05 +00:00
|
|
|
<div id="container" style="display: none;">
|
|
|
|
<timeline-panel id="timeline-panel"></timeline-panel>
|
2020-07-15 07:28:00 +00:00
|
|
|
<map-panel id="map-panel" onclick="app.globalSearchBarEvent(event)" onchange="showMaps(event)"></map-panel>
|
|
|
|
<ic-panel id="ic-panel" onchange="app.handleSelectIcEvents(event)"></ic-panel>
|
2020-06-29 19:21:56 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="instructions">
|
|
|
|
<h2>Instructions</h2>
|
|
|
|
<p>Unified web interface for analyzing the trace information of the Maps/ICs</p>
|
|
|
|
<ul>
|
|
|
|
<li> Visualize Map trees that have gathered</li>
|
|
|
|
<li><code> /path/to/d8 --trace-maps $FILE</code></li>
|
|
|
|
<li> Visualize IC events that have gathered</li>
|
|
|
|
<li><code> /path/to/d8 --trace_ic $FILE (your_script.js) </code></li>
|
|
|
|
</ul>
|
2020-07-13 09:28:47 +00:00
|
|
|
<h3>Keyboard Shortcuts</h3>
|
|
|
|
<dl>
|
|
|
|
<dt><kbd>SHIFT</kbd> + <kbd>Arrow Up</kbd></dt>
|
|
|
|
<dd>Follow Map transition forward (first child)</dd>
|
|
|
|
|
|
|
|
<dt><kbd>SHIFT</kbd> + <kbd>Arrow Down</kbd></dt>
|
|
|
|
<dd>Follow Map transition backwards</dd>
|
|
|
|
|
|
|
|
<dt><kbd>Arrow Up</kbd></dt>
|
|
|
|
<dd>Go to previous Map chunk</dd>
|
|
|
|
|
|
|
|
<dt><kbd>Arrow Down</kbd></dt>
|
|
|
|
<dd>Go to next Map in chunk</dd>
|
|
|
|
|
|
|
|
<dt><kbd>Arrow Left</kbd></dt>
|
|
|
|
<dd>Go to previous chunk</dd>
|
|
|
|
|
|
|
|
<dt><kbd>Arrow Right</kbd></dt>
|
|
|
|
<dd>Go to next chunk</dd>
|
|
|
|
|
|
|
|
<dt><kbd>+</kbd></dt>
|
|
|
|
<dd>Timeline zoom in</dd>
|
|
|
|
|
|
|
|
<dt><kbd>-</kbd></dt>
|
|
|
|
<dd>Timeline zoom out</dd>
|
|
|
|
</dl>
|
2020-06-29 19:21:56 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|