File: index.html

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (97 lines) | stat: -rw-r--r-- 2,780 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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>