This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
First class regexps.
[perl5.git] / ext / B / B.pm
CommitLineData
a798dbf2
MB
1# B.pm
2#
1a52ab62 3# Copyright (c) 1996, 1997, 1998 Malcolm Beattie
a798dbf2
MB
4#
5# You may distribute under the terms of either the GNU General Public
6# License or the Artistic License, as specified in the README file.
7#
8package B;
28b605d8 9
4df7f6af 10our $VERSION = '1.18';
28b605d8 11
9426adcd 12use XSLoader ();
a798dbf2 13require Exporter;
9426adcd 14@ISA = qw(Exporter);
b2590c4e 15
f72d64f0
DC
16# walkoptree_slow comes from B.pm (you are there),
17# walkoptree comes from B.xs
f6c2d85b
JH
18@EXPORT_OK = qw(minus_c ppname save_BEGINs
19 class peekop cast_I32 cstring cchar hash threadsv_names
b2590c4e 20 main_root main_start main_cv svref_2object opnumber
5ce57cc0 21 sub_generation amagic_generation perlstring
f6c2d85b
JH
22 walkoptree_slow walkoptree walkoptree_exec walksymtable
23 parents comppadlist sv_undef compile_stats timing_info
e412117e 24 begin_av init_av check_av end_av regex_padav dowarn defstash
baccf54f 25 curstash warnhook diehook inc_gv @optype @specialsv_name
651aa52e 26 );
e412117e 27push @EXPORT_OK, qw(unitcheck_av) if $] > 5.009;
b2590c4e 28
4c1f658f 29sub OPf_KIDS ();
a798dbf2
MB
30use strict;
31@B::SV::ISA = 'B::OBJECT';
32@B::NULL::ISA = 'B::SV';
33@B::PV::ISA = 'B::SV';
34@B::IV::ISA = 'B::SV';
4edc9001 35@B::NV::ISA = 'B::SV';
4df7f6af 36# RV is eliminated with 5.11.0, but effectively is a specialisation of IV now.
3ce3ed55 37@B::RV::ISA = $] >= 5.011 ? 'B::IV' : 'B::SV';
a798dbf2 38@B::PVIV::ISA = qw(B::PV B::IV);
4edc9001 39@B::PVNV::ISA = qw(B::PVIV B::NV);
a798dbf2 40@B::PVMG::ISA = 'B::PVNV';
5c35adbb 41@B::REGEXP::ISA = 'B::PVMG' if $] >= 5.011;
a01b8a53 42# Change in the inheritance hierarchy post 5.9.0
f5ba1307 43@B::PVLV::ISA = $] > 5.009 ? 'B::GV' : 'B::PVMG';
6822775c
NC
44# BM is eliminated post 5.9.5, but effectively is a specialisation of GV now.
45@B::BM::ISA = $] > 5.009005 ? 'B::GV' : 'B::PVMG';
a798dbf2
MB
46@B::AV::ISA = 'B::PVMG';
47@B::GV::ISA = 'B::PVMG';
48@B::HV::ISA = 'B::PVMG';
49@B::CV::ISA = 'B::PVMG';
276493cb
SM
50@B::IO::ISA = 'B::PVMG';
51@B::FM::ISA = 'B::CV';
a798dbf2
MB
52
53@B::OP::ISA = 'B::OBJECT';
54@B::UNOP::ISA = 'B::OP';
55@B::BINOP::ISA = 'B::UNOP';
56@B::LOGOP::ISA = 'B::UNOP';
a798dbf2
MB
57@B::LISTOP::ISA = 'B::BINOP';
58@B::SVOP::ISA = 'B::OP';
7934575e 59@B::PADOP::ISA = 'B::OP';
a798dbf2 60@B::PVOP::ISA = 'B::OP';
a798dbf2
MB
61@B::LOOP::ISA = 'B::LISTOP';
62@B::PMOP::ISA = 'B::LISTOP';
63@B::COP::ISA = 'B::OP';
64
65@B::SPECIAL::ISA = 'B::OBJECT';
66
baccf54f
NC
67@B::optype = qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP);
68# bytecode.pl contained the following comment:
69# Nullsv *must* come first in the following so that the condition
70# ($$sv == 0) can continue to be used to test (sv == Nullsv).
71@B::specialsv_name = qw(Nullsv &PL_sv_undef &PL_sv_yes &PL_sv_no
72 (SV*)pWARN_ALL (SV*)pWARN_NONE (SV*)pWARN_STD);
73
a798dbf2
MB
74{
75 # Stop "-w" from complaining about the lack of a real B::OBJECT class
76 package B::OBJECT;
77}
78
002b978b
RH
79sub B::GV::SAFENAME {
80 my $name = (shift())->NAME;
d9963e60
RH
81
82 # The regex below corresponds to the isCONTROLVAR macro
83 # from toke.c
84
7a9b44b9
RH
85 $name =~ s/^([\cA-\cZ\c\\c[\c]\c?\c_\c^])/"^".
86 chr( utf8::unicode_to_native( 64 ^ ord($1) ))/e;
87
88 # When we say unicode_to_native we really mean ascii_to_native,
89 # which matters iff this is a non-ASCII platform (EBCDIC).
90
002b978b
RH
91 return $name;
92}
93
d9963e60
RH
94sub B::IV::int_value {
95 my ($self) = @_;
96 return (($self->FLAGS() & SVf_IVisUV()) ? $self->UVX : $self->IV);
97}
98
f3402b25
RH
99sub B::NULL::as_string() {""}
100sub B::IV::as_string() {goto &B::IV::int_value}
101sub B::PV::as_string() {goto &B::PV::PV}
102
a798dbf2
MB
103my $debug;
104my $op_count = 0;
105my @parents = ();
106
107sub debug {
108 my ($class, $value) = @_;
109 $debug = $value;
110 walkoptree_debug($value);
111}
112
a798dbf2
MB
113sub class {
114 my $obj = shift;
115 my $name = ref $obj;
116 $name =~ s/^.*:://;
117 return $name;
118}
119
120sub parents { \@parents }
121
122# For debugging
123sub peekop {
124 my $op = shift;
3f872cb9 125 return sprintf("%s (0x%x) %s", class($op), $$op, $op->name);
a798dbf2
MB
126}
127
b2590c4e 128sub walkoptree_slow {
a798dbf2
MB
129 my($op, $method, $level) = @_;
130 $op_count++; # just for statistics
131 $level ||= 0;
132 warn(sprintf("walkoptree: %d. %s\n", $level, peekop($op))) if $debug;
156f89f0 133 $op->$method($level) if $op->can($method);
a798dbf2
MB
134 if ($$op && ($op->flags & OPf_KIDS)) {
135 my $kid;
136 unshift(@parents, $op);
137 for ($kid = $op->first; $$kid; $kid = $kid->sibling) {
b2590c4e 138 walkoptree_slow($kid, $method, $level + 1);
a798dbf2
MB
139 }
140 shift @parents;
141 }
156f89f0
JJ
142 if (class($op) eq 'PMOP'
143 && ref($op->pmreplroot)
144 && ${$op->pmreplroot}
145 && $op->pmreplroot->isa( 'B::OP' ))
146 {
0091380b
RGS
147 unshift(@parents, $op);
148 walkoptree_slow($op->pmreplroot, $method, $level + 1);
149 shift @parents;
150 }
a798dbf2
MB
151}
152
153sub compile_stats {
154 return "Total number of OPs processed: $op_count\n";
155}
156
157sub timing_info {
158 my ($sec, $min, $hr) = localtime;
159 my ($user, $sys) = times;
160 sprintf("%02d:%02d:%02d user=$user sys=$sys",
161 $hr, $min, $sec, $user, $sys);
162}
163
164my %symtable;
2b8dc4d2
DM
165
166sub clearsym {
167 %symtable = ();
168}
169
a798dbf2
MB
170sub savesym {
171 my ($obj, $value) = @_;
172# warn(sprintf("savesym: sym_%x => %s\n", $$obj, $value)); # debug
173 $symtable{sprintf("sym_%x", $$obj)} = $value;
174}
175
176sub objsym {
177 my $obj = shift;
178 return $symtable{sprintf("sym_%x", $$obj)};
179}
180
181sub walkoptree_exec {
182 my ($op, $method, $level) = @_;
244826eb 183 $level ||= 0;
a798dbf2
MB
184 my ($sym, $ppname);
185 my $prefix = " " x $level;
186 for (; $$op; $op = $op->next) {
187 $sym = objsym($op);
188 if (defined($sym)) {
189 print $prefix, "goto $sym\n";
190 return;
191 }
192 savesym($op, sprintf("%s (0x%lx)", class($op), $$op));
193 $op->$method($level);
3f872cb9 194 $ppname = $op->name;
1a67a97c 195 if ($ppname =~
62e36f8a 196 /^(d?or(assign)?|and(assign)?|mapwhile|grepwhile|entertry|range|cond_expr)$/)
1a67a97c 197 {
a798dbf2
MB
198 print $prefix, uc($1), " => {\n";
199 walkoptree_exec($op->other, $method, $level + 1);
200 print $prefix, "}\n";
3f872cb9 201 } elsif ($ppname eq "match" || $ppname eq "subst") {
a798dbf2
MB
202 my $pmreplstart = $op->pmreplstart;
203 if ($$pmreplstart) {
204 print $prefix, "PMREPLSTART => {\n";
205 walkoptree_exec($pmreplstart, $method, $level + 1);
206 print $prefix, "}\n";
207 }
3f872cb9 208 } elsif ($ppname eq "substcont") {
a798dbf2
MB
209 print $prefix, "SUBSTCONT => {\n";
210 walkoptree_exec($op->other->pmreplstart, $method, $level + 1);
211 print $prefix, "}\n";
212 $op = $op->other;
3f872cb9 213 } elsif ($ppname eq "enterloop") {
a798dbf2
MB
214 print $prefix, "REDO => {\n";
215 walkoptree_exec($op->redoop, $method, $level + 1);
216 print $prefix, "}\n", $prefix, "NEXT => {\n";
217 walkoptree_exec($op->nextop, $method, $level + 1);
218 print $prefix, "}\n", $prefix, "LAST => {\n";
219 walkoptree_exec($op->lastop, $method, $level + 1);
220 print $prefix, "}\n";
3f872cb9 221 } elsif ($ppname eq "subst") {
a798dbf2
MB
222 my $replstart = $op->pmreplstart;
223 if ($$replstart) {
224 print $prefix, "SUBST => {\n";
225 walkoptree_exec($replstart, $method, $level + 1);
226 print $prefix, "}\n";
227 }
228 }
229 }
230}
231
232sub walksymtable {
233 my ($symref, $method, $recurse, $prefix) = @_;
234 my $sym;
0cc1d052 235 my $ref;
b6b0fb7b
MB
236 my $fullname;
237 no strict 'refs';
0cc1d052
NIS
238 $prefix = '' unless defined $prefix;
239 while (($sym, $ref) = each %$symref) {
b6b0fb7b 240 $fullname = "*main::".$prefix.$sym;
a798dbf2
MB
241 if ($sym =~ /::$/) {
242 $sym = $prefix . $sym;
b4e94495 243 if ($sym ne "main::" && $sym ne "<none>::" && &$recurse($sym)) {
b6b0fb7b 244 walksymtable(\%$fullname, $method, $recurse, $sym);
a798dbf2
MB
245 }
246 } else {
b6b0fb7b 247 svref_2object(\*$fullname)->$method();
a798dbf2
MB
248 }
249 }
250}
251
252{
253 package B::Section;
254 my $output_fh;
255 my %sections;
85cf7f2e 256
a798dbf2
MB
257 sub new {
258 my ($class, $section, $symtable, $default) = @_;
259 $output_fh ||= FileHandle->new_tmpfile;
260 my $obj = bless [-1, $section, $symtable, $default], $class;
261 $sections{$section} = $obj;
262 return $obj;
263 }
85cf7f2e 264
a798dbf2
MB
265 sub get {
266 my ($class, $section) = @_;
267 return $sections{$section};
268 }
269
270 sub add {
271 my $section = shift;
272 while (defined($_ = shift)) {
273 print $output_fh "$section->[1]\t$_\n";
274 $section->[0]++;
275 }
276 }
277
278 sub index {
279 my $section = shift;
280 return $section->[0];
281 }
282
283 sub name {
284 my $section = shift;
285 return $section->[1];
286 }
287
288 sub symtable {
289 my $section = shift;
290 return $section->[2];
291 }
85cf7f2e 292
a798dbf2
MB
293 sub default {
294 my $section = shift;
295 return $section->[3];
296 }
85cf7f2e 297
a798dbf2
MB
298 sub output {
299 my ($section, $fh, $format) = @_;
300 my $name = $section->name;
301 my $sym = $section->symtable || {};
302 my $default = $section->default;
303
304 seek($output_fh, 0, 0);
305 while (<$output_fh>) {
306 chomp;
307 s/^(.*?)\t//;
308 if ($1 eq $name) {
309 s{(s\\_[0-9a-f]+)} {
310 exists($sym->{$1}) ? $sym->{$1} : $default;
311 }ge;
312 printf $fh $format, $_;
313 }
314 }
315 }
316}
317
9426adcd 318XSLoader::load 'B';
a798dbf2
MB
319
3201;
7f20e9dd
GS
321
322__END__
323
324=head1 NAME
325
326B - The Perl Compiler
327
328=head1 SYNOPSIS
329
330 use B;
331
332=head1 DESCRIPTION
333
1a52ab62
MB
334The C<B> module supplies classes which allow a Perl program to delve
335into its own innards. It is the module used to implement the
336"backends" of the Perl compiler. Usage of the compiler does not
337require knowledge of this module: see the F<O> module for the
338user-visible part. The C<B> module is of use to those who want to
339write new compiler backends. This documentation assumes that the
340reader knows a fair amount about perl's internals including such
341things as SVs, OPs and the internal symbol table and syntax tree
342of a program.
343
85cf7f2e
MJD
344=head1 OVERVIEW
345
346The C<B> module contains a set of utility functions for querying the
347current state of the Perl interpreter; typically these functions
348return objects from the B::SV and B::OP classes, or their derived
349classes. These classes in turn define methods for querying the
350resulting objects about their own internal state.
351
352=head1 Utility Functions
353
354The C<B> module exports a variety of functions: some are simple
355utility functions, others provide a Perl program with a way to
356get an initial "handle" on an internal object.
357
358=head2 Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV> objects
359
3d036c2b 360For descriptions of the class hierarchy of these objects and the
85cf7f2e
MJD
361methods that can be called on them, see below, L<"OVERVIEW OF
362CLASSES"> and L<"SV-RELATED CLASSES">.
363
364=over 4
365
366=item sv_undef
367
368Returns the SV object corresponding to the C variable C<sv_undef>.
369
370=item sv_yes
371
372Returns the SV object corresponding to the C variable C<sv_yes>.
373
374=item sv_no
375
376Returns the SV object corresponding to the C variable C<sv_no>.
377
378=item svref_2object(SVREF)
379
380Takes a reference to any Perl value, and turns the referred-to value
381into an object in the appropriate B::OP-derived or B::SV-derived
382class. Apart from functions such as C<main_root>, this is the primary
383way to get an initial "handle" on an internal perl data structure
384which can then be followed with the other access methods.
385
f31c3107
SM
386The returned object will only be valid as long as the underlying OPs
387and SVs continue to exist. Do not attempt to use the object after the
388underlying structures are freed.
389
85cf7f2e
MJD
390=item amagic_generation
391
392Returns the SV object corresponding to the C variable C<amagic_generation>.
393
e13efe3c 394=item init_av
85cf7f2e
MJD
395
396Returns the AV object (i.e. in class B::AV) representing INIT blocks.
397
ece599bd
RGS
398=item check_av
399
400Returns the AV object (i.e. in class B::AV) representing CHECK blocks.
401
676456c2
AG
402=item unitcheck_av
403
404Returns the AV object (i.e. in class B::AV) representing UNITCHECK blocks.
405
85cf7f2e
MJD
406=item begin_av
407
408Returns the AV object (i.e. in class B::AV) representing BEGIN blocks.
409
410=item end_av
411
412Returns the AV object (i.e. in class B::AV) representing END blocks.
413
414=item comppadlist
415
416Returns the AV object (i.e. in class B::AV) of the global comppadlist.
417
418=item regex_padav
419
420Only when perl was compiled with ithreads.
421
e13efe3c 422=item main_cv
85cf7f2e
MJD
423
424Return the (faked) CV corresponding to the main part of the Perl
425program.
426
427=back
428
429=head2 Functions for Examining the Symbol Table
430
431=over 4
432
433=item walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
434
435Walk the symbol table starting at SYMREF and call METHOD on each
436symbol (a B::GV object) visited. When the walk reaches package
437symbols (such as "Foo::") it invokes RECURSE, passing in the symbol
438name, and only recurses into the package if that sub returns true.
439
440PREFIX is the name of the SYMREF you're walking.
441
442For example:
443
444 # Walk CGI's symbol table calling print_subs on each symbol.
445 # Recurse only into CGI::Util::
446 walksymtable(\%CGI::, 'print_subs', sub { $_[0] eq 'CGI::Util::' },
447 'CGI::');
448
449print_subs() is a B::GV method you have declared. Also see L<"B::GV
450Methods">, below.
451
452=back
453
454=head2 Functions Returning C<B::OP> objects or for walking op trees
455
3d036c2b 456For descriptions of the class hierarchy of these objects and the
85cf7f2e
MJD
457methods that can be called on them, see below, L<"OVERVIEW OF
458CLASSES"> and L<"OP-RELATED CLASSES">.
459
460=over 4
461
462=item main_root
463
464Returns the root op (i.e. an object in the appropriate B::OP-derived
465class) of the main part of the Perl program.
466
467=item main_start
468
469Returns the starting op of the main part of the Perl program.
470
471=item walkoptree(OP, METHOD)
472
473Does a tree-walk of the syntax tree based at OP and calls METHOD on
474each op it visits. Each node is visited before its children. If
475C<walkoptree_debug> (see below) has been called to turn debugging on then
476the method C<walkoptree_debug> is called on each op before METHOD is
477called.
478
479=item walkoptree_debug(DEBUG)
480
481Returns the current debugging flag for C<walkoptree>. If the optional
482DEBUG argument is non-zero, it sets the debugging flag to that. See
483the description of C<walkoptree> above for what the debugging flag
484does.
485
486=back
487
488=head2 Miscellaneous Utility Functions
489
490=over 4
491
492=item ppname(OPNUM)
493
494Return the PP function name (e.g. "pp_add") of op number OPNUM.
495
496=item hash(STR)
497
498Returns a string in the form "0x..." representing the value of the
499internal hash function used by perl on string STR.
500
501=item cast_I32(I)
502
503Casts I to the internal I32 type used by that perl.
504
505=item minus_c
506
507Does the equivalent of the C<-c> command-line option. Obviously, this
508is only useful in a BEGIN block or else the flag is set too late.
509
510=item cstring(STR)
511
512Returns a double-quote-surrounded escaped version of STR which can
513be used as a string in C source code.
514
515=item perlstring(STR)
516
517Returns a double-quote-surrounded escaped version of STR which can
518be used as a string in Perl source code.
519
520=item class(OBJ)
521
522Returns the class of an object without the part of the classname
523preceding the first C<"::">. This is used to turn C<"B::UNOP"> into
524C<"UNOP"> for example.
525
526=item threadsv_names
527
528In a perl compiled for threads, this returns a list of the special
529per-thread threadsv variables.
530
531=back
532
baccf54f
NC
533=head2 Exported utility variabiles
534
535=over 4
536
537=item @optype
538
539 my $op_type = $optype[$op_type_num];
85cf7f2e 540
baccf54f
NC
541A simple mapping of the op type number to its type (like 'COP' or 'BINOP').
542
543=item @specialsv_name
544
545 my $sv_name = $specialsv_name[$sv_index];
546
547Certain SV types are considered 'special'. They're represented by
548B::SPECIAL and are referred to by a number from the specialsv_list.
549This array maps that number back to the name of the SV (like 'Nullsv'
550or '&PL_sv_undef').
551
552=back
85cf7f2e
MJD
553
554
1a52ab62
MB
555=head1 OVERVIEW OF CLASSES
556
557The C structures used by Perl's internals to hold SV and OP
558information (PVIV, AV, HV, ..., OP, SVOP, UNOP, ...) are modelled on a
559class hierarchy and the C<B> module gives access to them via a true
560object hierarchy. Structure fields which point to other objects
561(whether types of SV or types of OP) are represented by the C<B>
85cf7f2e
MJD
562module as Perl objects of the appropriate class.
563
564The bulk of the C<B> module is the methods for accessing fields of
565these structures.
566
567Note that all access is read-only. You cannot modify the internals by
f31c3107
SM
568using this module. Also, note that the B::OP and B::SV objects created
569by this module are only valid for as long as the underlying objects
570exist; their creation doesn't increase the reference counts of the
571underlying objects. Trying to access the fields of a freed object will
572give incomprehensible results, or worse.
1a52ab62
MB
573
574=head2 SV-RELATED CLASSES
575
6822775c
NC
576B::IV, B::NV, B::RV, B::PV, B::PVIV, B::PVNV, B::PVMG, B::BM (5.9.5 and
577earlier), B::PVLV, B::AV, B::HV, B::CV, B::GV, B::FM, B::IO. These classes
578correspond in the obvious way to the underlying C structures of similar names.
4df7f6af
NC
579The inheritance hierarchy mimics the underlying C "inheritance". For the
5805.10, 5.10.1 I<etc> this is:
85cf7f2e 581
6822775c
NC
582 B::SV
583 |
584 +------------+------------+------------+
585 | | | |
586 B::PV B::IV B::NV B::RV
587 \ / /
588 \ / /
589 B::PVIV /
b591c46e
NC
590 \ /
591 \ /
592 \ /
593 B::PVNV
594 |
595 |
596 B::PVMG
597 |
6822775c
NC
598 +-----+-----+-----+-----+
599 | | | | |
600 B::AV B::GV B::HV B::CV B::IO
601 | |
602 | |
603 B::PVLV B::FM
604
605
4df7f6af
NC
606For 5.11.0 and later, B::RV is abolished, and IVs can be used to store
607references.
608
6822775c
NC
609For 5.9.0 and earlier, PVLV is a direct subclass of PVMG, and BM is still
610present as a distinct type, so the base of this diagram is
611
612
613 |
614 |
615 B::PVMG
616 |
617 +------+-----+-----+-----+-----+-----+
618 | | | | | | |
619 B::PVLV B::BM B::AV B::GV B::HV B::CV B::IO
620 |
621 |
622 B::FM
f5ba1307
NC
623
624
85cf7f2e 625Access methods correspond to the underlying C macros for field access,
1a52ab62
MB
626usually with the leading "class indication" prefix removed (Sv, Av,
627Hv, ...). The leading prefix is only left in cases where its removal
628would cause a clash in method name. For example, C<GvREFCNT> stays
629as-is since its abbreviation would clash with the "superclass" method
630C<REFCNT> (corresponding to the C function C<SvREFCNT>).
631
85cf7f2e 632=head2 B::SV Methods
1a52ab62
MB
633
634=over 4
635
636=item REFCNT
637
638=item FLAGS
639
429a5ce7
SM
640=item object_2svref
641
642Returns a reference to the regular scalar corresponding to this
643B::SV object. In other words, this method is the inverse operation
644to the svref_2object() subroutine. This scalar and other data it points
645at should be considered read-only: modifying them is neither safe nor
646guaranteed to have a sensible effect.
647
1a52ab62
MB
648=back
649
85cf7f2e 650=head2 B::IV Methods
1a52ab62
MB
651
652=over 4
653
654=item IV
655
d9963e60
RH
656Returns the value of the IV, I<interpreted as
657a signed integer>. This will be misleading
658if C<FLAGS & SVf_IVisUV>. Perhaps you want the
659C<int_value> method instead?
660
1a52ab62
MB
661=item IVX
662
d9963e60
RH
663=item UVX
664
665=item int_value
666
667This method returns the value of the IV as an integer.
668It differs from C<IV> in that it returns the correct
669value regardless of whether it's stored signed or
670unsigned.
671
1a52ab62
MB
672=item needs64bits
673
674=item packiv
675
676=back
677
85cf7f2e 678=head2 B::NV Methods
1a52ab62
MB
679
680=over 4
681
682=item NV
683
684=item NVX
685
686=back
687
85cf7f2e 688=head2 B::RV Methods
1a52ab62
MB
689
690=over 4
691
692=item RV
693
694=back
695
85cf7f2e 696=head2 B::PV Methods
1a52ab62
MB
697
698=over 4
699
700=item PV
701
76ef7183
JH
702This method is the one you usually want. It constructs a
703string using the length and offset information in the struct:
704for ordinary scalars it will return the string that you'd see
705from Perl, even if it contains null characters.
706
9d2bbe64
MB
707=item RV
708
709Same as B::RV::RV, except that it will die() if the PV isn't
710a reference.
711
0b40bd6d
RH
712=item PVX
713
76ef7183
JH
714This method is less often useful. It assumes that the string
715stored in the struct is null-terminated, and disregards the
716length information.
717
718It is the appropriate method to use if you need to get the name
719of a lexical variable from a padname array. Lexical variable names
720are always stored with a null terminator, and the length field
721(SvCUR) is overloaded for other purposes and can't be relied on here.
722
1a52ab62
MB
723=back
724
85cf7f2e 725=head2 B::PVMG Methods
1a52ab62
MB
726
727=over 4
728
729=item MAGIC
730
731=item SvSTASH
732
733=back
734
85cf7f2e 735=head2 B::MAGIC Methods
1a52ab62
MB
736
737=over 4
738
739=item MOREMAGIC
740
9d2bbe64
MB
741=item precomp
742
743Only valid on r-magic, returns the string that generated the regexp.
744
1a52ab62
MB
745=item PRIVATE
746
747=item TYPE
748
749=item FLAGS
750
751=item OBJ
752
9d2bbe64
MB
753Will die() if called on r-magic.
754
1a52ab62
MB
755=item PTR
756
9d2bbe64
MB
757=item REGEX
758
759Only valid on r-magic, returns the integer value of the REGEX stored
760in the MAGIC.
761
1a52ab62
MB
762=back
763
85cf7f2e 764=head2 B::PVLV Methods
1a52ab62
MB
765
766=over 4
767
768=item TARGOFF
769
770=item TARGLEN
771
772=item TYPE
773
774=item TARG
775
776=back
777
85cf7f2e 778=head2 B::BM Methods
1a52ab62
MB
779
780=over 4
781
782=item USEFUL
783
784=item PREVIOUS
785
786=item RARE
787
788=item TABLE
789
790=back
791
85cf7f2e 792=head2 B::GV Methods
1a52ab62
MB
793
794=over 4
795
87d7fd28
GS
796=item is_empty
797
798This method returns TRUE if the GP field of the GV is NULL.
799
1a52ab62
MB
800=item NAME
801
002b978b
RH
802=item SAFENAME
803
804This method returns the name of the glob, but if the first
805character of the name is a control character, then it converts
806it to ^X first, so that *^G would return "^G" rather than "\cG".
807
808It's useful if you want to print out the name of a variable.
809If you restrict yourself to globs which exist at compile-time
810then the result ought to be unambiguous, because code like
811C<${"^G"} = 1> is compiled as two ops - a constant string and
812a dereference (rv2gv) - so that the glob is created at runtime.
813
814If you're working with globs at runtime, and need to disambiguate
815*^G from *{"^G"}, then you should use the raw NAME method.
816
1a52ab62
MB
817=item STASH
818
819=item SV
820
821=item IO
822
823=item FORM
824
825=item AV
826
827=item HV
828
829=item EGV
830
831=item CV
832
833=item CVGEN
834
835=item LINE
836
b195d487
GS
837=item FILE
838
1a52ab62
MB
839=item FILEGV
840
841=item GvREFCNT
842
843=item FLAGS
844
845=back
846
85cf7f2e 847=head2 B::IO Methods
1a52ab62
MB
848
849=over 4
850
851=item LINES
852
853=item PAGE
854
855=item PAGE_LEN
856
857=item LINES_LEFT
858
859=item TOP_NAME
860
861=item TOP_GV
862
863=item FMT_NAME
864
865=item FMT_GV
866
867=item BOTTOM_NAME
868
869=item BOTTOM_GV
870
871=item SUBPROCESS
872
873=item IoTYPE
874
875=item IoFLAGS
876
9d2bbe64
MB
877=item IsSTD
878
879Takes one arguments ( 'stdin' | 'stdout' | 'stderr' ) and returns true
880if the IoIFP of the object is equal to the handle whose name was
881passed as argument ( i.e. $io->IsSTD('stderr') is true if
882IoIFP($io) == PerlIO_stdin() ).
883
1a52ab62
MB
884=back
885
85cf7f2e 886=head2 B::AV Methods
1a52ab62
MB
887
888=over 4
889
890=item FILL
891
892=item MAX
893
1a52ab62
MB
894=item ARRAY
895
429a5ce7
SM
896=item ARRAYelt
897
898Like C<ARRAY>, but takes an index as an argument to get only one element,
899rather than a list of all of them.
900
edcc7c74
NC
901=item OFF
902
903This method is deprecated if running under Perl 5.8, and is no longer present
904if running under Perl 5.9
905
906=item AvFLAGS
907
908This method returns the AV specific flags. In Perl 5.9 these are now stored
909in with the main SV flags, so this method is no longer present.
910
1a52ab62
MB
911=back
912
85cf7f2e 913=head2 B::CV Methods
1a52ab62
MB
914
915=over 4
916
917=item STASH
918
919=item START
920
921=item ROOT
922
923=item GV
924
57843af0
GS
925=item FILE
926
1a52ab62
MB
927=item DEPTH
928
929=item PADLIST
930
931=item OUTSIDE
932
a3985cdc
DM
933=item OUTSIDE_SEQ
934
1a52ab62
MB
935=item XSUB
936
937=item XSUBANY
938
9d2bbe64
MB
939For constant subroutines, returns the constant SV returned by the subroutine.
940
5cfd8ad4
VB
941=item CvFLAGS
942
de3f1649
JT
943=item const_sv
944
1a52ab62
MB
945=back
946
85cf7f2e 947=head2 B::HV Methods
1a52ab62
MB
948
949=over 4
950
951=item FILL
952
953=item MAX
954
955=item KEYS
956
957=item RITER
958
959=item NAME
960
1a52ab62
MB
961=item ARRAY
962
edcc7c74
NC
963=item PMROOT
964
965This method is not present if running under Perl 5.9, as the PMROOT
966information is no longer stored directly in the hash.
967
1a52ab62
MB
968=back
969
970=head2 OP-RELATED CLASSES
971
85cf7f2e 972C<B::OP>, C<B::UNOP>, C<B::BINOP>, C<B::LOGOP>, C<B::LISTOP>, C<B::PMOP>,
651aa52e 973C<B::SVOP>, C<B::PADOP>, C<B::PVOP>, C<B::LOOP>, C<B::COP>.
85cf7f2e
MJD
974
975These classes correspond in the obvious way to the underlying C
976structures of similar names. The inheritance hierarchy mimics the
977underlying C "inheritance":
978
979 B::OP
980 |
5ce57cc0
JJ
981 +---------------+--------+--------+-------+
982 | | | | |
983 B::UNOP B::SVOP B::PADOP B::COP B::PVOP
85cf7f2e
MJD
984 ,' `-.
985 / `--.
986 B::BINOP B::LOGOP
987 |
988 |
989 B::LISTOP
990 ,' `.
991 / \
992 B::LOOP B::PMOP
993
994Access methods correspond to the underlying C structre field names,
995with the leading "class indication" prefix (C<"op_">) removed.
996
997=head2 B::OP Methods
1a52ab62 998
a60ba18b
JC
999These methods get the values of similarly named fields within the OP
1000data structure. See top of C<op.h> for more info.
1001
1a52ab62
MB
1002=over 4
1003
1004=item next
1005
1006=item sibling
1007
3f872cb9
GS
1008=item name
1009
1010This returns the op name as a string (e.g. "add", "rv2av").
1011
1a52ab62
MB
1012=item ppaddr
1013
dc333d64
GS
1014This returns the function name as a string (e.g. "PL_ppaddr[OP_ADD]",
1015"PL_ppaddr[OP_RV2AV]").
1a52ab62
MB
1016
1017=item desc
1018
4369b173 1019This returns the op description from the global C PL_op_desc array
1a52ab62
MB
1020(e.g. "addition" "array deref").
1021
1022=item targ
1023
1024=item type
1025
a60ba18b
JC
1026=item opt
1027
1a52ab62
MB
1028=item flags
1029
1030=item private
1031
a60ba18b
JC
1032=item spare
1033
1a52ab62
MB
1034=back
1035
1036=head2 B::UNOP METHOD
1037
1038=over 4
1039
1040=item first
1041
1042=back
1043
1044=head2 B::BINOP METHOD
1045
1046=over 4
1047
1048=item last
1049
1050=back
1051
1052=head2 B::LOGOP METHOD
1053
1054=over 4
1055
1056=item other
1057
1058=back
1059
1a52ab62
MB
1060=head2 B::LISTOP METHOD
1061
1062=over 4
1063
1064=item children
1065
1066=back
1067
85cf7f2e 1068=head2 B::PMOP Methods
1a52ab62
MB
1069
1070=over 4
1071
1072=item pmreplroot
1073
1074=item pmreplstart
1075
1076=item pmnext
1077
1078=item pmregexp
1079
1080=item pmflags
1081
c737faaf 1082=item extflags
1a52ab62
MB
1083
1084=item precomp
1085
651aa52e 1086=item pmoffset
9d2bbe64
MB
1087
1088Only when perl was compiled with ithreads.
1089
1a52ab62
MB
1090=back
1091
1092=head2 B::SVOP METHOD
1093
1094=over 4
1095
1096=item sv
1097
065a1863
GS
1098=item gv
1099
1a52ab62
MB
1100=back
1101
7934575e 1102=head2 B::PADOP METHOD
1a52ab62
MB
1103
1104=over 4
1105
7934575e 1106=item padix
1a52ab62
MB
1107
1108=back
1109
1110=head2 B::PVOP METHOD
1111
1112=over 4
1113
1114=item pv
1115
1116=back
1117
85cf7f2e 1118=head2 B::LOOP Methods
1a52ab62
MB
1119
1120=over 4
1121
1122=item redoop
1123
1124=item nextop
1125
1126=item lastop
1127
1128=back
1129
85cf7f2e 1130=head2 B::COP Methods
1a52ab62
MB
1131
1132=over 4
1133
1134=item label
1135
1136=item stash
1137
6e6a1aef
RGS
1138=item stashpv
1139
57843af0 1140=item file
1a52ab62
MB
1141
1142=item cop_seq
1143
1144=item arybase
1145
1146=item line
1147
6e6a1aef
RGS
1148=item warnings
1149
1150=item io
1151
d5ec2987
NC
1152=item hints
1153
b47e7f93
RGS
1154=item hints_hash
1155
1a52ab62
MB
1156=back
1157
7f20e9dd
GS
1158
1159=head1 AUTHOR
1160
1161Malcolm Beattie, C<mbeattie@sable.ox.ac.uk>
1162
1163=cut