in reply to Re: Profiling Code (Subroutine Documenting.)
in thread Profiling Code (Subroutine Documenting.)

One of the B modules might do what you want

Devel::Symdump does this quite handily. For example to print all the subroutines in the symbol table for package Foo do:

use Devel::Symdump; print "$_\n" foreach Devel::Symdump->functions('Foo');

Of course - this does ignore any subroutines that arrive via AUTOLOAD.