tree: c237cf56e50ecb2870877b588d72fd2de2865d00 [path history] [tgz]
  1. bazel/
  2. builtins-pgo/
  3. cfi/
  4. clusterfuzz/
  5. cppgc/
  6. debug_helper/
  7. dev/
  8. gcmole/
  9. generate_shim_headers/
  10. heap-layout/
  11. heap-stats/
  12. js/
  13. jsfunfuzz/
  14. link_clicker.extension/
  15. mb/
  16. memory/
  17. msan/
  18. perf/
  19. profiling/
  20. profview/
  21. release/
  22. sanitizers/
  23. snapshot/
  24. system-analyzer/
  25. testrunner/
  26. toolchain/
  27. torque/
  28. tracing/
  29. turbolizer/
  30. ubsan/
  31. unittests/
  32. v8.xcodeproj/
  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. ic-processor
  97. ic-processor-driver.mjs
  98. index.html
  99. linux-tick-processor
  100. lldb_commands.py
  101. locs.py
  102. logreader.mjs
  103. mac-nm
  104. mac-tick-processor
  105. Makefile.tags
  106. objdump-v8
  107. OWNERS
  108. package-lock.json
  109. package.json
  110. parse-processor
  111. parse-processor-driver.mjs
  112. parse-processor.html
  113. parse-processor.mjs
  114. perf-compare.py
  115. predictable_wrapper.py
  116. PRESUBMIT.py
  117. process-wasm-compilation-times.py
  118. profile.mjs
  119. profile_view.js
  120. profile_view.mjs
  121. README.md
  122. regexp-sequences.py
  123. run-clang-tidy.py
  124. run-num-fuzzer.py
  125. run-tests.py
  126. run-wasm-api-tests.py
  127. run.py
  128. run_perf.py
  129. shell-utils.h
  130. sourcemap.mjs
  131. splaytree.mjs
  132. stats-viewer.py
  133. test262-results-parser.js
  134. tickprocessor-driver.mjs
  135. tickprocessor.mjs
  136. try_perf.py
  137. turbolizer-perf.py
  138. update-object-macros-undef.py
  139. v8_presubmit.py
  140. v8heapconst.py
  141. whitespace.txt
  142. windbg.js
  143. windows-tick-processor.bat
  144. 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.