-
Notifications
You must be signed in to change notification settings - Fork 1
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
Numerous problems with bigint bitops #2987
Comments
From @skidsPer spec Int should emulate 2's complement storage with infinitely extended For example, these results are not correct: # perl6 -e 'say -0x800000000000001 +| 0;' The current nqp bitops routines implement this incorrectly for bitwise Also, when simultaneously inverting and growing a 1's complement negative Finally, current code may produce incorrect results when operations A suggested fix is at https://gist.github.com/4187527 Tests: |
From @masak<skids> r: 0x0123456789abcdef.perl.say That Moar is wrong here can clearly be seen because the literal is odd |
From @cokeRecent failure, parrot only # Negative numbers. These really need more tests for bigint vs sized natives now failing with: not ok 9 - logical AND of two negative Int is twos complement -- |
From @FROGGSFixed in Raku/nqp@34bd42590c |
@FROGGS - Status changed from 'new' to 'resolved' |
From @usev6Well, things look better today (results are identical on Moar, Parrot and JVM): $ perl6 -e 'say -5 +& -2' $ perl6 -e '0x0123456789abcdef.perl.say' $ perl6 -e 'say -0x800000000000001 +| 0;' Also there were some tests added to S03-operators/bit.t (Raku/roast@5313c52b38 and Raku/roast@7896054a35). So my question: Do we need more tests or can this ticket be closed? |
1 similar comment
From @usev6Well, things look better today (results are identical on Moar, Parrot and JVM): $ perl6 -e 'say -5 +& -2' $ perl6 -e '0x0123456789abcdef.perl.say' $ perl6 -e 'say -0x800000000000001 +| 0;' Also there were some tests added to S03-operators/bit.t (Raku/roast@5313c52b38 and Raku/roast@7896054a35). So my question: Do we need more tests or can this ticket be closed? |
@usev6 - Status changed from 'new' to 'open' |
From @skidsThis is pretty much fixed and tested for, so closing. |
@skids - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#115966 (status was 'resolved')
Searchable as RT115966$
The text was updated successfully, but these errors were encountered: