tree: ef8dc582f462e77eb1f8d1fff0f76144d1ce3d55 [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. 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_groups.py
  53. check-inline-includes.sh
  54. check-static-initializers.sh
  55. check-unused-bailouts.sh
  56. check-unused-symbols.sh
  57. codemap.mjs
  58. collect_deprecation_stats.sh
  59. compare-table-gen.js
  60. compare_torque_output.py
  61. consarray.mjs
  62. cpu.sh
  63. cross_build_gcc.sh
  64. csvparser.mjs
  65. DEPS
  66. detect-builtins.js
  67. disasm.py
  68. draw_instruction_graph.sh
  69. dump-cpp.py
  70. dumpcpp-driver.mjs
  71. dumpcpp.mjs
  72. eval_gc_nvp.py
  73. eval_gc_time.sh
  74. find-builtin
  75. find-commit-for-patch.py
  76. find_depot_tools.py
  77. fix-inl-header-includes.sh
  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. heap-snapshot-processor.py
  96. ic-processor
  97. ic-processor-driver.mjs
  98. include-file-as-bytes.py
  99. index.html
  100. linux-tick-processor
  101. lldb_commands.py
  102. lldb_visualizers.py
  103. locs.py
  104. logreader.mjs
  105. mac-nm
  106. mac-tick-processor
  107. Makefile.tags
  108. objdump-v8
  109. OWNERS
  110. package-lock.json
  111. package.json
  112. parse-processor
  113. parse-processor-driver.mjs
  114. parse-processor.html
  115. parse-processor.mjs
  116. perf-bisect.pl
  117. perf-compare.py
  118. predictable_wrapper.py
  119. PRESUBMIT.py
  120. process-wasm-compilation-times.py
  121. profile.mjs
  122. profile_view.js
  123. profile_view.mjs
  124. README.md
  125. regexp-sequences.py
  126. run-clang-tidy.py
  127. run-num-fuzzer.py
  128. run-tests.py
  129. run-wasm-api-tests.py
  130. run.py
  131. run_perf.py
  132. shell-utils.h
  133. sourcemap.mjs
  134. splaytree.mjs
  135. stats-viewer.py
  136. test262-results-parser.js
  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. 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;
  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.