2019-01-04 12:18:43 +00:00
|
|
|
<!DOCTYPE html>
|
2016-05-19 08:17:29 +00:00
|
|
|
<html>
|
2019-01-04 12:18:43 +00:00
|
|
|
<!--
|
|
|
|
Copyright 2019 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.
|
|
|
|
-->
|
2018-11-06 15:18:43 +00:00
|
|
|
<head>
|
2019-01-04 12:18:43 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>V8 Turbolizer</title>
|
2022-05-29 21:55:04 +00:00
|
|
|
<link rel="stylesheet" href="css/turbo-visualizer.css">
|
|
|
|
<link rel="stylesheet" href="css/turbo-visualizer-ranges.css">
|
|
|
|
<link rel="stylesheet" href="css/tabs.css">
|
|
|
|
<link rel="icon" href="turbolizer.png">
|
2018-11-06 15:18:43 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-11-08 13:57:37 +00:00
|
|
|
<div id="left" class="content"></div>
|
2018-11-06 20:30:11 +00:00
|
|
|
<div id="resizer-left" class="resizer"></div>
|
2018-11-06 15:18:43 +00:00
|
|
|
<div id="middle">
|
|
|
|
<div id="load-file">
|
2022-05-29 21:55:04 +00:00
|
|
|
<input type="file" id="upload-helper">
|
|
|
|
<input type="image" id="upload" class="button-input" title="load graph" src="img/upload-icon.png" alt="upload graph">
|
2018-11-05 14:21:27 +00:00
|
|
|
</div>
|
2020-05-27 11:18:28 +00:00
|
|
|
<div id="resizer-ranges" class="resizer" style="visibility:hidden;"></div>
|
|
|
|
<div id="ranges" class="content" style="visibility:hidden;"></div>
|
2022-05-29 21:55:04 +00:00
|
|
|
<div id="show-hide-ranges" class="show-hide-pane" style="visibility: hidden;">
|
|
|
|
<input type="image" id="ranges-expand-vert" class="button-input invisible" title="show ranges" src="img/arrows/up-arrow.png">
|
|
|
|
<input type="image" id="ranges-shrink-vert" class="button-input" title="hide ranges" src="img/arrows/down-arrow.png">
|
|
|
|
<input type="image" id="ranges-expand-hor" class="button-input invisible" title="show ranges" src="img/arrows/left-arrow.png">
|
|
|
|
<input type="image" id="ranges-shrink-hor" class="button-input invisible" title="hide ranges" src="img/arrows/right-arrow.png">
|
2020-05-27 11:18:28 +00:00
|
|
|
</div>
|
2018-11-06 15:18:43 +00:00
|
|
|
</div>
|
2018-11-06 20:30:11 +00:00
|
|
|
<div id="resizer-right" class="resizer"></div>
|
2018-11-08 13:57:37 +00:00
|
|
|
<div id="right" class="content"></div>
|
2019-11-15 13:18:28 +00:00
|
|
|
<div id="show-hide-source" class="show-hide-pane">
|
2022-05-29 21:55:04 +00:00
|
|
|
<input type="image" id="source-expand" class="button-input invisible" title="show source" src="img/arrows/right-arrow.png">
|
|
|
|
<input type="image" id="source-shrink" class="button-input" title="hide source" src="img/arrows/left-arrow.png">
|
2018-11-06 15:18:43 +00:00
|
|
|
</div>
|
2019-11-15 13:18:28 +00:00
|
|
|
<div id="show-hide-disassembly" class="show-hide-pane">
|
2022-05-29 21:55:04 +00:00
|
|
|
<input type="image" id="disassembly-expand" class="button-input invisible" title="show disassembly" src="img/arrows/left-arrow.png">
|
|
|
|
<input type="image" id="disassembly-shrink" class="button-input" title="hide disassembly" src="img/arrows/right-arrow.png">
|
2018-11-06 15:18:43 +00:00
|
|
|
</div>
|
2022-05-29 21:55:04 +00:00
|
|
|
<div id="text-placeholder" style="width: 0; height: 0; position: absolute; top:100000px;">
|
2018-11-06 15:18:43 +00:00
|
|
|
<svg>
|
2022-05-29 21:55:04 +00:00
|
|
|
<text style="text-anchor: end;">
|
|
|
|
<tspan id="text-measure" style="white-space: inherit;"></tspan>
|
2018-11-06 15:18:43 +00:00
|
|
|
</text>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2019-11-04 10:28:33 +00:00
|
|
|
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
|
2018-11-06 15:18:43 +00:00
|
|
|
<script src="build/turbolizer.js"></script>
|
|
|
|
</body>
|
2019-01-04 12:18:43 +00:00
|
|
|
</html>
|