in reply to Perl profiler

You may want a debugger, included with Perl, or possibly a profiler: Devel::DProf. Both of these tools are very helpful, and some other code analysis tools you might want to try out on this monster are: Xref - code crossreferencing, Devel::Cover - Code coverage analysis, and Runops::Trace - trace what the perl runloop is doing from your program.

Replies are listed 'Best First'.
Re^2: Perl profiler
by cidroz (Initiate) on Aug 06, 2007 at 22:19 UTC
    much thanks...