2020-07-07 10:33:40 +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. -->
|
2022-08-29 08:27:37 +00:00
|
|
|
<html lang="en" class="js dark">
|
2020-07-07 10:33:40 +00:00
|
|
|
<head>
|
2022-08-29 08:27:37 +00:00
|
|
|
<!-- This will be overwritten by the v8.dev/tools exporter -->
|
2022-08-22 12:37:00 +00:00
|
|
|
<!-- ANALYTICS_PLACEHOLDER -->
|
2022-08-29 08:27:37 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>V8 Tools Landing Page</title>
|
|
|
|
<link href="//v8.dev/_css/main.css" rel="stylesheet">
|
2020-07-07 10:33:40 +00:00
|
|
|
<style>
|
2022-08-29 08:27:37 +00:00
|
|
|
.title {
|
|
|
|
padding-left: 4em;
|
|
|
|
line-height: 3em;
|
2020-07-07 10:33:40 +00:00
|
|
|
}
|
|
|
|
.grid-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto;
|
|
|
|
padding: auto;
|
|
|
|
grid-gap: 15px;
|
|
|
|
}
|
2021-03-17 16:48:02 +00:00
|
|
|
.grid-2{
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
}
|
2020-07-07 10:33:40 +00:00
|
|
|
.card {
|
|
|
|
text-align: center;
|
2022-08-29 08:27:37 +00:00
|
|
|
padding: 10px;
|
2020-07-07 10:33:40 +00:00
|
|
|
background-color: #121212;
|
2020-07-10 10:30:11 +00:00
|
|
|
width: auto;
|
2022-08-29 08:27:37 +00:00
|
|
|
border-radius: 2px;
|
2020-07-07 10:33:40 +00:00
|
|
|
}
|
|
|
|
.card:hover {
|
|
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
|
|
}
|
2020-07-23 15:38:08 +00:00
|
|
|
dd, dt {
|
2022-08-29 08:27:37 +00:00
|
|
|
padding: 10px;
|
2020-07-23 15:38:08 +00:00
|
|
|
margin: auto;
|
2020-07-10 10:30:11 +00:00
|
|
|
}
|
2020-07-07 10:33:40 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
2022-08-29 08:27:37 +00:00
|
|
|
<body>
|
|
|
|
<header id=header>
|
|
|
|
<h1>
|
2022-08-29 14:10:19 +00:00
|
|
|
<a class=v8 href="//v8.dev">V8</a>
|
2022-08-29 08:27:37 +00:00
|
|
|
</h1>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li class=current><a href="">Tools</a></li>
|
2022-08-29 14:10:19 +00:00
|
|
|
<li><a href="//v8.dev/tools/versions">Tools Versions</a></li>
|
|
|
|
<li><a href="//v8.dev">Main Page</a></li>
|
2022-08-29 08:27:37 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<main id=main>
|
|
|
|
<dl class="grid-container">
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./system-analyzer/index.html">System Analyzer</a></dt>
|
|
|
|
<dd>A unified web interface to trace, debug and analyse patterns of how Maps/ICs are created in the real world applications.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./callstats.html">Callstats</a></dt>
|
|
|
|
<dd>Visualize and compare runtime call stats.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./heap-stats/index.html">Heap Stats</a></dt>
|
|
|
|
<dd>Visualize heap memory usage.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./heap-layout/index.html">Heap Layout</a></dt>
|
|
|
|
<dd>Visualize heap memory layout.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./parse-processor.html">Parse Processor</a></dt>
|
|
|
|
<dd>Analyse parse, compile and first-execution.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./profview/index.html">Profview</a></dt>
|
|
|
|
<dd>Fancy sampling profile viewer.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./turbolizer/index.html">Turbolizer</a></dt>
|
|
|
|
<dd>Visualise the sea of nodes graph generated by TurboFan.</dd>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./zone-stats/index.html">Zone Stats</a></dt>
|
|
|
|
<dd>Analyse zone memory usage.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
2022-08-29 08:27:37 +00:00
|
|
|
</dl>
|
|
|
|
</main>
|
|
|
|
<footer id=footer>
|
|
|
|
<p>
|
|
|
|
The sources of this page live on <a href="https://github.com/v8/tools">github</a>.
|
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
2020-07-07 10:33:40 +00:00
|
|
|
</html>
|