Arithmetic logic unit

Arithmetic logic unit
Arithmetic Logic Unit schematic symbol
Cascadable 8 Bit ALU Texas Instruments SN74AS888

In computing, an arithmetic logic unit (ALU) is a digital circuit that performs arithmetic and logical operations. The ALU is a fundamental building block of the central processing unit of a computer, and even the simplest microprocessors contain one for purposes such as maintaining timers. The processors found inside modern CPUs and graphics processing units (GPUs) accommodate very powerful and very complex ALUs; a single component may contain a number of ALUs.

Mathematician John von Neumann proposed the ALU concept in 1945, when he wrote a report on the foundations for a new computer called the EDVAC. Research into ALUs remains an important part of computer science, falling under Arithmetic and logic structures in the ACM Computing Classification System.

Contents

Numerical systems

An ALU must process numbers using the same format as the rest of the digital circuit. The format of modern processors is almost always the two's complement binary number representation. Early computers used a wide variety of number systems, including ones' complement, two's complement sign-magnitude format, and even true decimal systems, with various[NB 2] representation of the digits. ALUs for each one of these that makes it easier for the ALUs to calculate additions and subtractions.[citation needed]

The ones' complement and two's complement number systems allow for subtraction to be accomplished by adding the negative of a number in a very simple way which negates the need for specialized circuits to do subtraction; however, calculating the negative in two's complement requires adding a one to the low order bit and propagating the carry. An alternative way to do two's complement subtraction of A−B is to present a one to the carry input of the adder and use ¬B rather than B as the second input.

Practical overview

Most of a processor's operations are performed by one or more ALUs. An ALU loads data from input registers, an external Control Unit then tells the ALU what operation to perform on that data, and then the ALU stores its result into an output register. The Control Unit is responsible for moving the processed data between these registers, ALU and memory.

Simple operations

A simple example arithmetic logic unit (2-bit ALU) that does AND, OR, XOR, and addition

Most ALUs can perform the following operations:

Complex operations

Engineers can design an Arithmetic Logic Unit to calculate any operation. The more complex the operation, the more expensive the ALU is, the more space it uses in the processor, the more power it dissipates. Therefore, engineers compromise. They make the ALU powerful enough to make the processor fast, yet not so complex as to become prohibitive. For example, computing the square root of a number might use:

  1. Calculation in a single clock Design an extraordinarily complex ALU that calculates the square root of any number in a single step.
  2. Calculation pipeline Design a very complex ALU that calculates the square root of any number in several steps. The intermediate results go through a series of circuits arranged like a factory production line. The ALU can accept new numbers to calculate even before having finished the previous ones. The ALU can now produce numbers as fast as a single-clock ALU, although the results start to flow out of the ALU only after an initial delay.
  3. Iterative calculation Design a complex ALU that calculates the square root through several steps. This usually relies on control from a complex control unit with built-in microcode.
  4. Co-processor Design a simple ALU in the processor, and sell a separate specialized and costly processor that the customer can install just beside this one, and implements one of the options above.
  5. Software libraries Tell the programmers that there is no co-processor and there is no emulation, so they will have to write their own algorithms to calculate square roots by software.
  6. Software emulation Emulate the existence of the co-processor, that is, whenever a program attempts to perform the square root calculation, make the processor check if there is a co-processor present and use it if there is one; if there isn't one, interrupt the processing of the program and invoke the operating system to perform the square root calculation through some software algorithm.

The options above go from the fastest and most expensive one to the slowest and least expensive one. Therefore, while even the simplest computer can calculate the most complicated formula, the simplest computers will usually take a long time doing that because of the several steps for calculating the formula.

Powerful processors like the Intel Core and AMD64 implement option #1 for several simple operations, #2 for the most common complex operations and #3 for the extremely complex operations.

Inputs and outputs

The inputs to the ALU are the data to be operated on (called operands) and a code from the control unit indicating which operation to perform. Its output is the result of the computation.

In many designs the ALU also takes or generates as inputs or outputs a set of condition codes from or to a status register. These codes are used to indicate cases such as carry-in or carry-out, overflow, divide-by-zero, etc.

ALUs vs. FPUs

A floating-point unit also performs arithmetic operations between two values, but they do so for numbers in floating-point representation, which is much more complicated than the two's complement representation used in a typical ALU. In order to do these calculations, a FPU has several complex circuits built-in, including some internal ALUs.

In modern practice, engineers typically refer to the ALU as the circuit that performs integer arithmetic operations (like two's complement and BCD). Circuits that calculate more complex formats like floating point, complex numbers, etc. usually receive a more specific name such as FPU.

See also

Notes

  1. ^ a b IBM and UNIVAC used the term biquinqary with different meanings.
  2. ^ Including Binary-Coded Decimal (BCD) in 4 bits, 2-out-of-5 coding in five bits[1], 5-bit biquinary[NB 1] encoding[2], and 2-out-of-seven biquinary[NB 1] encoding in 7 bits[3]

References

External links


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • arithmetic logic unit — noun (computing) The part of a central processing unit that carries out arithmetic and logical operations (abbrev ALU) • • • Main Entry: ↑arithmetic …   Useful english dictionary

  • Arithmetic Logic Unit — Arithmetic Logic Unit,   ALU, Rechenwerk, Prozessor …   Universal-Lexikon

  • arithmetic-logic unit — aritmetinis loginis įtaisas statusas T sritis automatika atitikmenys: angl. ALU; arithmetic logic unit vok. Arithmetik Logik Einheit, f; Recheneinheit, f; Rechen und Leitwerk, n; Rechen und Steuerwerk, n rus. АЛУ; арифметическо логическое… …   Automatikos terminų žodynas

  • arithmetic-logic unit — aritmetinis loginis įtaisas statusas T sritis informatika apibrėžtis ↑Centrinio procesoriaus funkcinis komponentas aritmetinėms ir loginėms operacijoms atlikti. Santrumpa ALĮ. Veikimo požiūriu yra autonominis, tačiau mikroprocesoriuose… …   Enciklopedinis kompiuterijos žodynas

  • arithmetic logic unit — part of a computer processor responsible for executing arithmetic functions …   English contemporary dictionary

  • arithmetic logic unit — (ALU)    Unit within a microprocessor that computes logical and arithmetical operations …   IT glossary of terms, acronyms and abbreviations

  • arithmetic/logic unit — /ar ith met ik loj ik/, Computers. See ALU. * * * …   Universalium

  • arithmetic logic unit — noun That part of a CPU that does calculations and logical operations Syn: ALU …   Wiktionary

  • Arithmetic Logic Unit —   The place in a computer where calculations are performed. Also known simply as the ALU. The ALU takes two pieces of data held in the registers and performs a calculation. See also Accumulator …   International financial encyclopaedia

  • arithmetic/logic unit — /ar ith met ik loj ik/, Computers. See ALU …   Useful english dictionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”