The invention relates to microprocessors and processing systems with improved power efficiency.
The concept of Hamming distance will first be described. The Hamming distance between two binary numbers is the count of the number of bits that differ between them.
For example:
Hamming distance is related to power efficiency in microprocessors because of the way that binary numbers are represented by electrical signals. Typically a steady low voltage on a wire represents a binary 0 bit and a steady high voltage represents a binary 1 bit. A number will be represented using these voltage levels on a group of wires, with one wire per bit. Such a group of wires is called a bus. Energy is used when the voltage on a wire is changed. The amount of energy depends on the magnitude of the voltage change and the capacitance of the wire. The capacitance depends to a large extent on the physical dimensions of the wire. So when the number represented by a bus changes, the energy consumed depends on the number of bits that have changed—the Hamming distance—between the old and new values, and on the capacitance of the wires.
If one can reduce the average Hamming distance between successive values on a high-capacitance bus, keeping all other aspects of the system the same, the system's power efficiency will have been increased.
The capacitance of wires internal to an integrated circuit is small compared to the capacitance of wires fabricated on a printed circuit board due to the larger physical dimensions of the latter. Systems commonly have memory and microprocessor in distinct integrated circuits, interconnected by a printed circuit board. Therefore, one object of the present invention is to reduce the average Hamming distance between successive values on the microprocessor-memory interface signals, as this will have a particularly significant influence on power efficiency.
Even in systems where microprocessor and memory are incorporated into the same integrated circuit the capacitance of the wires connecting them will be larger than average, so even in this case reduction of average Hamming distance on the microprocessor-memory interface is worthwhile.
U.S. Pat. No. 5,790,874 describes reducing Hamming distances between instructions using several different techniques. In the technique involving immediate values, U.S. Pat. No. 5,790,874 discloses replacing the subtraction of a positive 2's complement value with the addition of a negative 2's complement value, and vice-versa, if such replacement reduces the Hamming distance between adjacent values.
The publication “Low Power Architecture Design and Compilation Techniques for High-Performance Processors,” by Su et al, XP000479424 ISBN 0-8186-53809 pages 489 to 498 teaches the use of Gray code in representations of instruction addresses passing between modules in the architecture of high-speed microprocessors.
According to the invention there is provided a microprocessor and processing system as claimed in the accompanying claims.
Embodiments of the invention will now be described, by way of example only, with reference to the accompanying drawings, in which:
The instruction fetch bus (a) is the bus on which instructions are communicated from the memory 4 to the processor 2. This embodiment reduces the average Hamming distance on this bus, by reducing the average Hamming distance from one instruction to the next.
The power-saving technique employed in this embodiment reduces the average inter-instruction Hamming distance for a part of the instruction called the immediate value. The format of instructions and the role of immediate values in this embodiment will first be described.
The processor 2 falls into the category of RISC (Reduced Instruction Set Computer) processors. One defining characteristic of this category of processors is that they have regular, fixed-size instructions. In the processor 2 all instructions are made up of 32 bits.
This is the same as the size of the instruction fetch bus (a) (see
Each instruction conveys various items of information to the processor. These items include, referring to
For example, an instruction that tells the processor 2 to “add 10 to the value currently in register 4 and store the result in register 5” would have the opcode for ‘add’, register specifiers 4 and 5, and immediate value 10.
The instruction set of the processor 2 has only three instruction formats, shown in
As a consequence of this choice of instruction formats, very often the low-numbered bits in one instruction will contain an immediate value and so will the same bits in the next instruction. This embodiment aims to reduce the average inter-instruction Hamming distance in this case by choosing unconventional number representations for the immediate values.
There are implications to changing the processor's number representation. Existing programs written in high-level languages make assumptions about the number representations used by the processors on which they run. For example, code might expect to be able to determine the sign of a number by inspecting its most significant bit, or whether it is odd or even by inspecting its least significant bit (these are both properties of the usual “two's complement” number representation). If we use an alternative number representation throughout the processor 2, such code will fail to function.
To maintain the expected behavior of such code, in this embodiment only immediate values in instructions will use an alternative representation. A conversion circuit must convert the alternative representation to two's complement before it interacts with other data. Refer to
In applications where maintaining the expected behaviour of code that relies on the use of a particular number representation is not important, the invention can be applied to the data bus (c) as well. External peripheral devices would also need to use the alternative number representation. Since data is transferred in both directions between the processor and the memory the conversion would need to be applied in both directions. This conversion circuit is labelled (8).
To appreciate the likely average Hamming distances for the different number representations it is necessary to understand the typical distribution of immediate values.
Empirical studies show that immediate values can be both positive and negative but are more often small then large. This is because:
The conventional method of representing numbers that may be positive or negative in binary is called two's complement. The main benefit of two's complement is that the hardware needed to implement arithmetic operations, such as addition, is simple. The following table shows the representations for small positive and negative numbers using a 16-bit two's complement encoding:
Considering our objective of low inter-instruction Hamming distance and the typical distribution of immediate values it is apparent that two's complement is not an ideal representation. The Hamming distance from one small value to another is small as long as the values both have the same sign: for example, the Hamming distance from 2 to 3 is 1. On the other hand, if the values have differing signs the Hamming distance will be large as all of the top bits of the representation change: the Hamming distance from 2 to −2 is 14.
A well-known alternative representation is called sign-magnitude. It uses one bit to indicate the sign of the number and the others to represent the absolute value in conventional binary:
This representation clearly has a smaller typical Hamming distance than two's complement for small positive and negative values since the higher-numbered magnitude bits are almost always ‘0’. For example the Hamming distance from 2 to −2 is reduced from 14 for two's complement to just 1.
A disadvantage of sign-magnitude is that hardware to perform arithmetic on sign-magnitude numbers is more complex than for two's complement. In particular note that there are two possible representations for zero, and consequently one fewer distinct values that can be represented. Special circuitry is inevitably needed take account of this.
Conversion to two's complement is as follows: if the sign bit is clear, do nothing; if the sign bit is set, invert and add 1 to the magnitude bits. The circuit to implement this conversion, shown in
It should be noted that in
A Gray code is a number representation in which the Hamming distance between values that differ by one is one. There are many such representations, but the following is the most commonly used:
Like sign-magnitude, Gray code has a smaller average Hamming distance than two's complement because the high-numbered bits don't all change when the sign changes. Unlike sign-magnitude, there is only a single representation of zero.
Conversion of values represented using this Gray code to two's complement is accomplished using the circuit shown in
The invention includes embodiments in which the format used for immediate values is chosen to improve the power efficiency of the processor. This includes the use of sign magnitude and Gray code representations for the immediate values.
This embodiment makes use of a variant of the sign-magnitude format that has the low average Hamming distance of standard sign-magnitude but with a lower conversion circuit complexity.
In the variant, as in sign-magnitude, the most significant bit represents the sign: ‘0’ for positive numbers and zero, and ‘1’ for negative numbers. The remaining bits encode the magnitude of the number if it is positive, or one less than the magnitude of the number if it is negative:
Note that unlike standard sign-magnitude there is a single representation of zero.
Conversion to two's complement can be accomplished as follows: if the sign bit is zero, nothing is changed; if the sign bit is one, the magnitude bits are inverted. A circuit to implement this conversion is shown in
The same circuit can be used for the reverse conversion from two's complement to variant sign-magnitude. If the alternative number representation is applied to the data bus (c) of
Referring back to
Practical microprocessors will typically perform other operations besides addition and subtraction, but this approach remains valid.
As
Considering
This circuit of
The following table compares features of the various number representations discussed above.
From the results presented above we can see that the new sign-magnitude variant offers a good combination of features. Its conversion circuit is relatively simple and fast, especially when merged with an ALU, and it offers a significant saving compared to two's complement in the average Hamming distance metric.
A microprocessor incorporating this feature can expect significantly improved power efficiency.
It should be appreciated that variations of the embodiments described above are possible within the scope of the invention. For example, minor modifications to the sign-magnitude variant format are possible, including for example simply inverting or permuting some or all of the bits.
Number | Date | Country | Kind |
---|---|---|---|
0112117.7 | May 2001 | GB | national |
Filing Document | Filing Date | Country | Kind |
---|---|---|---|
PCT/GB02/02014 | 5/2/2002 | WO |