Profile the internals of a Perl program.This module lets perl keep a count of each internal operation in a program so that you can profile your Perl code.
(Added: Sun Jan 02 2000 Hits: 126 Rating: 0.00 Votes: 0)
A data debugging tool for the XS programmer. Devel::Peek contains functions which allows raw Perl datatypes to be manipulated from a Perl script. This is used by those who do XS programming to check that the data they are sending from C to Perl looks as they think it should look. The trick, then, is to know what the raw datatype is supposed to look like when it gets to Perl.
(Added: Sun Jan 02 2000 Hits: 123 Rating: 0.00 Votes: 0)
Perl extension querying sawampersand variable. There's a global variable in the perl source, called sawampersand. It gets set to true in that moment in which the parser sees one of $`, $', and $&. It never can be set to false again. Trying to set it to false breaks the handling of the $`, $&, and $' completely.
(Added: Sun Jan 02 2000 Hits: 125 Rating: 0.00 Votes: 0)
The Devel::SmallProf profiler is focused on the time taken for a program run on a line-by-line basis. It is intended to be as
small'' in terms of impact on the speed and memory usage of the profiled program as possible and also in terms of being simple to use.
(Added: Sun Jan 02 2000 Hits: 139 Rating: 0.00 Votes: 0)
A weak reference maintains a
pointer'' to an object (specified by a reference to it, just like bless) that does not contribute to the object's reference count; thus, the object's storage will be freed when only weak references remain to it.
(Added: Sun Jan 02 2000 Hits: 125 Rating: 0.00 Votes: 0)