Author: [email protected]
Date: Thu Jan 29 12:55:00 2009
New Revision: 1187
Modified:
wiki/V8Profiler.wiki
Log:
Small corrections to Mike's nice write up.
Modified: wiki/V8Profiler.wiki
==============================================================================
--- wiki/V8Profiler.wiki (original)
+++ wiki/V8Profiler.wiki Thu Jan 29 12:55:00 2009
@@ -1,4 +1,4 @@
-#summary One-sentence summary of this page.
+#summary How to profile V8 using the built-in profiler.
= Introduction =
@@ -11,7 +11,7 @@
Symbol resolution is done using a .MAP file, so the application must be
linked to generate a .map file (as opposed to a PDB file) for debugging
information.
= Command Line =
-To start profiling, use the --prof option. When profiling, v8 generates a
v8.out file which contains profiling data.
+To start profiling, use the --prof option. When profiling, v8 generates a
v8.log file which contains profiling data.
{{{
v8_shell --prof
@@ -23,12 +23,12 @@
Windows:
{{{
-webkit\Release>..\..\v8\tools\windows-tick-processor.py v8_shell.exe v8.log
+tools\windows-tick-processor.py v8_shell.exe v8.log
}}}
Other platforms:
{{{
-webkit\Release>..\..\v8\tools\tick-processor.py v8_shell v8.log
+tools/linux-tick-processor.py v8.log
}}}
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---