Search results for "module:B::"
B - The Perl Compiler Backend
The "B" module supplies classes which allow a Perl program to delve into its own innards. It is the module used to implement the "backends" of the Perl compiler. Usage of the compiler does not require knowledge of this module: see the O module for th...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
B::CC - Perl compiler's optimized C translation backend
This compiler backend takes Perl source and generates C source code corresponding to the flow of your program with unrolled ops and optimised stack handling and lexicals variable types. In other words, this backend is somewhat a "real" compiler in th...
RURBAN/B-C-1.57 - 07 May 2019 12:10:41 UTC
T2::B - Import Test2::Bundle::* in a box.
See T for documentation....
EXODIST/T-0.001 - 20 Oct 2016 16:58:12 UTC
B::Tap - Inject tapping node to optree
B::Tap is tapping library for B tree. "tap" function injects custom ops for fetching result of the node. The implementation works, but it's not beautiful code. I'm newbie about the B world, Patches welcome. WARNINGS: This module is in a alpha state. ...
TOKUHIROM/B-Tap-0.16 - 10 Jul 2020 07:12:01 UTC
B::COW - B::COW additional B helpers to check COW status
B::COW provides some naive additional B helpers to check the COW status of one SvPV. COW or Copy On Write introduction A COWed SvPV is sharing its string (the PV) with other SvPVs. It's a (kind of) Read Only C string, that would be Copied On Write (C...
ATOOMIC/B-COW-0.007 - 20 Oct 2022 15:01:08 UTC
B::Lint - Perl lint
The B::Lint module is equivalent to an extended version of the -w option of perl. It is named after the program lint which carries out a similar process for C programs....
RJBS/B-Lint-1.20 - 26 Oct 2014 20:05:03 UTC
B::Tree - Simplified version of B::Graph for demonstration
This is a very cut-down version of "B::Graph"; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with the type of op. It was written as an example of how to write compiler mod...
SIMON/B-Tree-0.02 - 29 Nov 2000 12:36:59 UTC
B::Xref - Generates cross reference reports for Perl programs
The B::Xref module is used to generate a cross reference listing of all definitions and uses of variables, subroutines and formats in a Perl program. It is implemented as a backend for the Perl compiler. The report generated is in the following forma...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
B::Size - Measure size of Perl OPs and SVs
See B::TerseSize...
PGOLLUCCI/B-Size-0.09 - 02 Dec 2006 12:57:35 UTC
B::Stats - print optree statistics
Print statistics for all generated ops. static analysis at compile-time, static analysis at end-time to include all runtime added modules, and dynamic analysis at run-time, as with a profiler. The purpose is to help you in your goal: no bloat;...
RURBAN/B-Stats-0.09 - 08 Aug 2014 22:27:49 UTC
B::Terse - Walk Perl syntax tree, printing terse info about ops
This module prints the contents of the parse tree, but without as much information as CPAN module B::Debug. For comparison, "print "Hello, world."" produced 96 lines of output from B::Debug, but only 6 from B::Terse. This module is useful for people ...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
B::Debug - Walk Perl syntax tree, printing debug info about ops
See ext/B/README and the newer B::Concise....
RURBAN/B-Debug-1.26 - 03 Dec 2017 20:37:05 UTC
B::Flags - Friendlier flags for B
Stringification of flags. By default, "$foo->flags" when passed an object in the "B" class will produce a relatively meaningless number, which one would need to grovel through the Perl source code in order to do anything useful with. This module adds...
RURBAN/B-Flags-0.17 - 14 Jul 2017 08:42:27 UTC
B::Stash - show what stashes are loaded
B::Stash has a poor side-effect only API and is only used by perlcc and B::C, and there its usability is also inferior. It hooks into CHECK and prints a comma-seperated list of loaded stashes (*package names*) prefixed with -u. With the xs option sta...
RURBAN/B-C-1.57 - 07 May 2019 12:10:41 UTC
B::Size2 - Measure size of Perl OPs and SVs
*B::Size2 is a fork of B::Size 0.09 for maintainance*....
GFUJI/B-Size2-2.07 - 07 Jun 2013 05:04:01 UTC
B::Graph - Perl compiler backend to produce graphs of OP trees
This module is a backend to the perl compiler (B::*) which, instead of outputting bytecode or C based on perl's compiled version of a program, writes descriptions in graph-description languages specifying graphs that show the program's structure. It ...
SMCCAM/B-Graph-0.51 - 01 Jan 2001 04:01:40 UTC
B::Tools - Simple B operating library
B::Tools is simple B operating library....
TOKUHIROM/B-Tools-0.01 - 14 Sep 2013 00:07:47 UTC
B::Fathom - a module to evaluate the readability of Perl code
"B::Fathom" is a backend to the Perl compiler; it analyzes the syntax of your Perl code, and estimates the readability of your program. Currently, this module's idea of `readability' is based on methods used for analyzing readability of English prose...
KSTAR/B-Fathom-0.07 - 08 Sep 2000 13:44:20 UTC
B::Bblock - Walk basic blocks
This module is used by the B::CC backend. It walks "basic blocks". A basic block is a series of operations which is known to execute from start to finish, with no possibility of branching or halting. The block is the list of ops from the every leader...
RURBAN/B-C-1.57 - 07 May 2019 12:10:41 UTC