Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Two's complement

From Wikipedia, the free encyclopedia
Binary representation for signed numbers

Two's complement is the most commonmethod of representing signed (positive, negative, and zero)integers on computers,[1] and more generally,fixed point binary values. As with theones' complement andsign-magnitude systems, two's complement uses themost significant bit as thesign to indicate positive (0) or negative (1) numbers, and nonnegative numbers are given their unsigned representation (6 is 0110, zero is 0000); however, in two's complement, negative numbers are represented by taking thebit complement of their magnitude and then adding one (−6 is 1010). The number of bits in the representation may be increased by padding all additional high bits of negative or positive numbers with 1's or 0's, respectively, or decreased by removing additional leading 1's or 0's.

Unlike theones' complement scheme, the two's complement scheme has only one representation for zero, with room for one extra negative number (the range of a 4-bit number is −8 to +7). Furthermore, the same arithmetic implementations can be used on signed as well as unsigned integers[2]and differ only in the integer overflow situations, since the sum of representations of a positive number and its negative is 0 (with the carry bit set).

Procedure

[edit]

The following is the procedure for obtaining the two's complement representation of a givennegative number in binary digits:

  • Step 1: starting with the absolute binary representation of the number, with the leading bit being a sign bit;[3]
  • Step 2: inverting (or flipping) all bits – changing every 0 to 1, and every 1 to 0;
  • Step 3: adding 1 to the entire inverted number, ignoring anyoverflow. Accounting for overflow will produce the wrong value for the result.

For example, to calculate thedecimal number−6 in binary from the number6:

  • Step 1:+6 in decimal is0110 in binary; the leftmost significant bit (the first 0) is thesign (just 110 in binary would be −2 in decimal).
  • Step 2: flip all bits in0110, giving1001.
  • Step 3: add the place value 1 to the flipped number1001, giving1010.

To verify that1010 indeed has a value of−6, add the place values together, butsubtract the sign value from the final calculation. Because the most significant value is the sign value, it must be subtracted to produce the correct result:1010 =(1×23) + (0×22) + (1×21) + (0×20) =1×−8 +0 +1×2 +0 = −6.

Bits:1010
Decimal bit value:8421
Binary calculation:(1×23)(0×22)(1×21)(0×20)
Decimal calculation:(1×8)01×20

Note that steps 2 and 3 together are a valid method to compute theadditive inversen{\displaystyle -n} of any (positive or negative) integern{\displaystyle n} where both input and output are in two's complement format. An alternative to computen{\displaystyle -n} is to use subtraction0n{\displaystyle 0-n}. See below for subtraction of integers in two's complement format.

Theory

[edit]
Cyclic depiction of unsigned (white ring), ones-complement (orange), twos-complement (teal) values of 4-bit integers (black) and the effect of adding 4 to an arbitrary value

Two's complement is an example of aradix complement. The 'two' in the name refers to the number2N - "two to the power of N", which is the value in respect to which the complement is calculated in anN-bit system (the only case where exactly 'two' would be produced in this term isN = 1, so for a 1-bit system, but these do not have capacity for both a sign and a zero). As such, the precise definition of thetwo's complement of anN-bit number is thecomplement of that number with respect to2N.

The defining property of being acomplement to a number with respect to2N is simply that the summation of this number with the original produce2N. For example, using binary with numbers up to three bits (soN = 3 and2N = 23 = 8 = 10002, where '2' indicates a binary representation), a two's complement for the number 3 (0112) is 5 (1012), because summed to the original it gives23 = 10002 = 0112 + 1012. Where this correspondence is employed for representing negative numbers, it effectively means, using an analogy with decimal digits and a number-space only allowing eight non-negative numbers 0 through 7, dividing the number-space into two sets: the first four of the numbers 0 1 2 3 remain the same, while the remaining four encode negative numbers, maintaining their growing order, so making 4 encode −4, 5 encode −3, 6 encode −2 and 7 encode −1. A binary representation has an additional utility however, because the most significant bit also indicates the group (and the sign): it is 0 for the first group of non-negatives, and 1 for the second group of negatives. The tables at right illustrate this property.

Three-bit integers
BitsUnsigned valueSigned value
(Two's complement)
00000
00111
01022
01133
1004−4
1015−3
1106−2
1117−1
Eight-bit integers
BitsUnsigned valueSigned value
(Two's complement)
0000 000000
0000 000111
0000 001022
0111 1110126126
0111 1111127127
1000 0000128−128
1000 0001129−127
1000 0010130−126
1111 1110254−2
1111 1111255−1

Calculation of the binary two's complement of a positive number essentially means subtracting the number from the2N. But as can be seen for the three-bit example and the four-bit10002 (23), the number2N will not itself be representable in a system limited toN bits, as it is just outside theN bits space (the number is nevertheless the reference point of the "Two's complement" in anN-bit system). Because of this, systems with maximallyN-bits must break the subtraction into two operations: first subtract from the maximum number in theN-bit system, that is2N−1 (this term in binary is actually a simple number consisting of 'all 1s', and a subtraction from it can be done simply by inverting all bits in the number also known asthe bitwise NOT operation) and then adding the one. Coincidentally, that intermediate number before adding the one is also used in computer science as another method of signed number representation and is called aones' complement (named that because summing such a number with the original gives the 'all 1s').

Compared to other systems for representing signed numbers (e.g.,ones' complement), the two's complement has the advantage that the fundamental arithmetic operations ofaddition,subtraction, andmultiplication are identical to those for unsigned binary numbers (as long as the inputs are represented in the same number of bits as the output, and anyoverflow beyond those bits is discarded from the result). This property makes the system simpler to implement, especially for higher-precision arithmetic. Additionally, unlike ones' complement systems, two's complement has no representation fornegative zero, and thus does not suffer from its associated difficulties. Otherwise, both schemes have the desired property that the sign of integers can be reversed by taking the complement of its binary representation, but two's complement has an exception – the lowest negative, as can be seen in the tables.[4]

History

[edit]

Themethod of complements had long been used to perform subtraction in decimaladding machines andmechanical calculators.John von Neumann suggested use of two's complement binary representation in his 1945First Draft of a Report on the EDVAC proposal for an electronic stored-program digital computer.[5] The 1949EDSAC, which was inspired by theFirst Draft, used two's complement representation of negative binary integers.

Many early computers, including theCDC 6600, theLINC, thePDP-1, and the UNIVAC 1107, useones' complement notation; the descendants of the UNIVAC 1107, theUNIVAC 1100/2200 series, continued to do so. (Later 18-bit DEC machines supported both ones'-complement addition with the ADD instruction and two's-complement arithmetic with the TAD instruction.) TheIBM 700/7000 series scientific machines use sign/magnitude notation, except for the index registers which are two's complement. Early commercial computers storing negative values in two's complement form include theEnglish Electric DEUCE (1955) and theDigital Equipment CorporationPDP-5 (1963) andPDP-6 (1964). (The PDP-5 and PDP-8 family computers continued using the assembler mnemonic TAD for two's complement addition, even though there was no ones'-complement ADD instruction on those computers.) TheSystem/360, introduced in 1964 byIBM, then the dominant player in the computer industry, made two's complement the most widely used binary representation in the computer industry. The firstminicomputer, thePDP-8 introduced in 1965, uses two's complement arithmetic, as do the 1969Data General Nova, the 1970PDP-11, and almost all subsequent minicomputers and microcomputers.

Converting from two's complement representation

[edit]

A two's-complement number system encodes positive and negative numbers in a binary number representation. The weight of each bit is apower of two, except for themost significant bit, whose weight is the negative of the corresponding power of two.

The value w of anN-bit integeraN1aN2a0{\displaystyle a_{N-1}a_{N-2}\dots a_{0}} is given by the following formula:

w=aN12N1+i=0N2ai2i{\displaystyle w=-a_{N-1}2^{N-1}+\sum _{i=0}^{N-2}a_{i}2^{i}}

The most significant bit determines the sign of the number and is sometimes called thesign bit. Unlike insign-and-magnitude representation, the sign bit also has the weight−(2N − 1) shown above. UsingN bits, all integers from−(2N − 1) to2N − 1 − 1 can be represented.

Converting to two's complement representation

[edit]

In two's complement notation, anon-negative number is represented by its ordinarybinary representation; in this case, the most significant bit is 0. Though, the range of numbers represented is not the same as with unsigned binary numbers. For example, an 8-bit unsigned number can represent the values 0 to 255 (11111111). However a two's complement 8-bit number can only represent non-negative integers from 0 to 127 (01111111), because the rest of the bit combinations with the most significant bit as '1' represent the negative integers −1 to −128.

The two's complement operation is theadditive inverse operation, so negative numbers are represented by the two's complement of theabsolute value.

From the ones' complement

[edit]

To get the two's complement of a negative binary number, allbits are inverted, or "flipped", by using thebitwise NOT operation; the value of 1 is then added to the resulting value, ignoring the overflow which occurs when taking the two's complement of 0.

For example, using 1 byte (=8 bits), the decimal number 5 is represented by

0000 01012

The most significant bit (the leftmost bit in this case) is 0, so the pattern represents a non-negative value. To convert to −5 in two's-complement notation, first, all bits are inverted, that is: 0 becomes 1 and 1 becomes 0:

1111 10102

At this point, the representation is theones' complement of the decimal value −5. To obtain the two's complement, 1 is added to the result, giving:

1111 10112

The result is a signed binary number representing the decimal value −5 in two's-complement form. The most significant bit is 1, signifying that the value represented is negative.

Alternatively, instead of adding 1 after inverting a positive binary number, 1 can be subtracted from the numberbefore it is inverted. The two methods can easily be shown to be equivalent. The inversion (ones' complement) ofx{\displaystyle x} equals(2N1)x{\displaystyle (2^{N}-1)-x}, so the sum of the inversion and 1 equals(2N1)x+1={\displaystyle (2^{N}-1)-x+1=}2Nx1+1={\displaystyle 2^{N}-x-1+1=}2Nx{\displaystyle 2^{N}-x}, which equals the two's complement ofx{\displaystyle x} as expected. The inversion ofx1{\displaystyle x-1} equals(2N1)(x1)={\displaystyle (2^{N}-1)-(x-1)=}(2N1)x+1={\displaystyle (2^{N}-1)-x+1=}2Nx{\displaystyle 2^{N}-x}, identical to the previous equation. Essentially, the subtraction inherent in the inversion operation changes the −1 added tox{\displaystyle x} before the inversion into +1 added after the inversion. This alternate subtract-and-invert algorithm to form a two's complement can sometimes be advantageous in computer programming or hardware design, for example where the subtraction of 1 can be obtained for free by incorporating it into an earlier operation.[6]

The two's complement of a negative number is the corresponding positive value, except in the special case of themost negative number. For example, inverting the bits of −5 (above) gives:

0000 01002

And adding one gives the final value:

0000 01012

The two's complement of the most negative number representable (e.g. a one as the most-significant bit and all other bits zero) is itself. Hence, there is an 'extra' negative number for which two's complement does not give the negation, see§ Most negative number below.

The case for the most negative number is one of only two special cases. The other special case is for zero, the two's complement of which is zero: inverting gives all ones, and adding one changes the ones back to zeros (since the overflow is ignored). Mathematically, in the two's complement system of signed integers (which represents the negative of each number as its two's complement), this is obviously correct: the negative of 0 is in fact 0 (0=0{\displaystyle -0=0}). This zero case also makes sense by the definition of two's complements: by that definition, the two's complement of zero would be2N0=2N{\displaystyle 2^{N}-0=2^{N}}, but inN{\displaystyle N} bits, all values are taken modulo2N{\displaystyle 2^{N}}, and2N{\displaystyle 2^{N}}mod2N=0{\displaystyle 2^{N}=0}. In other words, the two's complement of 0 inN{\displaystyle N} bits is (by definition) a single 1 bit followed byN{\displaystyle N} zeros, but the 1 gets truncated, leaving 0.[7]

In summary, the two's complement of any number, either positive, negative, or zero, can be computed in the same ways. In two's complement signed integer representation, the two's complement of any integer is equal to -1 times that integer, except for the most negative integer representable in the given number of bitsN{\displaystyle N}, i.e. the integer2N1{\displaystyle -2^{N-1}}, the two's complement of which is itself (still negative).

Subtraction from 2N

[edit]

The sum of a number and its ones' complement is anN-bit word with all 1 bits, which is (reading as an unsigned binary number)2N − 1. Then adding a number to its two's complement results in theN lowest bits set to 0 and the carry bit 1, where the latter has the weight (reading it as an unsigned binary number) of2N. Hence, in the unsigned binary arithmetic the value of two's-complement negative numberx* of a positivex satisfies the equalityx* = 2Nx.[a]

For example, to find the four-bit representation of −5 (subscripts denote thebase of the representation):

x = 510 thereforex = 01012

Hence, withN = 4:

x* = 2Nx = 24 − 510 = 1610 − 510 = 100002 − 01012 = 10112

The calculation can be done entirely in base 10, converting to base 2 at the end:

x* = 2Nx = 24 − 510 = 1110 = 10112

Working from LSB towards MSB

[edit]

A shortcut to manually convert abinary number into its two's complement is to start at theleast significant bit (LSB), and copy all the zeros, working from LSB toward the most significant bit (MSB) until the first 1 is reached; then copy that 1, and flip all the remaining bits (Leave the MSB as a 1 if the initial number was in sign-and-magnitude representation). This shortcut allows a person to convert a number to its two's complement without first forming its ones' complement. For example: in two's complement representation, the negation of "0011 1100" is "1100 0100", where the underlined digits were unchanged by the copying operation (while the rest of the digits were flipped).

In computer circuitry, this method is no faster than the "complement and add one" method; both methods require working sequentially from right to left, propagating logic changes. The method of complementing and adding one can be sped up by a standardcarry look-ahead adder circuit; the LSB towards MSB method can be sped up by a similar logic transformation.

Sign extension

[edit]
Main article:Sign extension
Sign-bit repetition in 7- and 8-bit integers using two's complement
Decimal7-bit notation8-bit notation
−42 10101101101 0110
42 01010100010 1010

When turning a two's-complement number with a certain number of bits into one with more bits (e.g., when copying from a one-byte variable to a two-byte variable), the most-significant bit must be repeated in all the extra bits. Some processors do this in a single instruction; on other processors, a conditional must be used followed by code to set the relevant bits or bytes.

Similarly, when a number is shifted to the right, the most-significant bit, which contains the sign information, must be maintained. However, when shifted to the left, a bit is shifted out. These rules preserve the common semantics that left shifts multiply the number by two and right shifts divide the number by two. However, if the most-significant bit changes from 0 to 1 (and vice versa), overflow is said to occur in the case that the value represents a signed integer.

Both shifting and doubling the precision are important for some multiplication algorithms. Note that unlike addition and subtraction, width extension and right shifting are done differently for signed and unsigned numbers.

Most negative number

[edit]

With only one exception, starting with any number in two's-complement representation, if all the bits are flipped and 1 added, the two's-complement representation of the negative of that number is obtained. Positive 12 becomes negative 12, positive 5 becomes negative 5, zero becomes zero(+overflow), etc.

The two's complement of −128
−1281000 0000
invert bits0111 1111
add one1000 0000
Result is the same 8 bit binary number.

Taking the two's complement (negation) of the minimum number in the range will not have the desired effect of negating the number. For example, the two's complement of −128 in an eight-bit system is −128 , as shown in thetable to the right. Although the expected result from negating −128 is +128 , there is no representation of +128 with an eight bit two's complement system and thus it is in fact impossible to represent the negation. Note that the two's complement being the same number is detected as an overflow condition since there was a carry into but not out of the most-significant bit.

Having a nonzero number equal to its own negation is forced by the fact that zero is its own negation, and that the total number of numbers is even. Proof: there are 2^n − 1 nonzero numbers (an odd number). Negation would partition the nonzero numbers into sets of size 2, but this would result in the set of nonzero numbers having even cardinality. So at least one of the sets has size 1, i.e., a nonzero number is its own negation.

The presence of the most negative number can lead to unexpected programming bugs where the result has an unexpected sign, or leads to an unexpected overflow exception, or leads to completely strange behaviors. For example,

  • the unary negation operator may not change the sign of a nonzero number. e.g., −(−128)  ⟼  −128   (where "" is read as "becomes").
  • an implementation ofabsolute value may return a negative number;[8] e.g.,  abs(−128)  ⟼  −128 .
  • Likewise, multiplication by −1 may fail to function as expected; e.g.,   (−128) × (−1)  ⟼  −128 .
  • Division by −1 may cause an exception (like that caused by dividing by 0);[9] even calculating the remainder (ormodulo) by −1 can trigger this exception;[10] e.g., (−128) ÷ (−1)  ⟼ [CRASH] ,   (−128) % (−1)  ⟼ [CRASH] .

In theC andC++ programming languages, the above behaviours areundefined and not only may they return strange results, but the compiler is free to assume that the programmer has ensured that undefined numerical operations never happen, and make inferences from that assumption.[10] This enables a number of optimizations, but also leads to a number of strange bugs in programs with these undefined calculations.

This most negative number in two's complement is sometimes called "the weird number", because it is the only exception.[11][12]Although the number is an exception, it is a valid number in regular two's complement systems. All arithmetic operations work with it both as an operand and (unless there was an overflow) a result.

Why it works

[edit]

Given a set of all possibleN-bit values, we can assign the lower (by the binary value) half to be the integers from 0 to(2N − 1 − 1) inclusive and the upper half to be−2N − 1 to −1 inclusive. The upper half (again, by the binary value) can be used to represent negative integers from−2N − 1 to −1 because, under addition modulo2N they behave the same way as those negative integers. That is to say that, becausei +j mod 2N =i + (j + 2N) mod 2N, any value in the set{ j +k 2N |k is an integer }  can be used in place of j.[13]

For example, with eight bits, the unsigned bytes are 0 to 255. Subtracting 256 from the top half (128 to 255) yields the signed bytes −128 to −1.

The relationship to two's complement is realised by noting that256 = 255 + 1, and(255 −x) is theones' complement of x.

Some special numbers to note
DecimalBinary (8-bit)
127 0111 1111
64 0100 0000
1  0000 0001
0  0000 0000
−1 1111 1111
−64 1100 0000
−127 1000 0001
−128 1000 0000

Example

[edit]
In this subsection, decimal numbers are suffixed with a decimal point "."

For example, an 8 bit number can only represent every integer from −128. to 127., inclusive, since(28 − 1 = 128.).−95. modulo 256. is equivalent to 161. since

−95. + 256.
= −95. + 255. + 1
= 255. − 95. + 1
= 160. + 1.
= 161.
   1111 1111                       255. − 0101 1111                     −  95. ===========                     =====   1010 0000  (ones' complement)   160. +         1                     +   1 ===========                     =====   1010 0001  (two's complement)   161.
Two's complement 4 bit integer values
Two's complementDecimal
01117. 
01106. 
01015. 
01004. 
00113. 
00102. 
00011. 
00000. 
1111−1. 
1110−2. 
1101−3. 
1100−4. 
1011−5. 
1010−6. 
1001−7. 
1000−8. 

Fundamentally, the system represents negative integers by counting backward andwrapping around. The boundary between positive and negative numbers is arbitrary, but byconvention all negative numbers have a left-most bit (most significant bit) of one. Therefore, the most positive four-bit number is 0111 (7.) and the most negative is 1000 (−8.). Because of the use of the left-most bit as the sign bit, the absolute value of the most negative number (|−8.| = 8.) is too large to represent. Negating a two's complement number is simple: Invert all the bits and add one to the result. For example, negating 1111, we get0000 + 1 = 1. Therefore, 1111 in binary must represent −1 in decimal.[14]

The system is useful in simplifying the implementation of arithmetic on computer hardware. Adding 0011 (3.) to 1111 (−1.) at first seems to give the incorrect answer of 10010. However, the hardware can simply ignore the left-most bit to give the correct answer of 0010 (2.). Overflow checks still must exist to catch operations such as summing 0100 and 0100.

The system therefore allows addition of negative operands without a subtraction circuit or a circuit that detects the sign of a number. Moreover, that addition circuit can also perform subtraction by taking the two's complement of a number (see below), which only requires an additional cycle or its own adder circuit. To perform this, the circuit merely operates as if there were an extra left-most bit of 1.

Arithmetic operations

[edit]

Addition

[edit]

Adding two's complement numbers requires no special processing even if the operands have opposite signs; the sign of the result is determined automatically. For example, adding 15 and −5:

   0000 1111  (15) + 1111 1011  (−5) ===========   0000 1010  (10)

Or the computation of 5 − 15 = 5 + (−15):

   0000 0101  (  5) + 1111 0001  (−15) ===========   1111 0110  (−10)

This process depends upon restricting to 8 bits of precision; a carry to the (nonexistent) 9th most significant bit is ignored, resulting in the arithmetically correct result of 1010.

The last two bits of thecarry row (reading right-to-left) contain vital information: whether the calculation resulted in anarithmetic overflow, a number too large for the binary system to represent (in this case greater than 8 bits). An overflow condition exists when these last two bits are different from one another. As mentioned above, the sign of the number is encoded in the MSB of the result.

In other terms, if the left two carry bits (the ones on the far left of the top row in these examples) are both 1s or both 0s, the result is valid; if the left two carry bits are "1 0" or "0 1", a sign overflow has occurred. Conveniently, anXOR operation on these two bits can quickly determine if an overflow condition exists. As an example, consider the signed 4-bit addition of 7 and 3:

  0111   (carry)   0111  (7) + 0011  (3) ======   1010  (−6)  invalid!

In this case, the far left two (MSB) carry bits are "01", which means there was a two's-complement addition overflow. That is, 10102 = 1010 is outside the permitted range of −8 to 7. The result would be correct if treated as unsigned integer.

In general, any twoN-bit numbers may be addedwithout overflow, by first sign-extending both of them toN + 1 bits, and then adding as above. TheN + 1 bits result is large enough to represent any possible sum (N = 5 two's complement can represent values in the range −16 to 15) so overflow will never occur. It is then possible, if desired, to 'truncate' the result back toN bits while preserving the value if, and only if, the discarded bit is a proper sign extension of the retained result bits. This provides another method of detecting overflow – which is equivalent to the method of comparing the carry bits – but which may be easier to implement in some situations, because it does not require access to the internals of the addition.

Subtraction

[edit]

Computers usually use themethod of complements to implement subtraction. Using complements for subtraction is closely related to using complements for representing negative numbers, since the combination allows all signs of operands and results; direct subtraction works with two's-complement numbers as well. Like addition, the advantage of using two's complement is the elimination of examining the signs of the operands to determine whether addition or subtraction is needed. For example, subtracting −5 from 15 is really adding 5 to 15, but this is hidden by the two's-complement representation:

  11110 000   (borrow)   0000 1111  (15) − 1111 1011  (−5) ===========   0001 0100  (20)

Overflow is detected the same way as for addition, by examining the two leftmost (most significant) bits of the borrows; overflow has occurred if they are different.

Another example is a subtraction operation where the result is negative: 15 − 35 = −20:

  11100 000   (borrow)   0000 1111  (15) − 0010 0011  (35) ===========   1110 1100  (−20)

As for addition, overflow in subtraction may be avoided (or detected after the operation) by first sign-extending both inputs by an extra bit.

Multiplication

[edit]

The product of twoN-bit numbers requires2N bits to contain all possible values.[15]

If the precision of the two operands using two's complement is doubled before the multiplication, direct multiplication (discarding any excess bits beyond that precision) will provide the correct result.[16] For example, take6 × (−5) = −30. First, the precision is extended from four bits to eight. Then the numbers are multiplied, discarding the bits beyond the eighth bit (as shown by "x"):

     00000110  (6) *   11111011  (−5) ============          110         1100        00000       110000      1100000     11000000    x10000000 + xx00000000 ============   xx11100010

This is very inefficient; by doubling the precision ahead of time, all additions must be double-precision and at least twice as many partial products are needed than for the more efficient algorithms actually implemented in computers. Some multiplication algorithms are designed for two's complement, notablyBooth's multiplication algorithm. Methods for multiplying sign-magnitude numbers do not work with two's-complement numbers without adaptation. There is not usually a problem when the multiplicand (the one being repeatedly added to form the product) is negative; the issue is setting the initial bits of the product correctly when the multiplier is negative. Two methods for adapting algorithms to handle two's-complement numbers are common:

  • First check to see if the multiplier is negative. If so, negate (i.e., take the two's complement of) both operands before multiplying. The multiplier will then be positive so the algorithm will work. Because both operands are negated, the result will still have the correct sign.
  • Subtract the partial product resulting from the MSB (pseudo sign bit) instead of adding it like the other partial products. This method requires the multiplicand's sign bit to be extended by one position, being preserved during the shift right actions.[17]

As an example of the second method, take the common add-and-shift algorithm for multiplication. Instead of shifting partial products to the left as is done with pencil and paper, the accumulated product is shifted right, into a second register that will eventually hold the least significant half of the product. Since theleast significant bits are not changed once they are calculated, the additions can be single precision, accumulating in the register that will eventually hold the most significant half of the product. In the following example, again multiplying 6 by −5, the two registers and the extended sign bit are separated by "|":

  0 0110  (6)  (multiplicand with extended sign bit)  × 1011 (−5)  (multiplier)  =|====|====  0|0110|0000  (first partial product (rightmost bit is 1))  0|0011|0000  (shift right, preserving extended sign bit)  0|1001|0000  (add second partial product (next bit is 1))  0|0100|1000  (shift right, preserving extended sign bit)  0|0100|1000  (add third partial product: 0 so no change)  0|0010|0100  (shift right, preserving extended sign bit)  1|1100|0100  (subtract last partial product since it's from sign bit)  1|1110|0010  (shift right, preserving extended sign bit)   |1110|0010  (discard extended sign bit, giving the final answer, −30)

Comparison (ordering)

[edit]

Comparison is often implemented with a dummy subtraction, where the flags in the computer'sstatus register are checked, but the main result is ignored. Thezero flag indicates if two values compared equal. If the exclusive-or of thesign andoverflow flags is 1, the subtraction result was less than zero, otherwise the result was zero or greater. These checks are often implemented in computers inconditional branch instructions.

Unsigned binary numbers can be ordered by a simplelexicographic ordering, where the bit value 0 is defined as less than the bit value 1. For two's complement values, the meaning of the most significant bit is reversed (i.e. 1 is less than 0).

The following algorithm (for ann-bit two's complement architecture) sets the result register R to −1 if A < B, to +1 if A > B, and to 0 if A and B are equal:

// reversed comparison of the sign bitifA(n-1)=0andB(n-1)=1thenreturn+1;elseifA(n-1)=1andB(n-1)=0thenreturn-1end;// comparison of remaining bitsfori:=n-2downto0dobeginifA(i)=0andB(i)=1thenreturn-1elseifA(i)=1andB(i)=0thenreturn+1endendreturn0

Two's complement and2-adic numbers

[edit]

In a classicHAKMEM published by theMIT AI Lab in 1972,Bill Gosper noted that whether or not a machine's internal representation was two's-complement could be determined by summing the successive powers of two. In a flight of fancy, he noted that the result of doing this algebraically indicated that "algebra is run on a machine (the universe) which is two's-complement."[18]

Gosper's end conclusion is not necessarily meant to be taken seriously, and it is akin to amathematical joke. The critical step is "...110 = ...111 − 1", i.e., "2X =X − 1", and thusX = ...111 = −1. This presupposes a method by which an infinite string of 1s is considered a number, which requires an extension of the finite place-value concepts in elementary arithmetic. It is meaningful either as part of a two's-complement notation for all integers, as a typical2-adic number, or even as one of the generalized sums defined for thedivergent series of real numbers1 + 2 + 4 + 8 + ⋯.[19] Digital arithmetic circuits, idealized to operate with infinite (extending to positive powers of 2) bit strings, produce 2-adic addition and multiplication compatible with two's complement representation.[20]Continuity of binary arithmetical andbitwise operations in 2-adicmetric also has some use in cryptography.[21]

Fraction conversion

[edit]

To convert a number with a fractional part, such as .0101, one must convert starting from right to left the 1s to decimal as in a normal conversion. In this example 0101 is equal to 5 in decimal. Each digit after the floating point represents a fraction where the denominator is a multiplier of 2. So, the first is 1/2, the second is 1/4 and so on. Having already calculated the decimal value as mentioned above, only the denominator of the LSB (LSB = starting from right) is used. The final result of this conversion is 5/16.

For instance, having the floating value of .0110 for this method to work, one should not consider the last 0 from the right. Hence, instead of calculating the decimal value for 0110, we calculate the value 011, which is 3 in decimal (by leaving the 0 in the end, the result would have been 6, together with the denominator 24 = 16, which reduces to 3/8). The denominator is 8, giving a final result of 3/8.

See also

[edit]

Notes

[edit]
  1. ^Forx = 0 we have2N − 0 = 2N, which is equivalent to0* = 0 modulo2N (i.e. after restricting toN least significant bits).

References

[edit]
  1. ^E.g. "Signed integers are two's complement binary values that can be used to represent both positive and negative integer values", Section 4.2.1 inIntel 64 and IA-32 Architectures Software Developer's Manual, Volume 1: Basic Architecture, November 2006
  2. ^Bergel, Alexandre; Cassou, Damien; Ducasse, Stéphane; Laval, Jannik (2013).Deep into Pharo(PDF). p. 337.
  3. ^"Two's Complement"(PDF).University of Rochester Academic Success Center.
  4. ^Lilja, David J.; Sapatnekar, Sachin S. (2005).Designing Digital Computer Systems with Verilog. Cambridge University Press.ISBN 9780521828666.
  5. ^von Neumann, John (1945),First Draft of a Report on the EDVAC(PDF), retrievedFebruary 20, 2021
  6. ^... e.g. by reducing an added constant by 1, increasing a subtracted constant by 1, or setting the carry/borrow flag before a subtract-with-borrow operation. For example, to compute(m+4){\displaystyle -(m+4)}, instead of adding 4 tom{\displaystyle m}, inverting the result, and then adding 1, one can merely add 3 (= 4 − 1) tom{\displaystyle m} and then invert the result. (Of course, it is also an option, using the invert-and-add scheme, to invertm{\displaystyle m} first and then subtract 3 [equivalent to adding −3 = −4 + 1].)
  7. ^Zero is the one value which when added to its two's complement, using machine (modular) binary arithmetic, does not sum to2N{\displaystyle 2^{N}}, but observe that in arithmetic modulo2N{\displaystyle 2^{N}},0{\displaystyle 0} is congruent to2N{\displaystyle 2^{N}}.
  8. ^"Math". API specification. Java Platform SE 7.
  9. ^Regehr, John (2013)."Nobody expects the Spanish inquisition, or INT_MIN to be divided by −1".Regehr.org (blog).
  10. ^abSeacord, Robert C. (2020)."Ensure that operations on signed integers do not result in overflow". Rule INT32-C.wiki.sei.cmu.edu. SEI CERT C Coding Standard.
  11. ^Affeldt, Reynald & Marti, Nicolas (2006).Formal verification of arithmetic functions in SmartMIPS Assembly(PDF) (Report). Archived fromthe original(PDF) on 2011-07-22.
  12. ^Harris, David Money; Harris, Sarah L. (2007).Digital Design and Computer Architecture. Morgan Kaufmann. p. 18.ISBN 978-0-08-054706-0 – via Google Books.
  13. ^"3.9. Two's Complement".Chapter 3. Data Representation. cs.uwm.edu. 2012-12-03. Archived fromthe original on 31 October 2013. Retrieved2014-06-22.
  14. ^Finley, Thomas (April 2000)."Two's Complement". Computer Science. Class notes for CS 104. Ithaca, New York: Cornell University. Retrieved2014-06-22.
  15. ^Bruno Paillard.An Introduction To Digital Signal Processors, Sec. 6.4.2. Génie électrique et informatique Report, Université de Sherbrooke, April 2004.
  16. ^Karen Miller (August 24, 2007)."Two's Complement Multiplication".cs.wisc.edu. Archived fromthe original on February 13, 2015. RetrievedApril 13, 2015.
  17. ^Wakerly, John F. (2000).Digital Design Principles & Practices (3rd ed.). Prentice Hall. p. 47.ISBN 0-13-769191-2.
  18. ^"Programming Hacks".HAKMEM. ITEM 154 (Gosper). Archived fromthe original on 2024-02-24.
  19. ^For the summation of 1 + 2 + 4 + 8 + ⋯ without recourse to the 2-adic metric, seeHardy, G. H. (1949).Divergent Series. Clarendon Press. pp. 7–10.LCC QA295 .H29 1967.
  20. ^Vuillemin, Jean (1993). "Chapter 7".On circuits and numbers(PDF). Paris:Digital Equipment Corporation. p. 19. Retrieved2023-03-29. See especially chapter 7.3 for multiplication.
  21. ^Anashin, Vladimir; Bogdanov, Andrey; Kizhvatov, Ilya (2007)."ABC Stream Cipher".Russian State University for the Humanities. Retrieved24 January 2012.

Further reading

[edit]

External links

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=Two%27s_complement&oldid=1331521480"
Category:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp