Cpu Register Website Links For
Register
 

Information About

Cpu Register




Processor registers are at the top of the Memory Hierarchy , and provide the fastest way for a Cpu to access data. The term is often used to refer only to the group of registers that are directly encoded as part of an instruction, as defined by the Instruction Set . More properly, these are called the "architectural registers". For instance, the X86 instruction set defines a set of eight 32-bit registers, but a CPU that implements the x86 instruction set will contain many more registers than just these eight.

Allocating frequently used variables to registers can be critical to a program's performance. This action, namely Register Allocation is performed by a Compiler in the Code Generation phase.


CATEGORIES OF REGISTERS

Registers are normally measured by the number of Bit s they can hold, for example, an " 8-bit register" or a " 32-bit register". Registers are now usually implemented as a Register File , but they have also been implemented using individual Flip-flop s, high speed Core Memory , Thin Film Memory , and other ways in various machines.

There are several classes of registers according to the content:
  • User-Visible Registers - It has two types. Data Registers and Address registers.

  • Data registers are used to store Integer numbers (see also Floating Point Registers, below). In some older and simple current CPUs, a special data register is the Accumulator , used implicitly for many operations.

  • Address registers hold memory addresses and are used to access Memory . In some CPUs, a special address register is an Index Register , although often these hold numbers used to modify addresses rather than holding addresses.

  • Conditional registers hold Truth Value s often used to determine whether some instruction should or should not be executed.

  • General purpose registers ('''GPR'''s) can store both data and addresses, i.e., they are combined Data/Address registers.

  • Floating point registers ('''FPR'''s) store Floating Point numbers in many architectures.

  • Constant registers hold read-only values such as zero, one, or Pi .

  • Vector registers hold data for Vector Processing done by SIMD instructions (Single Instruction, Multiple Data).

  • Special purpose registers hold program state; they usually include the Program Counter (aka instruction pointer), Stack Pointer , and Status Register (aka processor status word).

  • --- Instruction Register s store the instruction currently being executed.

  • --- Index registers are used for modifying Operand addresses during the run of a program.

  • In some architectures, 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 cannot be expected to remain standard between processor generations.

  • Control and status registers - It has three types. Program counter, instruction registers, Program status word (PSW).

  • Registers related to fetching information from RAM , a collection of storage registers located on separate chips from the CPU (unlike most of the above, these are generally not ''architectural'' registers):

  • --- Memory Buffer Register

  • --- Memory Data Register

  • --- Memory Address Register

  • --- Memory Type Range Registers


Hardware Register s are similar, but occur outside CPUs.


SOME EXAMPLES

The table below shows the number of registers of several mainstream processors. Note that the stack pointer (ESP) is counted as an integer register on x86-compatible processors, even though there are a limited number of instructions that may be used to operate on its contents.


SEE ALSO