Run the desired command under the profiler:
analizo=/path/to/analizo
perl -d:DProf -I$analizo/lib $analizo/lib/Analizo/Command/COMMAND
Process the profiler output (this has to be run from the same directory where you run the profiler):
dprofpp
Run the desired command under the profiler:
COMMAND=metrics SOURCE=t/samples/hello_world/cpp/ perl profile.pl
Process the profiler output (this has to be run from the same directory where you run the profiler) in html format:
nytprofhtml --open
You can run profiler running analizo over any source-code you want by passing via command line argument or $SOURCE variable, eg:
SOURCE=t/samples/hello_world/cpp/ perl profile.pl
perl profile.pl t/samples/hello_world/cpp/
- Profiling Perl, by Simon Cozens
- Devel::NYTProf - Profiling Perl code, by Leo Lapworth