I just started reading Hacker's Delight and it defines abs(-231) as -231. Why is that?
I tried printf("%x", abs(0x80000000)) on a few different systems and I get back 0x80000000 on all of them.
|
I just started reading Hacker's Delight and it defines abs(-231) as -231. Why is that? I tried |
|||||||||
|
|
For a 32bit datatype there is no expression of +2^31, because the biggest number is 2^31-1 ... read more about the two's complement ... |
||||
|
Actually, in C, the behavior is undefined. From the C99 standard, §7.20.6.1/2:
and its footnote:
|
|||||
|
|
Because integers are stored in memory as a two's complement binary number, the positive version of the minimum value overflows back to negative. That is to say (in .NET, but still applies):
And
|
|||
|
|
|
Obviously, mathematically, |−231| is 231. If we have 32 bits to represent integers, we can represent at most 232 numbers. If we want a representation that is symmetric about 0, we have a few decisions to make. For the following, as in your question, I am assuming 32-bit wide numbers. At least one bit pattern must be used for 0. So that leaves us with 232−1 or less bit patterns for the rest of the numbers. This number is odd, so we can either have a representation that's not exactly symmetric about zero, or have one number be represented with two different representations.
In two's complement representation, there is no way to represent 231. In fact, if you look at your compiler's
This done rather than
because 2147483648 is too large to fit in an So, to answer your original question, the absolute value of the most negative number in a two's complement representation cannot be represented in that encoding. Also, from the above, to get from a negative value to a positive value in two's complement representation, you take its ones' complement and then add 1. So, for
you get the original number back. |
|||||||
|
|
This goes back to how numbers are stored. Negative numbers are stored using two's complement. The algorithm goes like ... Flip all the bits, then add 1. Using eight bit numbers for examples ... +0 = -0 00000000 -> 11111111, 11111111 + 1 = 100000000 (but due to limitation of bits, this becomes 00000000). AND... -128 [aka -(2^7)] equals -(-128) 10000000 -> 01111111, 01111111 + 1 = 10000000 Hope this helps. |
|||
|
|
|
The representation of a two's complement number has the most significant bit as a negative number. 0x80000000 is 1 followed by 31 zeroes, the first 1 represents -2^31 not 2^31. Therefore there is no way to represent 2^31 as the highest positive number is 0x7FFFFFFF, which is 0 followed by 31 ones, which equals 2^31-1. abs(0x80000000) is therefore undefined in the two's complement since it is too large, due to this the machine just gives up and gives you 0x80000000 again. Typically at least. |
||||
|
|
|
I think the way |
|||||||||
|
|
0x8000.. is stored as 10000.... (binary). This is known as twos complement, which means that the highest bit (the one at the left) is used to store the sign of the value and negative values are stored with negative binary - 1. The abs() function now checks the signbit, sees that it is set and computes the positive value.
Now this is a negative number again which we didn't want, the reason is a overflow, try the number 0x9000... which is 10010...
With this number the overflow is stopped by the 0 bit on the right |
|||
|
|
|
because it uses the neg instruction to perform this operation. In the Art of Assembly language programming book they said like this.
source :http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter_6/CH06-2.html#HEADING2-313 So it will set the overflow flag and be silently.That's the reason. |
|||
|
|