diff --git a/docs/README.md b/docs/README.md index 2df14cc5c1ac..24b23f92a760 100644 --- a/docs/README.md +++ b/docs/README.md @@ -105,3 +105,4 @@ an issue: * [Documentation Styleguide](styleguide.md) * [Updating Chrome](development/updating-chrome.md) * [Chromium Development](development/chromium-development.md) +* [V8 Development](development/v8-development.md) diff --git a/docs/development/chromium-development.md b/docs/development/chromium-development.md index a692714482e4..23506ae918fa 100644 --- a/docs/development/chromium-development.md +++ b/docs/development/chromium-development.md @@ -10,3 +10,5 @@ - [Source Code](https://cs.chromium.org/chromium/src/) - [Development Calendar and Release Info](https://www.chromium.org/developers/calendar) - [Discussion Groups](http://www.chromium.org/developers/discussion-groups) + +See also [V8 Development](v8-development.md) diff --git a/docs/development/v8-development.md b/docs/development/v8-development.md new file mode 100644 index 000000000000..76d13299ca7e --- /dev/null +++ b/docs/development/v8-development.md @@ -0,0 +1,11 @@ +# V8 Development + +> A collection of resources for learning and using V8 + +* [V8 Tracing](https://github.com/v8/v8/wiki/Tracing-V8) +* [V8 Profiler](https://github.com/v8/v8/wiki/V8-Profiler) - Profiler combinations which are useful for profiling: `--prof`, `--trace-ic`, `--trace-opt`, `--trace-deopt`, `--print-bytecode`, `--print-opt-code` +* [V8 Interpreter Design](https://docs.google.com/document/d/11T2CRex9hXxoJwbYqVQ32yIPMh0uouUZLdyrtmMoL44/edit?ts=56f27d9d#heading=h.6jz9dj3bnr8t) +* [Optimizing compiler](https://github.com/v8/v8/wiki/TurboFan) +* [V8 GDB Debugging](https://github.com/v8/v8/wiki/GDB-JIT-Interface) + +See also [Chromium Development](chromium-development.md)