tree: 17971a3fdb77be01fe95ce416f4dd5db31c9b2f7 [path history] [tgz]
  1. bazel/
  2. builtins-pgo/
  3. cfi/
  4. clusterfuzz/
  5. cppgc/
  6. debug_helper/
  7. dev/
  8. explicit-compile-hints/
  9. gcmole/
  10. generate_shim_headers/
  11. heap-layout/
  12. heap-stats/
  13. js/
  14. jsfunfuzz/
  15. link_clicker.extension/
  16. mb/
  17. memory/
  18. msan/
  19. perf/
  20. profiling/
  21. profview/
  22. release/
  23. sanitizers/
  24. snapshot/
  25. system-analyzer/
  26. testrunner/
  27. toolchain/
  28. torque/
  29. tracing/
  30. turbolizer/
  31. ubsan/
  32. unittests/
  33. v8windbg/
  34. valgrind/
  35. vim/
  36. visual_studio/
  37. wasm/
  38. wasm-compilation-hints/
  39. zone-stats/
  40. .vpython3
  41. __init__.py
  42. adb-d8.py
  43. android-build.sh
  44. android-run.py
  45. android-sync.sh
  46. arguments.mjs
  47. avg.py
  48. bash-completion.sh
  49. bigint-tester.py
  50. BUILD.gn
  51. callstats-from-telemetry.sh
  52. callstats.html
  53. callstats.py
  54. callstats_groups.py
  55. check-inline-includes.sh
  56. check-static-initializers.sh
  57. check-unused-bailouts.sh
  58. check-unused-symbols.sh
  59. codemap.mjs
  60. collect_deprecation_stats.sh
  61. compare-table-gen.js
  62. compare_torque_output.py
  63. consarray.mjs
  64. cpu.sh
  65. cross_build_gcc.sh
  66. csvparser.mjs
  67. DEPS
  68. detect-builtins.js
  69. disasm.py
  70. draw_instruction_graph.sh
  71. dump-cpp.py
  72. dumpcpp-driver.mjs
  73. dumpcpp.mjs
  74. eval_gc_nvp.py
  75. eval_gc_time.sh
  76. find-builtin
  77. find-commit-for-patch.py
  78. find_depot_tools.py
  79. freebsd-tick-processor
  80. fuzz-harness.sh
  81. gc-nvp-to-csv.py
  82. gc-nvp-trace-processor.py
  83. gc_nvp_common.py
  84. gdb-v8-support.py
  85. gdbinit
  86. gen-inlining-tests.py
  87. gen-keywords-gen-h.py
  88. gen-postmortem-metadata.py
  89. gen-v8-gn.py
  90. generate-builtins-tests.py
  91. generate-header-include-checks.py
  92. generate-runtime-call-stats.py
  93. generate-ten-powers.scm
  94. get_landmines.py
  95. grokdump.py
  96. heap-snapshot-processor.py
  97. ic-processor
  98. ic-processor-driver.mjs
  99. index.html
  100. linux-tick-processor
  101. lldb_commands.py
  102. lldb_visualizers.py
  103. locs.py
  104. logreader.mjs
  105. mac-nm
  106. mac-tick-processor
  107. Makefile.tags
  108. objdump-v8
  109. OWNERS
  110. package-lock.json
  111. package.json
  112. parse-processor
  113. parse-processor-driver.mjs
  114. parse-processor.html
  115. parse-processor.mjs
  116. perf-compare.py
  117. predictable_wrapper.py
  118. PRESUBMIT.py
  119. process-wasm-compilation-times.py
  120. profile.mjs
  121. profile_view.js
  122. profile_view.mjs
  123. README.md
  124. regexp-sequences.py
  125. run-clang-tidy.py
  126. run-num-fuzzer.py
  127. run-tests.py
  128. run-wasm-api-tests.py
  129. run.py
  130. run_perf.py
  131. shell-utils.h
  132. sourcemap.mjs
  133. splaytree.mjs
  134. stats-viewer.py
  135. test262-results-parser.js
  136. tickprocessor-driver.mjs
  137. tickprocessor.mjs
  138. try_perf.py
  139. turbolizer-perf.py
  140. update-object-macros-undef.py
  141. v8_presubmit.py
  142. whitespace.txt
  143. windbg.js
  144. windows-tick-processor.bat
  145. wpr.wprp
tools/README.md

TOOLS

This directory contains debugging and investigation tools for V8.

The contents are regularly mirrored to http://v8.dev/tools.

Local Development

For local development you have to start a local webserver under http://localhost:8000:

  cd tools/;
  npm install;
  ws;

Local Symbol Server

The system-analyzer can symbolize profiles for local binaries by running a local symbol server

  cd tools/;
  ws --stack system-analyzer/lws-middleware.js lws-static cors;

Note that the local symbol server will run nm and objdump and has access to your files.