diff options
author | Robin Houston <robin@cpan.org> | 2001-04-05 17:45:18 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-05 18:29:35 +0000 |
commit | d9963e6028b7b9385123dbc7e23e5d32a1470cdd (patch) | |
tree | 28aab8c9fb0d8ce17d72bfce84c6bc0a6d8b83cf /ext/B/B.pm | |
parent | 68223ea372b68e09464511a52a560d68f6579117 (diff) | |
download | perl-d9963e6028b7b9385123dbc7e23e5d32a1470cdd.tar.gz |
cope with SVf_IVisUV, and cope with $^^ and friends
Message-ID: <20010405164517.B16037@puffinry.freeserve.co.uk>
p4raw-id: //depot/perl@9566
Diffstat (limited to 'ext/B/B.pm')
-rw-r--r-- | ext/B/B.pm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index 6c2f013da6..7ee1d19189 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -62,10 +62,19 @@ use strict; sub B::GV::SAFENAME { my $name = (shift())->NAME; - $name =~ s/^([\cA-\cZ])/"^".chr(64 + ord($1))/e; + + # The regex below corresponds to the isCONTROLVAR macro + # from toke.c + + $name =~ s/^([\cA-\cZ\c\\c[\c]\c?\c_\c^])/"^".chr(64 ^ ord($1))/e; return $name; } +sub B::IV::int_value { + my ($self) = @_; + return (($self->FLAGS() & SVf_IVisUV()) ? $self->UVX : $self->IV); +} + my $debug; my $op_count = 0; my @parents = (); @@ -339,8 +348,22 @@ C<REFCNT> (corresponding to the C function C<SvREFCNT>). =item IV +Returns the value of the IV, I<interpreted as +a signed integer>. This will be misleading +if C<FLAGS & SVf_IVisUV>. Perhaps you want the +C<int_value> method instead? + =item IVX +=item UVX + +=item int_value + +This method returns the value of the IV as an integer. +It differs from C<IV> in that it returns the correct +value regardless of whether it's stored signed or +unsigned. + =item needs64bits =item packiv |