2015-04-13 13:59:54 -03:00
|
|
|
@echo off
|
|
|
|
rem A batch program to build PGO (Profile guided optimization) by first
|
|
|
|
rem building instrumented binaries, then running the testsuite, and
|
|
|
|
rem finally building the optimized code.
|
|
|
|
rem Note, after the first instrumented run, one can just keep on
|
|
|
|
rem building the PGUpdate configuration while developing.
|
|
|
|
|
|
|
|
setlocal
|
|
|
|
set platf=Win32
|
2015-04-13 14:11:40 -03:00
|
|
|
set parallel=/m
|
|
|
|
set dir=%~dp0
|
2015-04-13 13:59:54 -03:00
|
|
|
|
|
|
|
rem use the performance testsuite. This is quick and simple
|
2015-04-13 14:11:40 -03:00
|
|
|
set job1="%dir%..\tools\pybench\pybench.py" -n 1 -C 1 --with-gc
|
|
|
|
set path1="%dir%..\tools\pybench"
|
2015-04-13 13:59:54 -03:00
|
|
|
|
|
|
|
rem or the whole testsuite for more thorough testing
|
2015-04-13 14:11:40 -03:00
|
|
|
set job2="%dir%..\lib\test\regrtest.py"
|
|
|
|
set path2="%dir%..\lib"
|
2015-04-13 13:59:54 -03:00
|
|
|
|
|
|
|
set job=%job1%
|
|
|
|
set clrpath=%path1%
|
|
|
|
|
|
|
|
:CheckOpts
|
|
|
|
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
|
|
|
|
if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts
|
2015-04-13 14:11:40 -03:00
|
|
|
if "%1"=="-M" (set parallel=) & shift & goto CheckOpts
|
|
|
|
|
|
|
|
|
|
|
|
rem We cannot cross compile PGO builds, as the optimization needs to be run natively
|
|
|
|
set vs_platf=x86
|
|
|
|
set PGO=%dir%win32-pgo
|
|
|
|
|
|
|
|
if "%platf%"=="x64" (set vs_platf=amd64) & (set PGO=%dir%amd64-pgo)
|
|
|
|
rem Setup the environment
|
|
|
|
call "%dir%env.bat" %vs_platf%
|
2015-04-13 13:59:54 -03:00
|
|
|
|
|
|
|
|
|
|
|
rem build the instrumented version
|
2015-04-13 14:11:40 -03:00
|
|
|
msbuild "%dir%pcbuild.proj" %parallel% /t:Build /p:Configuration=PGInstrument /p:Platform=%platf% %1 %2 %3 %4 %5 %6 %7 %8 %9
|
2015-04-13 13:59:54 -03:00
|
|
|
|
|
|
|
rem remove .pyc files, .pgc files and execute the job
|
2015-04-13 14:11:40 -03:00
|
|
|
"%PGO%\python.exe" "%dir%rmpyc.py" %clrpath%
|
|
|
|
del "%PGO%\*.pgc"
|
|
|
|
"%PGO%\python.exe" %job%
|
2015-04-13 13:59:54 -03:00
|
|
|
|
2015-04-13 14:11:40 -03:00
|
|
|
rem build optimized version
|
|
|
|
msbuild "%dir%pcbuild.proj" %parallel% /t:Build /p:Configuration=PGUpdate /p:Platform=%platf% %1 %2 %3 %4 %5 %6 %7 %8 %9
|