1<!DOCTYPE html> 2<!-- Copyright 2020 the V8 project authors. All rights reserved. 3Use of this source code is governed by a BSD-style license that can be 4found in the LICENSE file. --> 5 6<html lang="en"> 7 8<head> 9 <meta charset="UTF-8"> 10 <title>V8 Tools Landing Page</title> 11<style> 12body { 13 font-family: sans-serif; 14 color: white; 15 margin-left: 5%; 16 margin-right: 5%; 17 background-color: #000000; 18 text-align: center; 19} 20.content{ 21 background-color: #000000; 22 padding: 10px 5px 5px 10px ; 23 margin: auto; 24 max-width: 80%; 25} 26a:link, a:visited { 27 background-color: #BB86FC; 28 color: black; 29 padding: 15px 25px; 30 text-align: center; 31 text-decoration: none; 32 display: inline-block; 33 border-radius: 2px; 34} 35a:hover, a:active { 36 background-color: white; 37 color:black; 38} 39.grid-container { 40 display: grid; 41 grid-template-columns: auto auto auto; 42 padding: auto; 43 background-color: #000000; 44 grid-gap: 15px; 45} 46.grid-2{ 47 grid-template-columns: auto auto; 48} 49.card { 50 text-align: center; 51 padding: 10px 50px 10px 50px ; 52 box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); 53 background-color: #121212; 54 width: auto; 55 border-radius: 10px; 56} 57.card:hover { 58 box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); 59} 60dd, dt { 61 padding: 10px 10px 10px 10px; 62 margin: auto; 63} 64</style> 65</head> 66 <body> 67 <div class="content"> 68 <h1>Welcome to the V8 Tools Landing Page</h1> 69 <p>Search through this page to find about the V8 tools to debug, trace and analyze the log files.</p> 70 <dl class="grid-container"> 71 <div class="card"> 72 <dt><a href="./system-analyzer/index.html">System Analyzer</a></dt> 73 <dd>A unified web interface to trace, debug and analyse patterns of how Maps/ICs are created in the real world applications.</dd> 74 </div> 75 <div class="card"> 76 <dt><a href="./callstats.html">Callstats</a></dt> 77 <dd>Visualize and compare runtime call stats.</dd> 78 </div> 79 <div class="card"> 80 <dt><a href="./heap-stats/index.html">Heap Stats</a></dt> 81 <dd>Visualize heap memory usage.</dd> 82 </div> 83 <div class="card"> 84 <dt><a href="./heap-layout/index.html">Heap Layout</a></dt> 85 <dd>Visualize heap memory layout.</dd> 86 </div> 87 <div class="card"> 88 <dt><a href="./parse-processor.html">Parse Processor</a></dt> 89 <dd>Analyse parse, compile and first-execution.</dd> 90 </div> 91 <div class="card"> 92 <dt><a href="./profview/index.html">Profview</a></dt> 93 <dd>Fancy sampling profile viewer.</dd> 94 </div> 95 <div class="card"> 96 <dt><a href="./turbolizer/index.html">Turbolizer</a></dt> 97 <dd>Visualise the sea of nodes graph generated by TurboFan.</dd> 98 </div> 99 <div class="card"> 100 <dt><a href="./zone-stats/index.html">Zone Stats</a></dt> 101 <dd>Analyse zone memory usage.</dd> 102 </div> 103 </dl> 104 <dl class="grid-container grid-2"> 105 <div class="card"> 106 <dt><a href="https://v8.dev/tools/versions">Other V8 Versions</a></dt> 107 <dd>Archived versions of V8 tools</dd> 108 </div> 109 <div class="card"> 110 <dt><a href="https://v8.dev">V8.Dev</a></dt> 111 <dd>The main V8 website.</dd> 112 </div> 113 </dl> 114 </div> 115 </div> 116 </body> 117</html> 118