tree: babc7e6bb8570705605368561eeb4db0f00503be [path history] [tgz]
  1. bazel/
  2. cfi/
  3. clusterfuzz/
  4. cppgc/
  5. debug_helper/
  6. dev/
  7. gcmole/
  8. generate_shim_headers/
  9. heap-layout/
  10. heap-stats/
  11. js/
  12. jsfunfuzz/
  13. link_clicker.extension/
  14. mb/
  15. memory/
  16. msan/
  17. perf/
  18. profiling/
  19. profview/
  20. release/
  21. sanitizers/
  22. snapshot/
  23. system-analyzer/
  24. testrunner/
  25. toolchain/
  26. torque/
  27. tracing/
  28. turbolizer/
  29. ubsan/
  30. unittests/
  31. v8.xcodeproj/
  32. v8windbg/
  33. valgrind/
  34. vim/
  35. visual_studio/
  36. wasm/
  37. wasm-compilation-hints/
  38. zone-stats/
  39. __init__.py
  40. adb-d8.py
  41. android-build.sh
  42. android-run.py
  43. android-sync.sh
  44. arguments.mjs
  45. avg.py
  46. bash-completion.sh
  47. bigint-tester.py
  48. BUILD.gn
  49. callstats-from-telemetry.sh
  50. callstats.html
  51. callstats.py
  52. callstats.py.vpython
  53. callstats_groups.py
  54. check-inline-includes.sh
  55. check-static-initializers.sh
  56. check-unused-bailouts.sh
  57. check-unused-symbols.sh
  58. codemap.mjs
  59. collect_deprecation_stats.sh
  60. combine_hints.py
  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_hints.py
  95. get_landmines.py
  96. grokdump.py
  97. ic-processor
  98. ic-processor-driver.mjs
  99. index.html
  100. linux-tick-processor
  101. lldb_commands.py
  102. locs.py
  103. logreader.mjs
  104. mac-nm
  105. mac-tick-processor
  106. Makefile.tags
  107. objdump-v8
  108. OWNERS
  109. package-lock.json
  110. package.json
  111. parse-processor
  112. parse-processor-driver.mjs
  113. parse-processor.html
  114. parse-processor.mjs
  115. perf-compare.py
  116. predictable_wrapper.py
  117. PRESUBMIT.py
  118. process-wasm-compilation-times.py
  119. profile.mjs
  120. profile_view.js
  121. profile_view.mjs
  122. README.md
  123. regexp-sequences.py
  124. run-clang-tidy.py
  125. run-num-fuzzer.py
  126. run-tests.py
  127. run-wasm-api-tests.py
  128. run.py
  129. run_perf.py
  130. shell-utils.h
  131. sourcemap.mjs
  132. splaytree.mjs
  133. stats-viewer.py
  134. test262-results-parser.js
  135. tickprocessor-driver.mjs
  136. tickprocessor.mjs
  137. try_perf.py
  138. turbolizer-perf.py
  139. update-object-macros-undef.py
  140. v8_presubmit.py
  141. v8heapconst.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.