tree: c407be28ec8c2e0b0c5d27f792954c31d246f284 [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. DEPS
  67. detect-builtins.js
  68. disasm.py
  69. draw_instruction_graph.sh
  70. dump-cpp.py
  71. dumpcpp-driver.mjs
  72. dumpcpp.mjs
  73. eval_gc_nvp.py
  74. eval_gc_time.sh
  75. find-builtin
  76. find-commit-for-patch.py
  77. find_depot_tools.py
  78. freebsd-tick-processor
  79. fuzz-harness.sh
  80. gc-nvp-to-csv.py
  81. gc-nvp-trace-processor.py
  82. gc_nvp_common.py
  83. gdb-v8-support.py
  84. gdbinit
  85. gen-inlining-tests.py
  86. gen-keywords-gen-h.py
  87. gen-postmortem-metadata.py
  88. gen-v8-gn.py
  89. generate-builtins-tests.py
  90. generate-header-include-checks.py
  91. generate-runtime-call-stats.py
  92. generate-ten-powers.scm
  93. get_landmines.py
  94. grokdump.py
  95. ic-processor
  96. ic-processor-driver.mjs
  97. index.html
  98. linux-tick-processor
  99. ll_prof.py
  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. profile.mjs
  118. profile_view.js
  119. profile_view.mjs
  120. README.md
  121. regexp-sequences.py
  122. run-clang-tidy.py
  123. run-llprof.sh
  124. run-num-fuzzer.py
  125. run-perf.sh
  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. tick-processor.html
  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. v8heapconst.py
  143. whitespace.txt
  144. windbg.js
  145. windows-tick-processor.bat
  146. 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.