B.pm 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484
  1. # B.pm
  2. #
  3. # Copyright (c) 1996, 1997, 1998 Malcolm Beattie
  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. #
  8. package B;
  9. use strict;
  10. require Exporter;
  11. @B::ISA = qw(Exporter);
  12. # walkoptree_slow comes from B.pm (you are there),
  13. # walkoptree comes from B.xs
  14. BEGIN {
  15. $B::VERSION = '1.58';
  16. @B::EXPORT_OK = ();
  17. # Our BOOT code needs $VERSION set, and will append to @EXPORT_OK.
  18. # Want our constants loaded before the compiler meets OPf_KIDS below, as
  19. # the combination of having the constant stay a Proxy Constant Subroutine
  20. # and its value being inlined saves a little over .5K
  21. require XSLoader;
  22. XSLoader::load();
  23. }
  24. push @B::EXPORT_OK, (qw(minus_c ppname save_BEGINs
  25. class peekop cast_I32 cstring cchar hash threadsv_names
  26. main_root main_start main_cv svref_2object opnumber
  27. sub_generation amagic_generation perlstring
  28. walkoptree_slow walkoptree walkoptree_exec walksymtable
  29. parents comppadlist sv_undef compile_stats timing_info
  30. begin_av init_av check_av end_av regex_padav dowarn
  31. defstash curstash warnhook diehook inc_gv @optype
  32. @specialsv_name unitcheck_av safename));
  33. @B::SV::ISA = 'B::OBJECT';
  34. @B::NULL::ISA = 'B::SV';
  35. @B::PV::ISA = 'B::SV';
  36. @B::IV::ISA = 'B::SV';
  37. @B::NV::ISA = 'B::SV';
  38. # RV is eliminated with 5.11.0, but effectively is a specialisation of IV now.
  39. @B::RV::ISA = $] >= 5.011 ? 'B::IV' : 'B::SV';
  40. @B::PVIV::ISA = qw(B::PV B::IV);
  41. @B::PVNV::ISA = qw(B::PVIV B::NV);
  42. @B::PVMG::ISA = 'B::PVNV';
  43. @B::REGEXP::ISA = 'B::PVMG' if $] >= 5.011;
  44. @B::INVLIST::ISA = 'B::PV' if $] >= 5.019;
  45. @B::PVLV::ISA = 'B::GV';
  46. @B::BM::ISA = 'B::GV';
  47. @B::AV::ISA = 'B::PVMG';
  48. @B::GV::ISA = 'B::PVMG';
  49. @B::HV::ISA = 'B::PVMG';
  50. @B::CV::ISA = 'B::PVMG';
  51. @B::IO::ISA = 'B::PVMG';
  52. @B::FM::ISA = 'B::CV';
  53. @B::OP::ISA = 'B::OBJECT';
  54. @B::UNOP::ISA = 'B::OP';
  55. @B::UNOP_AUX::ISA = 'B::UNOP';
  56. @B::BINOP::ISA = 'B::UNOP';
  57. @B::LOGOP::ISA = 'B::UNOP';
  58. @B::LISTOP::ISA = 'B::BINOP';
  59. @B::SVOP::ISA = 'B::OP';
  60. @B::PADOP::ISA = 'B::OP';
  61. @B::PVOP::ISA = 'B::OP';
  62. @B::LOOP::ISA = 'B::LISTOP';
  63. @B::PMOP::ISA = 'B::LISTOP';
  64. @B::COP::ISA = 'B::OP';
  65. @B::METHOP::ISA = 'B::OP';
  66. @B::SPECIAL::ISA = 'B::OBJECT';
  67. @B::optype = qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP
  68. METHOP UNOP_AUX);
  69. # bytecode.pl contained the following comment:
  70. # Nullsv *must* come first in the following so that the condition
  71. # ($$sv == 0) can continue to be used to test (sv == Nullsv).
  72. @B::specialsv_name = qw(Nullsv &PL_sv_undef &PL_sv_yes &PL_sv_no
  73. (SV*)pWARN_ALL (SV*)pWARN_NONE (SV*)pWARN_STD);
  74. {
  75. # Stop "-w" from complaining about the lack of a real B::OBJECT class
  76. package B::OBJECT;
  77. }
  78. sub B::GV::SAFENAME {
  79. safename(shift()->NAME);
  80. }
  81. sub safename {
  82. my $name = shift;
  83. # The regex below corresponds to the isCONTROLVAR macro
  84. # from toke.c
  85. $name =~ s/^\c?/^?/
  86. or $name =~ s/^([\cA-\cZ\c\\c[\c]\c_\c^])/
  87. "^" . chr( utf8::unicode_to_native( 64 ^ ord($1) ))/e;
  88. # When we say unicode_to_native we really mean ascii_to_native,
  89. # which matters iff this is a non-ASCII platform (EBCDIC). '\c?' would
  90. # not have to be special cased, except for non-ASCII.
  91. return $name;
  92. }
  93. sub B::IV::int_value {
  94. my ($self) = @_;
  95. return (($self->FLAGS() & SVf_IVisUV()) ? $self->UVX : $self->IV);
  96. }
  97. sub B::NULL::as_string() {""}
  98. *B::IV::as_string = \*B::IV::int_value;
  99. *B::PV::as_string = \*B::PV::PV;
  100. # The input typemap checking makes no distinction between different SV types,
  101. # so the XS body will generate the same C code, despite the different XS
  102. # "types". So there is no change in behaviour from doing "newXS" like this,
  103. # compared with the old approach of having a (near) duplicate XS body.
  104. # We should fix the typemap checking.
  105. *B::IV::RV = \*B::PV::RV if $] > 5.012;
  106. my $debug;
  107. my $op_count = 0;
  108. my @parents = ();
  109. sub debug {
  110. my ($class, $value) = @_;
  111. $debug = $value;
  112. walkoptree_debug($value);
  113. }
  114. sub class {
  115. my $obj = shift;
  116. my $name = ref $obj;
  117. $name =~ s/^.*:://;
  118. return $name;
  119. }
  120. sub parents { \@parents }
  121. # For debugging
  122. sub peekop {
  123. my $op = shift;
  124. return sprintf("%s (0x%x) %s", class($op), $$op, $op->name);
  125. }
  126. sub walkoptree_slow {
  127. my($op, $method, $level) = @_;
  128. $op_count++; # just for statistics
  129. $level ||= 0;
  130. warn(sprintf("walkoptree: %d. %s\n", $level, peekop($op))) if $debug;
  131. $op->$method($level) if $op->can($method);
  132. if ($$op && ($op->flags & OPf_KIDS)) {
  133. my $kid;
  134. unshift(@parents, $op);
  135. for ($kid = $op->first; $$kid; $kid = $kid->sibling) {
  136. walkoptree_slow($kid, $method, $level + 1);
  137. }
  138. shift @parents;
  139. }
  140. if (class($op) eq 'PMOP'
  141. && ref($op->pmreplroot)
  142. && ${$op->pmreplroot}
  143. && $op->pmreplroot->isa( 'B::OP' ))
  144. {
  145. unshift(@parents, $op);
  146. walkoptree_slow($op->pmreplroot, $method, $level + 1);
  147. shift @parents;
  148. }
  149. }
  150. sub compile_stats {
  151. return "Total number of OPs processed: $op_count\n";
  152. }
  153. sub timing_info {
  154. my ($sec, $min, $hr) = localtime;
  155. my ($user, $sys) = times;
  156. sprintf("%02d:%02d:%02d user=$user sys=$sys",
  157. $hr, $min, $sec, $user, $sys);
  158. }
  159. my %symtable;
  160. sub clearsym {
  161. %symtable = ();
  162. }
  163. sub savesym {
  164. my ($obj, $value) = @_;
  165. # warn(sprintf("savesym: sym_%x => %s\n", $$obj, $value)); # debug
  166. $symtable{sprintf("sym_%x", $$obj)} = $value;
  167. }
  168. sub objsym {
  169. my $obj = shift;
  170. return $symtable{sprintf("sym_%x", $$obj)};
  171. }
  172. sub walkoptree_exec {
  173. my ($op, $method, $level) = @_;
  174. $level ||= 0;
  175. my ($sym, $ppname);
  176. my $prefix = " " x $level;
  177. for (; $$op; $op = $op->next) {
  178. $sym = objsym($op);
  179. if (defined($sym)) {
  180. print $prefix, "goto $sym\n";
  181. return;
  182. }
  183. savesym($op, sprintf("%s (0x%lx)", class($op), $$op));
  184. $op->$method($level);
  185. $ppname = $op->name;
  186. if ($ppname =~
  187. /^(d?or(assign)?|and(assign)?|mapwhile|grepwhile|entertry|range|cond_expr)$/)
  188. {
  189. print $prefix, uc($1), " => {\n";
  190. walkoptree_exec($op->other, $method, $level + 1);
  191. print $prefix, "}\n";
  192. } elsif ($ppname eq "match" || $ppname eq "subst") {
  193. my $pmreplstart = $op->pmreplstart;
  194. if ($$pmreplstart) {
  195. print $prefix, "PMREPLSTART => {\n";
  196. walkoptree_exec($pmreplstart, $method, $level + 1);
  197. print $prefix, "}\n";
  198. }
  199. } elsif ($ppname eq "substcont") {
  200. print $prefix, "SUBSTCONT => {\n";
  201. walkoptree_exec($op->other->pmreplstart, $method, $level + 1);
  202. print $prefix, "}\n";
  203. $op = $op->other;
  204. } elsif ($ppname eq "enterloop") {
  205. print $prefix, "REDO => {\n";
  206. walkoptree_exec($op->redoop, $method, $level + 1);
  207. print $prefix, "}\n", $prefix, "NEXT => {\n";
  208. walkoptree_exec($op->nextop, $method, $level + 1);
  209. print $prefix, "}\n", $prefix, "LAST => {\n";
  210. walkoptree_exec($op->lastop, $method, $level + 1);
  211. print $prefix, "}\n";
  212. } elsif ($ppname eq "subst") {
  213. my $replstart = $op->pmreplstart;
  214. if ($$replstart) {
  215. print $prefix, "SUBST => {\n";
  216. walkoptree_exec($replstart, $method, $level + 1);
  217. print $prefix, "}\n";
  218. }
  219. }
  220. }
  221. }
  222. sub walksymtable {
  223. my ($symref, $method, $recurse, $prefix) = @_;
  224. my $sym;
  225. my $ref;
  226. my $fullname;
  227. no strict 'refs';
  228. $prefix = '' unless defined $prefix;
  229. foreach my $sym ( sort keys %$symref ) {
  230. $ref= $symref->{$sym};
  231. $fullname = "*main::".$prefix.$sym;
  232. if ($sym =~ /::$/) {
  233. $sym = $prefix . $sym;
  234. if (svref_2object(\*$sym)->NAME ne "main::" && $sym ne "<none>::" && &$recurse($sym)) {
  235. walksymtable(\%$fullname, $method, $recurse, $sym);
  236. }
  237. } else {
  238. svref_2object(\*$fullname)->$method();
  239. }
  240. }
  241. }
  242. {
  243. package B::Section;
  244. my $output_fh;
  245. my %sections;
  246. sub new {
  247. my ($class, $section, $symtable, $default) = @_;
  248. $output_fh ||= FileHandle->new_tmpfile;
  249. my $obj = bless [-1, $section, $symtable, $default], $class;
  250. $sections{$section} = $obj;
  251. return $obj;
  252. }
  253. sub get {
  254. my ($class, $section) = @_;
  255. return $sections{$section};
  256. }
  257. sub add {
  258. my $section = shift;
  259. while (defined($_ = shift)) {
  260. print $output_fh "$section->[1]\t$_\n";
  261. $section->[0]++;
  262. }
  263. }
  264. sub index {
  265. my $section = shift;
  266. return $section->[0];
  267. }
  268. sub name {
  269. my $section = shift;
  270. return $section->[1];
  271. }
  272. sub symtable {
  273. my $section = shift;
  274. return $section->[2];
  275. }
  276. sub default {
  277. my $section = shift;
  278. return $section->[3];
  279. }
  280. sub output {
  281. my ($section, $fh, $format) = @_;
  282. my $name = $section->name;
  283. my $sym = $section->symtable || {};
  284. my $default = $section->default;
  285. seek($output_fh, 0, 0);
  286. while (<$output_fh>) {
  287. chomp;
  288. s/^(.*?)\t//;
  289. if ($1 eq $name) {
  290. s{(s\\_[0-9a-f]+)} {
  291. exists($sym->{$1}) ? $sym->{$1} : $default;
  292. }ge;
  293. printf $fh $format, $_;
  294. }
  295. }
  296. }
  297. }
  298. 1;
  299. __END__
  300. =head1 NAME
  301. B - The Perl Compiler Backend
  302. =head1 SYNOPSIS
  303. use B;
  304. =head1 DESCRIPTION
  305. The C<B> module supplies classes which allow a Perl program to delve
  306. into its own innards. It is the module used to implement the
  307. "backends" of the Perl compiler. Usage of the compiler does not
  308. require knowledge of this module: see the F<O> module for the
  309. user-visible part. The C<B> module is of use to those who want to
  310. write new compiler backends. This documentation assumes that the
  311. reader knows a fair amount about perl's internals including such
  312. things as SVs, OPs and the internal symbol table and syntax tree
  313. of a program.
  314. =head1 OVERVIEW
  315. The C<B> module contains a set of utility functions for querying the
  316. current state of the Perl interpreter; typically these functions
  317. return objects from the B::SV and B::OP classes, or their derived
  318. classes. These classes in turn define methods for querying the
  319. resulting objects about their own internal state.
  320. =head1 Utility Functions
  321. The C<B> module exports a variety of functions: some are simple
  322. utility functions, others provide a Perl program with a way to
  323. get an initial "handle" on an internal object.
  324. =head2 Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV> objects
  325. For descriptions of the class hierarchy of these objects and the
  326. methods that can be called on them, see below, L<"OVERVIEW OF
  327. CLASSES"> and L<"SV-RELATED CLASSES">.
  328. =over 4
  329. =item sv_undef
  330. Returns the SV object corresponding to the C variable C<sv_undef>.
  331. =item sv_yes
  332. Returns the SV object corresponding to the C variable C<sv_yes>.
  333. =item sv_no
  334. Returns the SV object corresponding to the C variable C<sv_no>.
  335. =item svref_2object(SVREF)
  336. Takes a reference to any Perl value, and turns the referred-to value
  337. into an object in the appropriate B::OP-derived or B::SV-derived
  338. class. Apart from functions such as C<main_root>, this is the primary
  339. way to get an initial "handle" on an internal perl data structure
  340. which can then be followed with the other access methods.
  341. The returned object will only be valid as long as the underlying OPs
  342. and SVs continue to exist. Do not attempt to use the object after the
  343. underlying structures are freed.
  344. =item amagic_generation
  345. Returns the SV object corresponding to the C variable C<amagic_generation>.
  346. As of Perl 5.18, this is just an alias to C<PL_na>, so its value is
  347. meaningless.
  348. =item init_av
  349. Returns the AV object (i.e. in class B::AV) representing INIT blocks.
  350. =item check_av
  351. Returns the AV object (i.e. in class B::AV) representing CHECK blocks.
  352. =item unitcheck_av
  353. Returns the AV object (i.e. in class B::AV) representing UNITCHECK blocks.
  354. =item begin_av
  355. Returns the AV object (i.e. in class B::AV) representing BEGIN blocks.
  356. =item end_av
  357. Returns the AV object (i.e. in class B::AV) representing END blocks.
  358. =item comppadlist
  359. Returns the PADLIST object (i.e. in class B::PADLIST) of the global
  360. comppadlist. In Perl 5.16 and earlier it returns an AV object (class
  361. B::AV).
  362. =item regex_padav
  363. Only when perl was compiled with ithreads.
  364. =item main_cv
  365. Return the (faked) CV corresponding to the main part of the Perl
  366. program.
  367. =back
  368. =head2 Functions for Examining the Symbol Table
  369. =over 4
  370. =item walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
  371. Walk the symbol table starting at SYMREF and call METHOD on each
  372. symbol (a B::GV object) visited. When the walk reaches package
  373. symbols (such as "Foo::") it invokes RECURSE, passing in the symbol
  374. name, and only recurses into the package if that sub returns true.
  375. PREFIX is the name of the SYMREF you're walking.
  376. For example:
  377. # Walk CGI's symbol table calling print_subs on each symbol.
  378. # Recurse only into CGI::Util::
  379. walksymtable(\%CGI::, 'print_subs',
  380. sub { $_[0] eq 'CGI::Util::' }, 'CGI::');
  381. print_subs() is a B::GV method you have declared. Also see L<"B::GV
  382. Methods">, below.
  383. =back
  384. =head2 Functions Returning C<B::OP> objects or for walking op trees
  385. For descriptions of the class hierarchy of these objects and the
  386. methods that can be called on them, see below, L<"OVERVIEW OF
  387. CLASSES"> and L<"OP-RELATED CLASSES">.
  388. =over 4
  389. =item main_root
  390. Returns the root op (i.e. an object in the appropriate B::OP-derived
  391. class) of the main part of the Perl program.
  392. =item main_start
  393. Returns the starting op of the main part of the Perl program.
  394. =item walkoptree(OP, METHOD)
  395. Does a tree-walk of the syntax tree based at OP and calls METHOD on
  396. each op it visits. Each node is visited before its children. If
  397. C<walkoptree_debug> (see below) has been called to turn debugging on then
  398. the method C<walkoptree_debug> is called on each op before METHOD is
  399. called.
  400. =item walkoptree_debug(DEBUG)
  401. Returns the current debugging flag for C<walkoptree>. If the optional
  402. DEBUG argument is non-zero, it sets the debugging flag to that. See
  403. the description of C<walkoptree> above for what the debugging flag
  404. does.
  405. =back
  406. =head2 Miscellaneous Utility Functions
  407. =over 4
  408. =item ppname(OPNUM)
  409. Return the PP function name (e.g. "pp_add") of op number OPNUM.
  410. =item hash(STR)
  411. Returns a string in the form "0x..." representing the value of the
  412. internal hash function used by perl on string STR.
  413. =item cast_I32(I)
  414. Casts I to the internal I32 type used by that perl.
  415. =item minus_c
  416. Does the equivalent of the C<-c> command-line option. Obviously, this
  417. is only useful in a BEGIN block or else the flag is set too late.
  418. =item cstring(STR)
  419. Returns a double-quote-surrounded escaped version of STR which can
  420. be used as a string in C source code.
  421. =item perlstring(STR)
  422. Returns a double-quote-surrounded escaped version of STR which can
  423. be used as a string in Perl source code.
  424. =item safename(STR)
  425. This function returns the string with the first character modified if it
  426. is a control character. It converts it to ^X format first, so that "\cG"
  427. becomes "^G". This is used internally by L<B::GV::SAFENAME|/SAFENAME>, but
  428. you can call it directly.
  429. =item class(OBJ)
  430. Returns the class of an object without the part of the classname
  431. preceding the first C<"::">. This is used to turn C<"B::UNOP"> into
  432. C<"UNOP"> for example.
  433. =item threadsv_names
  434. This used to provide support for the old 5.005 threading module. It now
  435. does nothing.
  436. =back
  437. =head2 Exported utility variables
  438. =over 4
  439. =item @optype
  440. my $op_type = $optype[$op_type_num];
  441. A simple mapping of the op type number to its type (like 'COP' or 'BINOP').
  442. =item @specialsv_name
  443. my $sv_name = $specialsv_name[$sv_index];
  444. Certain SV types are considered 'special'. They're represented by
  445. B::SPECIAL and are referred to by a number from the specialsv_list.
  446. This array maps that number back to the name of the SV (like 'Nullsv'
  447. or '&PL_sv_undef').
  448. =back
  449. =head1 OVERVIEW OF CLASSES
  450. The C structures used by Perl's internals to hold SV and OP
  451. information (PVIV, AV, HV, ..., OP, SVOP, UNOP, ...) are modelled on a
  452. class hierarchy and the C<B> module gives access to them via a true
  453. object hierarchy. Structure fields which point to other objects
  454. (whether types of SV or types of OP) are represented by the C<B>
  455. module as Perl objects of the appropriate class.
  456. The bulk of the C<B> module is the methods for accessing fields of
  457. these structures.
  458. Note that all access is read-only. You cannot modify the internals by
  459. using this module. Also, note that the B::OP and B::SV objects created
  460. by this module are only valid for as long as the underlying objects
  461. exist; their creation doesn't increase the reference counts of the
  462. underlying objects. Trying to access the fields of a freed object will
  463. give incomprehensible results, or worse.
  464. =head2 SV-RELATED CLASSES
  465. B::IV, B::NV, B::RV, B::PV, B::PVIV, B::PVNV, B::PVMG, B::BM (5.9.5 and
  466. earlier), B::PVLV, B::AV, B::HV, B::CV, B::GV, B::FM, B::IO. These classes
  467. correspond in the obvious way to the underlying C structures of similar names.
  468. The inheritance hierarchy mimics the underlying C "inheritance". For the
  469. 5.10.x branch, (I<ie> 5.10.0, 5.10.1 I<etc>) this is:
  470. B::SV
  471. |
  472. +------------+------------+------------+
  473. | | | |
  474. B::PV B::IV B::NV B::RV
  475. \ / /
  476. \ / /
  477. B::PVIV /
  478. \ /
  479. \ /
  480. \ /
  481. B::PVNV
  482. |
  483. |
  484. B::PVMG
  485. |
  486. +-----+-----+-----+-----+
  487. | | | | |
  488. B::AV B::GV B::HV B::CV B::IO
  489. | |
  490. | |
  491. B::PVLV B::FM
  492. For 5.9.0 and earlier, PVLV is a direct subclass of PVMG, and BM is still
  493. present as a distinct type, so the base of this diagram is
  494. |
  495. |
  496. B::PVMG
  497. |
  498. +------+-----+-----+-----+-----+-----+
  499. | | | | | | |
  500. B::PVLV B::BM B::AV B::GV B::HV B::CV B::IO
  501. |
  502. |
  503. B::FM
  504. For 5.11.0 and later, B::RV is abolished, and IVs can be used to store
  505. references, and a new type B::REGEXP is introduced, giving this structure:
  506. B::SV
  507. |
  508. +------------+------------+
  509. | | |
  510. B::PV B::IV B::NV
  511. \ / /
  512. \ / /
  513. B::PVIV /
  514. \ /
  515. \ /
  516. \ /
  517. B::PVNV
  518. |
  519. |
  520. B::PVMG
  521. |
  522. +-------+-------+---+---+-------+-------+
  523. | | | | | |
  524. B::AV B::GV B::HV B::CV B::IO B::REGEXP
  525. | |
  526. | |
  527. B::PVLV B::FM
  528. Access methods correspond to the underlying C macros for field access,
  529. usually with the leading "class indication" prefix removed (Sv, Av,
  530. Hv, ...). The leading prefix is only left in cases where its removal
  531. would cause a clash in method name. For example, C<GvREFCNT> stays
  532. as-is since its abbreviation would clash with the "superclass" method
  533. C<REFCNT> (corresponding to the C function C<SvREFCNT>).
  534. =head2 B::SV Methods
  535. =over 4
  536. =item REFCNT
  537. =item FLAGS
  538. =item object_2svref
  539. Returns a reference to the regular scalar corresponding to this
  540. B::SV object. In other words, this method is the inverse operation
  541. to the svref_2object() subroutine. This scalar and other data it points
  542. at should be considered read-only: modifying them is neither safe nor
  543. guaranteed to have a sensible effect.
  544. =back
  545. =head2 B::IV Methods
  546. =over 4
  547. =item IV
  548. Returns the value of the IV, I<interpreted as
  549. a signed integer>. This will be misleading
  550. if C<FLAGS & SVf_IVisUV>. Perhaps you want the
  551. C<int_value> method instead?
  552. =item IVX
  553. =item UVX
  554. =item int_value
  555. This method returns the value of the IV as an integer.
  556. It differs from C<IV> in that it returns the correct
  557. value regardless of whether it's stored signed or
  558. unsigned.
  559. =item needs64bits
  560. =item packiv
  561. =back
  562. =head2 B::NV Methods
  563. =over 4
  564. =item NV
  565. =item NVX
  566. =item COP_SEQ_RANGE_LOW
  567. =item COP_SEQ_RANGE_HIGH
  568. These last two are only valid for pad name SVs. They only existed in the
  569. B::NV class before Perl 5.22. In 5.22 they were moved to the B::PADNAME
  570. class.
  571. =back
  572. =head2 B::RV Methods
  573. =over 4
  574. =item RV
  575. =back
  576. =head2 B::PV Methods
  577. =over 4
  578. =item PV
  579. This method is the one you usually want. It constructs a
  580. string using the length and offset information in the struct:
  581. for ordinary scalars it will return the string that you'd see
  582. from Perl, even if it contains null characters.
  583. =item RV
  584. Same as B::RV::RV, except that it will die() if the PV isn't
  585. a reference.
  586. =item PVX
  587. This method is less often useful. It assumes that the string
  588. stored in the struct is null-terminated, and disregards the
  589. length information.
  590. It is the appropriate method to use if you need to get the name
  591. of a lexical variable from a padname array. Lexical variable names
  592. are always stored with a null terminator, and the length field
  593. (CUR) is overloaded for other purposes and can't be relied on here.
  594. =item CUR
  595. This method returns the internal length field, which consists of the number
  596. of internal bytes, not necessarily the number of logical characters.
  597. =item LEN
  598. This method returns the number of bytes allocated (via malloc) for storing
  599. the string. This is 0 if the scalar does not "own" the string.
  600. =back
  601. =head2 B::PVMG Methods
  602. =over 4
  603. =item MAGIC
  604. =item SvSTASH
  605. =back
  606. =head2 B::MAGIC Methods
  607. =over 4
  608. =item MOREMAGIC
  609. =item precomp
  610. Only valid on r-magic, returns the string that generated the regexp.
  611. =item PRIVATE
  612. =item TYPE
  613. =item FLAGS
  614. =item OBJ
  615. Will die() if called on r-magic.
  616. =item PTR
  617. =item REGEX
  618. Only valid on r-magic, returns the integer value of the REGEX stored
  619. in the MAGIC.
  620. =back
  621. =head2 B::PVLV Methods
  622. =over 4
  623. =item TARGOFF
  624. =item TARGLEN
  625. =item TYPE
  626. =item TARG
  627. =back
  628. =head2 B::BM Methods
  629. =over 4
  630. =item USEFUL
  631. =item PREVIOUS
  632. =item RARE
  633. =item TABLE
  634. =back
  635. =head2 B::REGEXP Methods
  636. =over 4
  637. =item REGEX
  638. =item precomp
  639. =item qr_anoncv
  640. =item compflags
  641. The last two were added in Perl 5.22.
  642. =back
  643. =head2 B::GV Methods
  644. =over 4
  645. =item is_empty
  646. This method returns TRUE if the GP field of the GV is NULL.
  647. =item NAME
  648. =item SAFENAME
  649. This method returns the name of the glob, but if the first
  650. character of the name is a control character, then it converts
  651. it to ^X first, so that *^G would return "^G" rather than "\cG".
  652. It's useful if you want to print out the name of a variable.
  653. If you restrict yourself to globs which exist at compile-time
  654. then the result ought to be unambiguous, because code like
  655. C<${"^G"} = 1> is compiled as two ops - a constant string and
  656. a dereference (rv2gv) - so that the glob is created at runtime.
  657. If you're working with globs at runtime, and need to disambiguate
  658. *^G from *{"^G"}, then you should use the raw NAME method.
  659. =item STASH
  660. =item SV
  661. =item IO
  662. =item FORM
  663. =item AV
  664. =item HV
  665. =item EGV
  666. =item CV
  667. =item CVGEN
  668. =item LINE
  669. =item FILE
  670. =item FILEGV
  671. =item GvREFCNT
  672. =item FLAGS
  673. =item GPFLAGS
  674. This last one is present only in perl 5.22.0 and higher.
  675. =back
  676. =head2 B::IO Methods
  677. B::IO objects derive from IO objects and you will get more information from
  678. the IO object itself.
  679. For example:
  680. $gvio = B::svref_2object(\*main::stdin)->IO;
  681. $IO = $gvio->object_2svref();
  682. $fd = $IO->fileno();
  683. =over 4
  684. =item LINES
  685. =item PAGE
  686. =item PAGE_LEN
  687. =item LINES_LEFT
  688. =item TOP_NAME
  689. =item TOP_GV
  690. =item FMT_NAME
  691. =item FMT_GV
  692. =item BOTTOM_NAME
  693. =item BOTTOM_GV
  694. =item SUBPROCESS
  695. =item IoTYPE
  696. A character symbolizing the type of IO Handle.
  697. - STDIN/OUT
  698. I STDIN/OUT/ERR
  699. < read-only
  700. > write-only
  701. a append
  702. + read and write
  703. s socket
  704. | pipe
  705. I IMPLICIT
  706. # NUMERIC
  707. space closed handle
  708. \0 closed internal handle
  709. =item IoFLAGS
  710. =item IsSTD
  711. Takes one argument ( 'stdin' | 'stdout' | 'stderr' ) and returns true
  712. if the IoIFP of the object is equal to the handle whose name was
  713. passed as argument; i.e., $io->IsSTD('stderr') is true if
  714. IoIFP($io) == PerlIO_stderr().
  715. =back
  716. =head2 B::AV Methods
  717. =over 4
  718. =item FILL
  719. =item MAX
  720. =item ARRAY
  721. =item ARRAYelt
  722. Like C<ARRAY>, but takes an index as an argument to get only one element,
  723. rather than a list of all of them.
  724. =item OFF
  725. This method is deprecated if running under Perl 5.8, and is no longer present
  726. if running under Perl 5.9
  727. =item AvFLAGS
  728. This method returns the AV specific
  729. flags. In Perl 5.9 these are now stored
  730. in with the main SV flags, so this method is no longer present.
  731. =back
  732. =head2 B::CV Methods
  733. =over 4
  734. =item STASH
  735. =item START
  736. =item ROOT
  737. =item GV
  738. =item FILE
  739. =item DEPTH
  740. =item PADLIST
  741. Returns a B::PADLIST object under Perl 5.18 or higher, or a B::AV in
  742. earlier versions.
  743. =item OUTSIDE
  744. =item OUTSIDE_SEQ
  745. =item XSUB
  746. =item XSUBANY
  747. For constant subroutines, returns the constant SV returned by the subroutine.
  748. =item CvFLAGS
  749. =item const_sv
  750. =item NAME_HEK
  751. Returns the name of a lexical sub, otherwise C<undef>.
  752. =back
  753. =head2 B::HV Methods
  754. =over 4
  755. =item FILL
  756. =item MAX
  757. =item KEYS
  758. =item RITER
  759. =item NAME
  760. =item ARRAY
  761. =item PMROOT
  762. This method is not present if running under Perl 5.9, as the PMROOT
  763. information is no longer stored directly in the hash.
  764. =back
  765. =head2 OP-RELATED CLASSES
  766. C<B::OP>, C<B::UNOP>, C<B::UNOP_AUX>, C<B::BINOP>, C<B::LOGOP>,
  767. C<B::LISTOP>, C<B::PMOP>, C<B::SVOP>, C<B::PADOP>, C<B::PVOP>, C<B::LOOP>,
  768. C<B::COP>, C<B::METHOP>.
  769. These classes correspond in the obvious way to the underlying C
  770. structures of similar names. The inheritance hierarchy mimics the
  771. underlying C "inheritance":
  772. B::OP
  773. |
  774. +----------+---------+--------+-------+---------+
  775. | | | | | |
  776. B::UNOP B::SVOP B::PADOP B::COP B::PVOP B::METHOP
  777. |
  778. +---+---+---------+
  779. | | |
  780. B::BINOP B::LOGOP B::UNOP_AUX
  781. |
  782. |
  783. B::LISTOP
  784. |
  785. +---+---+
  786. | |
  787. B::LOOP B::PMOP
  788. Access methods correspond to the underlying C structure field names,
  789. with the leading "class indication" prefix (C<"op_">) removed.
  790. =head2 B::OP Methods
  791. These methods get the values of similarly named fields within the OP
  792. data structure. See top of C<op.h> for more info.
  793. =over 4
  794. =item next
  795. =item sibling
  796. =item parent
  797. Returns the OP's parent. If it has no parent, or if your perl wasn't built
  798. with C<-DPERL_OP_PARENT>, returns NULL.
  799. Note that the global variable C<$B::OP::does_parent> is undefined on older
  800. perls that don't support the C<parent> method, is defined but false on
  801. perls that support the method but were built without C<-DPERL_OP_PARENT>,
  802. and is true otherwise.
  803. =item name
  804. This returns the op name as a string (e.g. "add", "rv2av").
  805. =item ppaddr
  806. This returns the function name as a string (e.g. "PL_ppaddr[OP_ADD]",
  807. "PL_ppaddr[OP_RV2AV]").
  808. =item desc
  809. This returns the op description from the global C PL_op_desc array
  810. (e.g. "addition" "array deref").
  811. =item targ
  812. =item type
  813. =item opt
  814. =item flags
  815. =item private
  816. =item spare
  817. =back
  818. =head2 B::UNOP Method
  819. =over 4
  820. =item first
  821. =back
  822. =head2 B::UNOP_AUX Methods (since 5.22)
  823. =over 4
  824. =item aux_list(cv)
  825. This returns a list of the elements of the op's aux data structure,
  826. or a null list if there is no aux. What will be returned depends on the
  827. object's type, but will typically be a collection of C<B::IV>, C<B::GV>,
  828. etc. objects. C<cv> is the C<B::CV> object representing the sub that the
  829. op is contained within.
  830. =item string(cv)
  831. This returns a textual representation of the object (likely to b useful
  832. for deparsing and debugging), or an empty string if the op type doesn't
  833. support this. C<cv> is the C<B::CV> object representing the sub that the
  834. op is contained within.
  835. =back
  836. =head2 B::BINOP Method
  837. =over 4
  838. =item last
  839. =back
  840. =head2 B::LOGOP Method
  841. =over 4
  842. =item other
  843. =back
  844. =head2 B::LISTOP Method
  845. =over 4
  846. =item children
  847. =back
  848. =head2 B::PMOP Methods
  849. =over 4
  850. =item pmreplroot
  851. =item pmreplstart
  852. =item pmnext
  853. Only up to Perl 5.9.4
  854. =item pmflags
  855. =item extflags
  856. Since Perl 5.9.5
  857. =item precomp
  858. =item pmoffset
  859. Only when perl was compiled with ithreads.
  860. =item code_list
  861. Since perl 5.17.1
  862. =item pmregexp
  863. Added in perl 5.22, this method returns the B::REGEXP associated with the
  864. op. While PMOPs do not actually have C<pmregexp> fields under threaded
  865. builds, this method returns the regexp under threads nonetheless, for
  866. convenience.
  867. =back
  868. =head2 B::SVOP Methods
  869. =over 4
  870. =item sv
  871. =item gv
  872. =back
  873. =head2 B::PADOP Method
  874. =over 4
  875. =item padix
  876. =back
  877. =head2 B::PVOP Method
  878. =over 4
  879. =item pv
  880. =back
  881. =head2 B::LOOP Methods
  882. =over 4
  883. =item redoop
  884. =item nextop
  885. =item lastop
  886. =back
  887. =head2 B::COP Methods
  888. The C<B::COP> class is used for "nextstate" and "dbstate" ops. As of Perl
  889. 5.22, it is also used for "null" ops that started out as COPs.
  890. =over 4
  891. =item label
  892. =item stash
  893. =item stashpv
  894. =item stashoff (threaded only)
  895. =item file
  896. =item cop_seq
  897. =item arybase
  898. =item line
  899. =item warnings
  900. =item io
  901. =item hints
  902. =item hints_hash
  903. =back
  904. =head2 B::METHOP Methods (Since Perl 5.22)
  905. =over 4
  906. =item first
  907. =item meth_sv
  908. =back
  909. =head2 PAD-RELATED CLASSES
  910. Perl 5.18 introduced a new class, B::PADLIST, returned by B::CV's
  911. C<PADLIST> method.
  912. Perl 5.22 introduced the B::PADNAMELIST and B::PADNAME classes.
  913. =head2 B::PADLIST Methods
  914. =over 4
  915. =item MAX
  916. =item ARRAY
  917. A list of pads. The first one contains the names.
  918. The first one is a B::PADNAMELIST under Perl 5.22, and a B::AV under
  919. earlier versions. The rest are currently B::AV objects, but that could
  920. change in future versions.
  921. =item ARRAYelt
  922. Like C<ARRAY>, but takes an index as an argument to get only one element,
  923. rather than a list of all of them.
  924. =item NAMES
  925. This method, introduced in 5.22, returns the B::PADNAMELIST. It is
  926. equivalent to C<ARRAYelt> with a 0 argument.
  927. =item REFCNT
  928. =item id
  929. This method, introduced in 5.22, returns an ID shared by clones of the same
  930. padlist.
  931. =item outid
  932. This method, also added in 5.22, returns the ID of the outer padlist.
  933. =back
  934. =head2 B::PADNAMELIST Methods
  935. =over 4
  936. =item MAX
  937. =item ARRAY
  938. =item ARRAYelt
  939. These two methods return the pad names, using B::SPECIAL objects for null
  940. pointers and B::PADNAME objects otherwise.
  941. =item REFCNT
  942. =back
  943. =head2 B::PADNAME Methods
  944. =over 4
  945. =item PV
  946. =item PVX
  947. =item LEN
  948. =item REFCNT
  949. =item FLAGS
  950. For backward-compatibility, if the PADNAMEt_OUTER flag is set, the FLAGS
  951. method adds the SVf_FAKE flag, too.
  952. =item TYPE
  953. A B::HV object representing the stash for a typed lexical.
  954. =item SvSTASH
  955. A backward-compatibility alias for TYPE.
  956. =item OURSTASH
  957. A B::HV object representing the stash for 'our' variables.
  958. =item PROTOCV
  959. The prototype CV for a 'my' sub.
  960. =item COP_SEQ_RANGE_LOW
  961. =item COP_SEQ_RANGE_HIGH
  962. Sequence numbers representing the scope within which a lexical is visible.
  963. Meaningless if PADNAMEt_OUTER is set.
  964. =item PARENT_PAD_INDEX
  965. Only meaningful if PADNAMEt_OUTER is set.
  966. =item PARENT_FAKELEX_FLAGS
  967. Only meaningful if PADNAMEt_OUTER is set.
  968. =back
  969. =head2 $B::overlay
  970. Although the optree is read-only, there is an overlay facility that allows
  971. you to override what values the various B::*OP methods return for a
  972. particular op. C<$B::overlay> should be set to reference a two-deep hash:
  973. indexed by OP address, then method name. Whenever a an op method is
  974. called, the value in the hash is returned if it exists. This facility is
  975. used by B::Deparse to "undo" some optimisations. For example:
  976. local $B::overlay = {};
  977. ...
  978. if ($op->name eq "foo") {
  979. $B::overlay->{$$op} = {
  980. name => 'bar',
  981. next => $op->next->next,
  982. };
  983. }
  984. ...
  985. $op->name # returns "bar"
  986. $op->next # returns the next op but one
  987. =head1 AUTHOR
  988. Malcolm Beattie, C<mbeattie@sable.ox.ac.uk>
  989. =cut