Lines Matching refs:program

25 corresponding to a Perl program, and in turn a native executable, the
68 sufficient type information in the Perl program) some of the
108 The cross referencing back end (B::Xref) produces a report on your program,
111 report from the I<pod2man> program that comes with Perl:
221 This module saves the internal compiled state of your Perl program
224 program links against the Perl interpreter library, so it
226 library) or program size. It may, however, save you startup time.
238 To turn a Perl program into executable byte code, you can use C<perlcc>
244 module or program, it is as portable as Perl source (assuming that
245 the user of the module or program has a modern-enough Perl interpreter
253 The optimized C back end will turn your Perl program's run time
254 code-path into an equivalent (but optimized) C program that manipulates
255 the Perl data structures directly. The program will still link against
260 switch. To compile a Perl program (ending in C<.pl>
278 module, which allows a Perl program to inspect its innards. The
290 This is like saying C<use O 'Deparse'> in your Perl program.
304 I<assemble> program that produces bytecode.
315 program's parse tree. This bytecode is written to a file, from where
317 do the expensive program compilation once, save the interpreter's
319 program is to be executed. See L</"The Bytecode Back End">
328 program. See L</"The Simple C Back End"> for details about usage.
332 This module writes out C code corresponding to your program's
334 interpreter and its state in a C program, the B::CC module makes a
335 C program that does not involve the interpreter. As a consequence,
366 I<disassemble> program that comes with the bytecode.
397 This module is used by the L<perlcc> program, which compiles a module
399 program, and is used to prevent B::CC from producing C code for the
416 formats are defined and used within a program and the modules it
441 before your program begins running but after your program has finished
443 through compiler back-end), INIT{}, program runs, END{}.