The B modules hook into the compiler stuff sort of but not really. All the actual low level stuff happens in perl-?.?.?/ext/B/B.xs which you get when you do a use B;. B::Deparse is just plain perl code. It doesn't access any internals (directly) and nothing in B::* will alter your program runtime (some other B:: stuff from CPAN is different but you aren't using those). I do see that perl 5.8.0 comes with B::Deparse rev 0.63 so you if you get rev 0.61 then that isn't jumping up to 5.8.0. Now the remaining obvious thing here is that since B::Deparse isn't C code it's not compiled and in general it shouldn't be able to break things. I say upgrade. Try it out and just keep a copy of your stock B/Deparse.pm file if you want to swap it back in.

__SIG__
printf "You are here %08x\n", unpack "L!", unpack "P4", pack "L!", B::svref_2object(sub{})->OUTSIDE


In reply to Re: Upgrade B::Deparse? by diotalevi
in thread Upgrade B::Deparse? by Hrunting

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.