in reply to wishlist: static analysis of perl modules
CPAN is your friend :) I've found these modules:
The Devel::DProf package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subroutines are being called most often. This information can also be used to create an execution graph of the script, showing subroutine relationships.
This module implements a Perl profiler that outputs profiling data in a format compatible with dprofpp, Devel::DProf's profile analysis tool. It is meant to be a drop-in replacement for Devel::DProf.
The profiler module is completely automatic in its basic mode. You simply "use" the module at the top of you main script. The module will then automatically instrument all subroutines in the code, profile each subroutine call during the execution of the script, and print out a report of usage.
There also some nodes here at the Monastery:
Ciao, Valerio
update: added some links. For the women part look at Sex Tips For Geeks: How To Be Sexy and for the ironing: Extreme Ironing :)))
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: wishlist: static analysis of perl modules
by dash2 (Hermit) on Feb 23, 2003 at 17:04 UTC |