FACTOID # 4: China's labor force stands at 706 million people, almost three times that of Europe and twice that of North and South America combined
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RECENT ARTICLES
More Recent Articles »
 

SEARCH ALL

FACTS & STATISTICS    Advanced view

Search encyclopedia, statistics and forums:

 

 

(* = Graphable)

 

 


Encyclopedia > Processor registers

In computer architecture, a processor register is a small amount of very fast computer memory used to speed the execution of computer programs by providing quick access to commonly used values—typically, the values being in the midst of a calculation at a given point in time.


These registers are the top of the memory hierarchy, and are the fastest way for the system to manipulate data. Registers are normally measured by the number of bits they can hold, for example, an "8-bit register" or a "32-bit register". Registers are now usually implemented as an array of SRAMs, but they have also been implemented using individual flip-flops, high speed core memory, thin film memory, and other ways in various machines.


The term is often used to refer only to the group of registers that can be directly indexed for input or output of an instruction, as defined by the instruction set. More properly, these are called the "architected 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 hardware registers than just these eight. There are several other classes of registers:

  • Data registers are used to store integer numbers (see also Floating Point Registers, below). In some simple/older CPUs, a special data register is the accumulator, used for arithmetic calculations.
  • Address registers hold memory addresses and are used to access memory. In some simple/older CPUs, a special address register is the index register (one or more of these may be present)
  • General Purpose registers (GPRs) can store both data and addresses, i.e., they are combined Data/Address registers.
  • Floating Point registers (FPRs) are used to store floating point numbers.
  • Constant registers hold read-only values (e.g., zero, one, pi, ...).
  • Vector registers hold data for vector processing done by SIMD instructions (Single Instruction, Multiple Data).
  • Special Purpose registers store internal CPU data, like the program counter (aka instruction pointer), stack pointer, and status register (aka processor status word).
  • 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.

Two different approaches of modern physical register implementation have been pursued:

  1. The first is to have an electronic switch, such as a flip-flop, for each bit of the register. This system is stable, and is standard engineering practice.
  2. The other method is to map several states to the charge in one capacitor. This approach can sometimes be used to save money. The most common type of electronic RAM computer storage in computers today, DRAM, stores one bit per capacitor.

  Results from FactBites:
 
Processor register - Wikipedia, the free encyclopedia (495 words)
In computer architecture, a processor register is a small amount of very fast computer memory used to speed the execution of computer programs by providing quick access to commonly used values—typically, the values being in the midst of a calculation at a given point in time.
Processor registers are the top of the memory hierarchy, and provide the fastest way for the system to access data.
Registers are now usually implemented as a register file, but they have also been implemented using individual flip-flops, high speed core memory, thin film memory, and other ways in various machines.
Itanium® Processor Family Performance Advantages: Register Stack Architecture - Intel® Software Network (1256 words)
And with only a small number of processor registers at its disposal, the compiler would soon run out of registers while the nesting level of function calls would be very shallow.
The register stack serves a similar function as the memory stack in traditional processors, but the register stack is managed internally by the processor.
Instructions that use processor registers exclusively don't have to wait for the memory cycles to complete; they perform all their work at full speed inside the processor.
  More results at FactBites »


 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your comments
Please enter the 5-letter protection code

Want to know more?
Search encyclopedia, statistics and forums:

 


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.