Non-Volatile Register

Why Trust Techopedia

What Does Non-Volatile Register Mean?

A non-volatile register is a type of register witth contents that must be preserved over subroutine calls. Whenever the value of a nonvolatile register is changed by the routine, the old value has to be saved on the stack prior to changing the register and that value has to be restored before returning. A register is similar to a variable, except that there is a fixed number of registers. Every register is a unique location in the CPU in which a single value is saved. A register is the one and only place where mathematical functions, such as addition, multiplication, subtraction, etc., can be carried out. Registers often hold pointers that refer to the memory. Moving values between memory and registers is a common phenomenon.

Advertisements

Techopedia Explains Non-Volatile Register

The following are a few examples of non-volatile registers:

  • ebx: A non-volatile register used for general purposes. It is usually set to a common value all through a function to accelerate the calculations.
  • esi: A non-volatile register used for general purposes. It is commonly used as a pointer, especially for "rep-" class instructions that require a source and destination for data. Here, the esi points to the source. An esi generally holds data that is used all through a function as it is not prone to changes.
  • edi: Another non-volatile register used for general purposes. This is commonly used as a pointer. An edi is identical to an esi, with the exception that it usually points to the destination.
  • ebp: Another non-volatile register that is used as a general purpose register. It has two distinctive uses based on the compile settings. It is either a general purpose register or a frame pointer. If the compilation has not been optimized or if the code is hand written, ebp monitors the location of the stack when a function begins. Since the stack is changed all through a function, when ebp is set at the original value, the variables saved on the stack are allowed to be referenced easily. If compilation has been optimized, ebp will be used as a general purpose register to store any type of data, while the calculations for the stack pointer are carried out depending on its movement.
Advertisements

Related Terms

Margaret Rouse
Technology Specialist
Margaret Rouse
Technology Specialist

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.