Search results for "module:Devel::Size"
Devel::Size - Perl extension for finding the memory usage of Perl variables
This module figures out the real size of Perl variables in bytes, as accurately as possible. Call functions with a reference to the variable you want the size of. If the variable is a plain scalar it returns the size of this scalar. If the variable i...
NWCLARK/Devel-Size-0.83 - 23 Apr 2019 17:19:03 UTC
Devel::Size::Report - generate a size report for all elements in a structure
Devel::Size can only report the size of a single element or the total size of a structure (array, hash etc). This module enhances Devel::Size by giving you the ability to generate a full size report for each element in a structure. You have full cont...
TELS/Devel-Size-Report-0.13 - 06 Apr 2008 17:43:02 UTC
Devel::Events::Filter::Size - Add Devel::Size info to event data.
This class uses Devel::Size and optionally Devel::Size::Report to provide size information for data found inside events. Typical usage would be to apply it to the "object" field in conjunction with Devel::Events::Objects....
NUFFIN/Devel-Events-Filter-Size-0.03 - 20 Sep 2007 15:43:40 UTC
Log::Log4perl::AutoCategorize - extended Log::Log4perl logging
Before diving in, a few notes: This is not intended to document Log4perl (also l4p, abbrev for Log::Log4perl); that documentation is a good tutorial, and is quite thorough and complete. In this document, I use Logger as the *official* shorthand for L...
JCROMIE/Log-Log4perl-AutoCategorize-0.03 - 05 Nov 2003 19:00:25 UTC
Devel::SizeMe - Extension for extracting detailed memory usage information
NOTE: This is all rather alpha and anything may change. The functions traverse memory structures and return the total memory size in bytes. See Devel::Size for more information. If the "SIZEME" env var is set then the functions also stream out detail...
TIMB/Devel-SizeMe-0.19 - 05 Sep 2013 20:58:51 UTC
Devel::InterpreterSize - Get rough sizes for the memory useage of perl
Gives you back some simple figures for how much memory your perl us using, in kilobytes....
BOBTFISH/Devel-InterpreterSize-0.01 - 07 Jun 2012 22:47:03 UTC
Devel::SizeMe::Core - Guts of Devel::SizeMe
NOTE: This is all rather alpha and anything may change. The functions traverse memory structures and return the total memory size in bytes. See Devel::Size for more information....
TIMB/Devel-SizeMe-0.19 - 05 Sep 2013 20:58:51 UTC
Devel::PDB - A simple Curses-based Perl DeBugger
PerlDeBugger is a Curses-based Perl debugger with most of the essential functions such as monitoring windows for paddlist, call stack, custom watch expressions, etc. Suitable for debugging or tracing complicated Perl applications on the spot. FUNCTIO...
KOCEASY/Devel-PDB-1.6 - 28 Dec 2015 21:29:11 UTC
Devel::Kit - Handy toolbox of things to ease development/debugging.
From one line data dumping sanity checks to debug print statements in a large body of code I often found myself reinventing these basic solutions. Hence this module was born to help give a host of functions/functionality with a minimum of typing/effo...
DMUEY/Devel-Kit-0.82 - 23 Oct 2020 17:11:22 UTC
Devel::Peek - 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, the...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
Devel::Arena - Perl extension for inspecting the core's arena structures
Inspect the arena structures that perl uses for SV allocation. HARNESS_PERL_SWITCHES=-MDevel::Arena=write_stats_at_END make test EXPORT None by default. * sv_stats [DONT_SHARE] Returns a hashref giving stats derived from inspecting the SV heads via t...
NWCLARK/Devel-Arena-0.23 - 27 Feb 2006 18:34:41 UTC
Devel::Optic - Production safe data inspector
Devel::Optic is a fiberscope <https://en.wikipedia.org/wiki/Fiberscope> for Perl programs. Just like a real fiberscope, it provides 'nondestructive inspection' of your variables. In other words: use this in your production environment to figure out w...
BTYLER/Devel-Optic-0.015 - 13 Jan 2020 20:30:29 UTC
Devel::Malloc - Low-level memory and atomic operations for real-time inter-thread communication.
The _malloc() function allocates size bytes and returns memory address to the allocated memory. You can store bytes to memory using _memset() and retrieve them using _memget(). The _free() function deallocates memory. Memory address returned by _mall...
YURY/Devel-Malloc-0.03 - 14 Jun 2012 12:30:55 UTC
Devel::ptkdb - Perl debugger using a Tk GUI
ptkdb is a debugger for perl that uses perlTk for a user interface. Features include: Hot Variable Inspection Breakpoint Control Panel Expression List Subroutine Tree...
AEPAGE/Devel-ptkdb-1.1091 - 26 Apr 2004 17:06:19 UTC
Devel::DProf - a DEPRECATED Perl code profiler
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 subro...
FLORA/Devel-DProf-20110802.00 - 02 Aug 2011 13:30:00 UTC
Devel::Events - Extensible instrumentation framework
Devel::Events is an event generation, filtering and analaysis framework for instrumenting and auditing perl code. The design's purpose is to decouple the mechanics of code instrumentation from the analysis, making it easier to write debugging/profili...
ETHER/Devel-Events-0.09 - 27 Mar 2018 01:02:58 UTC
Devel::FindGlobals - Find global variables and their size
This module just runs around and over the symbol table, finds global variables, gets their sizes with Devel::Size, and then prints them out. find_globals() just finds the globals (and returns a hashref), and find_globals_sizes() returns the globals a...
CNANDOR/Devel-FindGlobals-0.03 - 08 Oct 2004 23:18:34 UTC
Devel::DebugInit - Perl extension for creating a debugger initialization files from C header file macros
Devel::DebugInit is aimed at C/C++ developers who want access to C macro definitions from within a debugger. It provides a simple and automated way of creating debugger initialization files for a specific project. The initialization files created con...
JASONS/Devel-DebugInit-0.3 - 29 Aug 1997 17:42:16 UTC
Devel::Plumber - memory leak finder for C programs
Devel::Plumber is a memory leak finder for C programs, implemented in Perl. It uses GDB to walk internal glibc heap structures, so it can work on either a live process or a core file. Devel::Plumber treats the C heap of the program under test as a co...
GNB/Devel-Plumber-0.3.4 - 21 Dec 2011 05:26:05 UTC