
A processor register is a quickly accessible location available to a computer's
processor. Registers usually consist of a small amount of fast
storage, although some registers have specific hardware functions, and may be read-only or write-only. In
computer architecture, registers are typically addressed by mechanisms other than
main memory
Computer data storage or digital data storage is a technology consisting of computer components and recording media that are used to retain digital data. It is a core function and fundamental component of computers.
The central processin ...
, but may in some cases be assigned a
memory address e.g. DEC
PDP-10
Digital Equipment Corporation (DEC)'s PDP-10, later marketed as the DECsystem-10, is a mainframe computer family manufactured beginning in 1966 and discontinued in 1983. 1970s models and beyond were marketed under the DECsystem-10 name, especi ...
,
ICT 1900.
Almost all computers, whether
load/store architecture or not, load items of data from a larger memory into registers where they are used for
arithmetic operations,
bitwise operation
In computer programming, a bitwise operation operates on a bit string, a bit array or a binary numeral (considered as a bit string) at the level of its individual bits. It is a fast and simple action, basic to the higher-level arithmetic operatio ...
s, and other operations, and are manipulated or tested by
machine instructions. Manipulated items are then often stored back to main memory, either by the same instruction or by a subsequent one. Modern processors use either
static or
dynamic random-access memory
Random-access memory (RAM; ) is a form of Computer memory, electronic computer memory that can be read and changed in any order, typically used to store working Data (computing), data and machine code. A random-access memory device allows ...
(RAM) as main memory, with the latter usually accessed via one or more
cache levels.
Processor registers are normally at the top of the
memory hierarchy, and provide the fastest way to access data. The term normally refers only to the group of registers that are directly encoded as part of an instruction, as defined by the
instruction set
In computer science, an instruction set architecture (ISA) is an abstract model that generally defines how software controls the CPU in a computer or a family of computers. A device or program that executes instructions described by that ISA, s ...
. However, modern high-performance CPUs often have duplicates of these "architectural registers" in order to improve performance via
register renaming
In computer architecture, register renaming is a technique that abstracts logical processor register, registers from physical registers.
Every logical register has a set of physical registers associated with it.
When a machine language instructio ...
, allowing
parallel and
speculative execution
Speculative execution is an optimization (computer science), optimization technique where a computer system performs some task that may not be needed. Work is done before it is known whether it is actually needed, so as to prevent a delay that woul ...
. Modern
x86 design acquired these techniques around 1995 with the releases of
Pentium Pro
The Pentium Pro is a sixth-generation x86 microprocessor developed and manufactured by Intel and introduced on November 1, 1995. It implements the P6 (microarchitecture), P6 microarchitecture (sometimes termed i686), and was the first x86 Intel C ...
,
Cyrix 6x86,
Nx586, and
AMD K5.
When a
computer program
A computer program is a sequence or set of instructions in a programming language for a computer to Execution (computing), execute. It is one component of software, which also includes software documentation, documentation and other intangibl ...
accesses the same data repeatedly, this is called
locality of reference
In computer science, locality of reference, also known as the principle of locality, is the tendency of a processor to access the same set of memory locations repetitively over a short period of time. There are two basic types of reference localit ...
. Holding frequently used values in registers can be critical to a program's performance.
Register allocation is performed either by a
compiler
In computing, a compiler is a computer program that Translator (computing), translates computer code written in one programming language (the ''source'' language) into another language (the ''target'' language). The name "compiler" is primaril ...
in the
code generation phase, or manually by an
assembly language
In computing, assembly language (alternatively assembler language or symbolic machine code), often referred to simply as assembly and commonly abbreviated as ASM or asm, is any low-level programming language with a very strong correspondence bet ...
programmer.
Size
Registers are normally measured by the number of
bits they can hold, for example, an ''
8-bit register'', ''
32-bit
In computer architecture, 32-bit computing refers to computer systems with a processor, memory, and other major system components that operate on data in a maximum of 32- bit units. Compared to smaller bit widths, 32-bit computers can perform la ...
register'', ''
64-bit register'', ''
128-bit
General home computing and gaming utility emerged at 8-bit word sizes, as 28=256 Word (computer architecture), words, a natural unit of data, became possible. Early 8-bit CPUs (such as the Zilog Z80 and MOS Technology 6502, used in the 1977 Co ...
register'', or more. In some
instruction sets, the registers can operate in various modes, breaking down their storage memory into smaller parts (32-bit into four 8-bit ones, for instance) to which multiple data (vector, or
one-dimensional array of data) can be loaded and operated upon at the same time. Typically it is implemented by adding extra registers that map their memory into a larger register. Processors that have the ability to execute single instructions on multiple data are called
vector processors.
Types
A processor often contains several kinds of registers, which can be classified according to the types of values they can store or the instructions that operate on them:
* ''User-accessible registers'' can be read or written by machine instructions. The most common division of user-accessible registers is a division into data registers and address registers.
** ''s'' can hold
numeric data values such as
integers
An integer is the number zero (0), a positive natural number (1, 2, 3, ...), or the negation of a positive natural number (−1, −2, −3, ...). The negations or additive inverses of the positive natural numbers are referred to as negative in ...
and, in some architectures,
floating-point numbers, as well as
characters, small
bit array
A bit array (also known as bitmask, bit map, bit set, bit string, or bit vector) is an array data structure that compactly stores bits. It can be used to implement a simple set data structure. A bit array is effective at exploiting bit-level par ...
s and other data. In some older architectures, such as the
IBM 704
The IBM 704 is the model name of a large digital computer, digital mainframe computer introduced by IBM in 1954. Designed by John Backus and Gene Amdahl, it was the first mass-produced computer with hardware for floating-point arithmetic. The I ...
, the
IBM 709 and successors, the
PDP-1, the
PDP-4/
PDP-7/
PDP-9/
PDP-15, the
PDP-5
The PDP-5 was Digital Equipment Corporation's first 12-bit computer, introduced in 1963.
History
An earlier 12-bit computer, named LINC has been described as the first minicomputer and also "the first modern personal computer." It had 2,048 1 ...
/
PDP-8, and the
HP 2100
The HP 2100 is a series of 16-bit minicomputers that were produced by Hewlett-Packard (HP) from the mid-1960s to early 1990s. Tens of thousands of machines in the series were sold over its 25-year lifetime, making HP the fourth-largest minicomp ...
, a special data register known as the
accumulator is used implicitly for many operations.
** ''s'' hold
addresses and are used by instructions that indirectly access
primary memory.
*** Some processors contain registers that may only be used to hold an ''address'' or only to hold ''numeric values'' (in some cases used as an
index register
An index register in a computer's central processing unit, CPU is a processor register (or an assigned memory location) used for pointing to operand addresses during the run of a program. It is useful for stepping through String (computer science ...
whose value is added as an offset from some address); others allow registers to hold either kind of quantity. A wide variety of possible
addressing modes, used to specify the effective address of an operand, exist.
*** The ''
stack and frame pointers'' are used to manage the
call stack
In computer science, a call stack is a Stack (abstract data type), stack data structure that stores information about the active subroutines and block (programming), inline blocks of a computer program. This type of stack is also known as an exe ...
. Rarely, other
data stacks are addressed by dedicated address registers (see
stack machine
In computer science, computer engineering and programming language implementations, a stack machine is a computer processor or a Virtual machine#Process virtual machines, process virtual machine in which the primary interaction is moving short- ...
).
** ''General-purpose registers'' ('s) can store both data and addresses, i.e., they are combined data/address registers; in some architectures, the
register file is ''unified'' so that the GPRs can store floating-point numbers as well.
** ''s'' (''FPR''s) store floating-point numbers in many architectures.
** ''
Constant registers'' hold read-only values such as zero, one, or
pi.
** ' hold data for
vector processing
In computing, a vector processor or array processor is a central processing unit (CPU) that implements an instruction set where its Instruction (computer science), instructions are designed to operate efficiently and effectively on large Array d ...
done by
SIMD
Single instruction, multiple data (SIMD) is a type of parallel computer, parallel processing in Flynn's taxonomy. SIMD describes computers with multiple processing elements that perform the same operation on multiple data points simultaneousl ...
instructions (Single Instruction, Multiple Data).
** ''
Status registers'' hold
truth value
In logic and mathematics, a truth value, sometimes called a logical value, is a value indicating the relation of a proposition to truth, which in classical logic has only two possible values ('' true'' or '' false''). Truth values are used in ...
s often used to determine whether some instruction should or should not be executed.
** ''Special-purpose registers'' (''SPR''s) hold some elements of the
program state; they usually include the
program counter
The program counter (PC), commonly called the instruction pointer (IP) in Intel x86 and Itanium microprocessors, and sometimes called the instruction address register (IAR), the instruction counter, or just part of the instruction sequencer, ...
, also called the instruction pointer, and the
status register; the program counter and status register might be combined in a
program status word (PSW) register. The aforementioned stack pointer is sometimes also included in this group. Embedded microprocessors, such as
microcontrollers
A microcontroller (MC, uC, or μC) or microcontroller unit (MCU) is a small computer on a single integrated circuit. A microcontroller contains one or more CPUs (processor cores) along with memory and programmable input/output peripherals. Pro ...
, can also have ''
special function registers'' corresponding to specialized hardware elements.
** ''
Control registers'' are used to set the behaviour of system components such as the
CPU.
*** ''
Model-specific registers'' (also called ''machine-specific registers'') store data and settings related to the processor itself. Because their meanings are attached to the design of a specific processor, they are not expected to remain standard between processor generations.
*** ''
Memory type range registers'' (''MTRR''s)
* ''s'' are not accessible by instructions and are used internally for processor operations.
** The ''
instruction register'' holds the instruction currently being executed.
** Registers related to fetching information from
RAM, a collection of storage registers located on separate chips from the CPU:
*** ''
Memory buffer register'' (''MBR''), also known as ''memory data register'' (''MDR'')
*** ''
Memory address register
In a computer, the memory address register (MAR) is the CPU register that either stores the memory address from which data will be fetched to the CPU registers, or the address to which data will be sent and stored via system bus.
In other wo ...
'' (''MAR'')
* ''Architectural registers'' are the registers visible to software and are defined by an architecture. They may not correspond to the physical hardware if
register renaming
In computer architecture, register renaming is a technique that abstracts logical processor register, registers from physical registers.
Every logical register has a set of physical registers associated with it.
When a machine language instructio ...
is being performed by the underlying hardware.
Hardware registers are similar, but occur outside CPUs.
In some architectures (such as
SPARC and
MIPS), the first or last register in the integer
register file is a ''
pseudo-register'' in that it is hardwired to always return zero when read (mostly to simplify indexing modes), and it cannot be overwritten. In
Alpha
Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
, this is also done for the floating-point register file. As a result of this, register files are commonly quoted as having one register more than how many of them are actually usable; for example, 32 registers are quoted when only 31 of them fit within the above definition of a register.
Examples
The following table shows the number of registers in several mainstream CPU architectures. Note that in
x86-compatible processors, the stack pointer (
ESP
) is counted as an integer register, even though there are a limited number of instructions that may be used to operate on its contents. Similar caveats apply to most architectures.
Although all of the below-listed architectures are different, almost all are in a basic arrangement known as the
von Neumann architecture
The von Neumann architecture—also known as the von Neumann model or Princeton architecture—is a computer architecture based on the '' First Draft of a Report on the EDVAC'', written by John von Neumann in 1945, describing designs discus ...
, first proposed by the Hungarian-American
mathematician
A mathematician is someone who uses an extensive knowledge of mathematics in their work, typically to solve mathematical problems. Mathematicians are concerned with numbers, data, quantity, mathematical structure, structure, space, Mathematica ...
John von Neumann
John von Neumann ( ; ; December 28, 1903 – February 8, 1957) was a Hungarian and American mathematician, physicist, computer scientist and engineer. Von Neumann had perhaps the widest coverage of any mathematician of his time, in ...
. It is also noteworthy that the number of registers on
GPUs is much higher than that on CPUs.
Usage
The number of registers available on a processor and the operations that can be performed using those registers has a significant impact on the
efficiency
Efficiency is the often measurable ability to avoid making mistakes or wasting materials, energy, efforts, money, and time while performing a task. In a more general sense, it is the ability to do things well, successfully, and without waste.
...
of code generated by
optimizing compilers. The
Strahler number of an expression tree gives the minimum number of registers required to evaluate that expression tree.
See also
*
CPU cache
A CPU cache is a hardware cache used by the central processing unit (CPU) of a computer to reduce the average cost (time or energy) to access data from the main memory. A cache is a smaller, faster memory, located closer to a processor core, whi ...
*
Quantum register
*
Register allocation
*
Register file
*
Shift register
References
{{Authority control
Computer architecture
Digital registers
Central processing unit