tree: a9c155a76bd3642d0bce76b8e8e4111abf6a55db [path history] [tgz]
  1. bazel/
  2. blink_tests/
  3. cfi/
  4. clusterfuzz/
  5. cppgc/
  6. debug_helper/
  7. dev/
  8. gcmole/
  9. generate_shim_headers/
  10. heap-stats/
  11. ignition/
  12. jsfunfuzz/
  13. link_clicker.extension/
  14. mb/
  15. memory/
  16. msan/
  17. perf/
  18. profview/
  19. release/
  20. sanitizers/
  21. snapshot/
  22. system-analyzer/
  23. testrunner/
  24. toolchain/
  25. torque/
  26. tracing/
  27. turbolizer/
  28. ubsan/
  29. unittests/
  30. v8.xcodeproj/
  31. v8windbg/
  32. valgrind/
  33. vim/
  34. visual_studio/
  35. wasm/
  36. wasm-compilation-hints/
  37. zone-stats/
  38. __init__.py
  39. adb-d8.py
  40. android-build.sh
  41. android-ll-prof.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. compare-table-gen.js
  61. compare_torque_output.py
  62. consarray.mjs
  63. cpu.sh
  64. cross_build_gcc.sh
  65. csvparser.mjs
  66. deprecation_stats.py
  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. ll_prof.py
  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. profile.mjs
  119. profile_view.js
  120. profile_view.mjs
  121. README.md
  122. regexp-sequences.py
  123. run-clang-tidy.py
  124. run-llprof.sh
  125. run-num-fuzzer.py
  126. run-perf.sh
  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. tick-processor.html
  137. tickprocessor-driver.mjs
  138. tickprocessor.mjs
  139. try_perf.py
  140. turbolizer-perf.py
  141. update-object-macros-undef.py
  142. v8_presubmit.py
  143. v8heapconst.py
  144. whitespace.txt
  145. windbg.js
  146. windows-tick-processor.bat
  147. 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.