| <!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" class="js dark"> | 
 | <head> | 
 | <!-- This will be overwritten by the v8.dev/tools exporter --> | 
 | <!-- ANALYTICS_PLACEHOLDER --> | 
 | <meta charset="UTF-8"> | 
 | <title>V8 Tools Landing Page</title> | 
 | <link href="//v8.dev/_css/main.css" rel="stylesheet"> | 
 | <style> | 
 | .title { | 
 |   padding-left: 4em; | 
 |   line-height: 3em; | 
 | } | 
 | .grid-container { | 
 |   display: grid; | 
 |   grid-template-columns: auto auto auto; | 
 |   padding: auto; | 
 |   grid-gap: 15px; | 
 | } | 
 | .grid-2{ | 
 |   grid-template-columns: auto auto; | 
 | } | 
 | .card { | 
 |   text-align: center; | 
 |   padding: 10px; | 
 |   background-color: #121212; | 
 |   width: auto; | 
 |   border-radius: 2px; | 
 | } | 
 | .card:hover { | 
 |   box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); | 
 | } | 
 | dd, dt { | 
 |   padding: 10px; | 
 |   margin: auto; | 
 | } | 
 | </style> | 
 | </head> | 
 | <body> | 
 |   <header id=header> | 
 |     <h1> | 
 |       <a class=v8 href="//v8.dev">V8</a> | 
 |     </h1> | 
 |     <nav> | 
 |       <ul> | 
 |         <li class=current><a href="">Tools</a></li> | 
 |         <li><a href="//v8.dev/tools/versions">Tools Versions</a></li> | 
 |         <li><a href="//v8.dev">Main Page</a></li> | 
 |       </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> | 
 |       </div> | 
 |     </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> | 
 | </html> |