index.html 3.3 KB

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