d67a14b2fc
Allow live ranges to be displayed beside the instruction sequence in turbolizer. Bug: v8:7327 Change-Id: Idec5130655ccc9365dd32ec6927d8615a3e5c570 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3585960 Commit-Queue: George Wort <george.wort@arm.com> Reviewed-by: Nico Hartmann <nicohartmann@chromium.org> Cr-Commit-Position: refs/heads/main@{#80226}
55 lines
2.5 KiB
HTML
55 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
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.
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>V8 Turbolizer</title>
|
|
<link rel="stylesheet" href="turbo-visualizer.css">
|
|
<link rel="stylesheet" href="turbo-visualizer-ranges.css">
|
|
<link rel="stylesheet" href="tabs.css">
|
|
<link rel="icon" type="image/png" href="turbolizer.png">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="left" class="content"></div>
|
|
<div id="resizer-left" class="resizer"></div>
|
|
<div id="middle">
|
|
|
|
<div id="load-file">
|
|
<input id="upload-helper" type="file">
|
|
<input id="upload" type="image" title="load graph" class="button-input" src="upload-icon.png" alt="upload graph">
|
|
</div>
|
|
<div id="resizer-ranges" class="resizer" style="visibility:hidden;"></div>
|
|
<div id="ranges" class="content" style="visibility:hidden;"></div>
|
|
<div id="show-hide-ranges" class="show-hide-pane" style="visibility: hidden">
|
|
<input id="ranges-expand-vert" type="image" title="show ranges" src="up-arrow.png" class="button-input invisible">
|
|
<input id="ranges-shrink-vert" type="image" title="hide ranges" src="down-arrow.png" class="button-input">
|
|
<input id="ranges-expand-hor" type="image" title="show ranges" src="left-arrow.png" class="button-input invisible">
|
|
<input id="ranges-shrink-hor" type="image" title="hide ranges" src="right-arrow.png" class="button-input invisible">
|
|
</div>
|
|
</div>
|
|
<div id="resizer-right" class="resizer"></div>
|
|
<div id="right" class="content"></div>
|
|
<div id="show-hide-source" class="show-hide-pane">
|
|
<input id="source-expand" type="image" title="show source" src="right-arrow.png" class="button-input invisible">
|
|
<input id="source-shrink" type="image" title="hide source" src="left-arrow.png" class="button-input">
|
|
</div>
|
|
<div id="show-hide-disassembly" class="show-hide-pane">
|
|
<input id="disassembly-expand" type="image" title="show disassembly" src="left-arrow.png" class="button-input invisible">
|
|
<input id="disassembly-shrink" type="image" title="hide disassembly" src="right-arrow.png" class="button-input">
|
|
</div>
|
|
<div id="text-placeholder" width="0" height="0" style="position: absolute; top:100000px;">
|
|
<svg>
|
|
<text text-anchor="right">
|
|
<tspan white-space="inherit" id="text-measure">
|
|
</text>
|
|
</svg>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
|
|
<script src="build/turbolizer.js"></script>
|
|
</body>
|
|
</html>
|