tree: 4df0192171e1be90e0bef3025506c0a87ebba6cb [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. turbolizer/
  30. ubsan/
  31. unittests/
  32. v8windbg/
  33. valgrind/
  34. vim/
  35. visual_studio/
  36. wasm/
  37. zone-stats/
  38. .vpython3
  39. __init__.py
  40. adb-d8.py
  41. android-build.sh
  42. android-run.py
  43. arguments.mjs
  44. avg.py
  45. bash-completion.sh
  46. bigint-tester.py
  47. BUILD.gn
  48. callstats-from-telemetry.sh
  49. callstats.html
  50. callstats.py
  51. callstats_groups.py
  52. check-inline-includes.sh
  53. check-static-initializers.sh
  54. check-unused-bailouts.sh
  55. check-unused-symbols.sh
  56. codemap.mjs
  57. collect_deprecation_stats.sh
  58. compare-table-gen.js
  59. compare_torque_output.py
  60. consarray.mjs
  61. cpu.sh
  62. cross_build_gcc.sh
  63. csvparser.mjs
  64. DEPS
  65. detect-builtins.js
  66. disasm.py
  67. draw_instruction_graph.sh
  68. dump-cpp.py
  69. dumpcpp-driver.mjs
  70. dumpcpp.mjs
  71. eval_gc_nvp.py
  72. eval_gc_time.sh
  73. find-builtin
  74. find-commit-for-patch.py
  75. find_depot_tools.py
  76. fix-inl-header-includes.sh
  77. freebsd-tick-processor
  78. fuzz-harness.sh
  79. gc-nvp-to-csv.py
  80. gc-nvp-trace-processor.py
  81. gc_nvp_common.py
  82. gdb-v8-support.py
  83. gdbinit
  84. gen-inlining-tests.py
  85. gen-keywords-gen-h.py
  86. gen-postmortem-metadata.py
  87. gen-v8-gn.py
  88. generate-builtins-tests.py
  89. generate-header-include-checks.py
  90. generate-runtime-call-stats.py
  91. generate-ten-powers.scm
  92. get_landmines.py
  93. grokdump.py
  94. heap-snapshot-processor.py
  95. ic-processor
  96. ic-processor-driver.mjs
  97. include-file-as-bytes.py
  98. index.html
  99. linux-tick-processor
  100. lldb_commands.py
  101. lldb_visualizers.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-bisect.pl
  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;
  npm run start-webserver;

Local Symbol Server

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

  cd tools/;
  ./system-analyzer/local-server.sh;

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