-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
array index constant folding uses signed bitwise arithmetic #15596
Comments
From @maukeCreated by @mauke#!perl my @arr = qw(A B C D); my $index = ~0; print "index=$index: $arr[$index]\n"; Output: Expected output: Perl Info
|
From @maukeCreated by @mauke$ perl -MO=Deparse -e 'foo(~42, $a[~42])' $ perl -MO=Deparse -e 'use integer; foo(~42, $a[~42])' For some reason, array indices behave as if 'use integer' were in effect when Perl Info
|
From @TuxOn Sat, 10 Sep 2016 02:10:05 -0700, "l.mai@web.de (via RT)"
Ah, very likely the cause of my HP-UX 11.11 fails! $ calc From the logs … # Multideref v5.25.4-21-g51068c1 Configuration (common) none Locally applied patches: Testsuite was run only with 'harness' Failures: (common-args) none -- |
The RT System itself - Status changed from 'new' to 'open' |
From @jkeenanOn Sat Sep 10 02:03:48 2016, mauke- wrote:
Is this a different bug from that which you've reported in https://rt-archive.perl.org/perl5/Ticket/Display.html?id=129238 ... or merely similar? Thank you very much. -- |
The RT System itself - Status changed from 'new' to 'open' |
From @maukeOn Sun Sep 11 07:59:20 2016, jkeenan wrote:
The symptoms are different, at least. The other bug is about constant folding. This one is about actual indexing at runtime ($index has the correct value). |
From @iabynOn Sat, Sep 10, 2016 at 02:10:05AM -0700, l.mai@web.de wrote:
Its not really to do with constant folding; its more to do with how @a = qw(a b c); which prints "b". The difficulty is what to do with an index which is a UV value with a value A similar thing is seen with, e.g. $i = 1E99, where SvIV(sv) I'm not sure anything sensible can be done with this. -- |
From @iabynOn Mon, Sep 12, 2016 at 09:29:43AM +0100, Dave Mitchell wrote:
Although I suppose that when the index is known at compile-time I'd be reluctant to include such checks at run-time though, due to the $a[~1] # warns -- |
From @iabynOn Mon, Sep 12, 2016 at 09:39:16AM +0100, Dave Mitchell wrote:
Thinking further. There are two issues here. The first is that SvIV(sv), when applied to an Second, since the AV API functions take SSize_t keys, on platforms where Perhaps we need an SvSSize(sv) function to be used instead of SvIV(sv) by Exactly how this is fixed depends on what semantics we want. I guess the Similarly, any negative index whose magnitude is too large gets truncated Modification of non-creatable array value attempted The other question then is whether truncation of the index should -- |
From @iabynOn Sun, Sep 11, 2016 at 08:32:03AM -0700, l.mai@web.de via RT wrote:
The issue is the same: the only difference between the two tickets is -- |
From @dcollinsnIs this bug also related to https://rt-archive.perl.org/perl5/Ticket/Display.html?id=67424 On Mon, Sep 12, 2016 at 6:25 AM, Dave Mitchell <davem@iabyn.com> wrote:
|
From @TuxPing. Any progress? Dave? I am currently building the HP-UX depots for 5.26.1, and this is still hit. |
From @iabynOn Sat, Dec 02, 2017 at 03:18:57AM -0800, H. Merijn Brand via RT wrote:
Its on my list, but haven;t looked at it yet. -- |
Migrated from rt.perl.org#129238 (status was 'open')
Searchable as RT129238$
The text was updated successfully, but these errors were encountered: