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. -->
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-08-22 12:37:00 +00:00
|
|
|
<!-- This will be overwritten by the v8.dev/tools exporter -->
|
|
|
|
<!-- ANALYTICS_PLACEHOLDER -->
|
2020-07-07 10:33:40 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>V8 Tools Landing Page</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
color: white;
|
|
|
|
margin-left: 5%;
|
|
|
|
margin-right: 5%;
|
|
|
|
background-color: #000000;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.content{
|
|
|
|
background-color: #000000;
|
|
|
|
padding: 10px 5px 5px 10px ;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
a:link, a:visited {
|
|
|
|
background-color: #BB86FC;
|
|
|
|
color: black;
|
|
|
|
padding: 15px 25px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
2021-03-17 16:48:02 +00:00
|
|
|
border-radius: 2px;
|
2020-07-07 10:33:40 +00:00
|
|
|
}
|
|
|
|
a:hover, a:active {
|
|
|
|
background-color: white;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
.grid-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto;
|
|
|
|
padding: auto;
|
|
|
|
background-color: #000000;
|
|
|
|
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;
|
2020-07-10 10:30:11 +00:00
|
|
|
padding: 10px 50px 10px 50px ;
|
2020-07-07 10:33:40 +00:00
|
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
|
|
|
|
background-color: #121212;
|
2020-07-10 10:30:11 +00:00
|
|
|
width: auto;
|
2021-03-17 16:48:02 +00:00
|
|
|
border-radius: 10px;
|
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 {
|
2020-07-16 15:24:19 +00:00
|
|
|
padding: 10px 10px 10px 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>
|
|
|
|
<body>
|
|
|
|
<div class="content">
|
|
|
|
<h1>Welcome to the V8 Tools Landing Page</h1>
|
|
|
|
<p>Search through this page to find about the V8 tools to debug, trace and analyze the log files.</p>
|
2020-07-16 15:24:19 +00:00
|
|
|
<dl class="grid-container">
|
2020-10-26 10:51:34 +00:00
|
|
|
<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>
|
2020-07-07 10:33:40 +00:00
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="./callstats.html">Callstats</a></dt>
|
|
|
|
<dd>Visualize and compare runtime call stats.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="./heap-stats/index.html">Heap Stats</a></dt>
|
|
|
|
<dd>Visualize heap memory usage.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
2021-12-17 03:09:34 +00:00
|
|
|
<div class="card">
|
|
|
|
<dt><a href="./heap-layout/index.html">Heap Layout</a></dt>
|
|
|
|
<dd>Visualize heap memory layout.</dd>
|
|
|
|
</div>
|
2020-07-07 10:33:40 +00:00
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="./parse-processor.html">Parse Processor</a></dt>
|
|
|
|
<dd>Analyse parse, compile and first-execution.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="./profview/index.html">Profview</a></dt>
|
|
|
|
<dd>Fancy sampling profile viewer.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="./turbolizer/index.html">Turbolizer</a></dt>
|
|
|
|
<dd>Visualise the sea of nodes graph generated by TurboFan.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<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>
|
2021-03-17 16:48:02 +00:00
|
|
|
</dl>
|
|
|
|
<dl class="grid-container grid-2">
|
2020-07-23 15:38:08 +00:00
|
|
|
<div class="card">
|
2021-03-17 16:48:02 +00:00
|
|
|
<dt><a href="https://v8.dev/tools/versions">Other V8 Versions</a></dt>
|
|
|
|
<dd>Archived versions of V8 tools</dd>
|
2020-07-23 15:38:08 +00:00
|
|
|
</div>
|
2020-07-07 10:33:40 +00:00
|
|
|
<div class="card">
|
2020-07-10 10:30:11 +00:00
|
|
|
<dt><a href="https://v8.dev">V8.Dev</a></dt>
|
2021-03-17 16:48:02 +00:00
|
|
|
<dd>The main V8 website.</dd>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
2020-07-16 15:24:19 +00:00
|
|
|
</dl>
|
2020-07-07 10:33:40 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|