summaryrefslogtreecommitdiffstats
path: root/VC2008/profile_run.cmd
blob: e2d9491e158b4f42d97f208d45241b9d560fe69f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@echo off
::
:: Profiling using a MSVC standalone profiler
::
:: See http://www.codeproject.com/Articles/144643/Profiling-of-C-Applications-in-Visual-Studio-for-F for details
::




set pt="C:\Program Files\Microsoft Visual Studio 9.0\Team Tools\Performance Tools"
set app="vc2008\Release profiled\mcserver.exe"
set output=MCServer_profiledata.vsp





cd ..

:: Start the profiler
%pt%\vsperfcmd /start:sample /output:%output%

:: Launch the application via the profiler
%pt%\vsperfcmd /launch:%app%

:: Shut down the profiler (this command waits, until the application is terminated)
%pt%\vsperfcmd /shutdown





:: generate the report files (.csv)
%pt%\vsperfreport /summary:all %output% /symbolpath:"srv*C:\Programovani\Symbols*http://msdl.microsoft.com/download/symbols"