Addressing modes

Addressing modes

Addressing modes are the ways through which operands are specified.  

The address field in a typical instruction formats are relatively small.

This address field is used to reference the operand in the memory.

Different addressing modes are:

  1. Immediate addressing mode
  2. Direct addressing mode
  3. Indirect addresing mode
  4. Register direct addressing mode
  5. Register indirect addressing mode
  6. Displacement addressing mode
1. Immediate addressing mode:
In immediate addressing mode the operand value is present in the instruction.
Operand = A
Advantage of immediate addressing mode: No memory reference other than the instruction fetch is required to obtain the operand.
Disadvantage of immediate addressing mode: Size of the number is restricted to the size of the address field.


2. Direct addressing mode:
In direct addressing mode the address field contains the effective address of the operand.
EA = A
Advantage of direct addressing mode: It requires only one memory reference and no special calculation.
Disadvantages od direct addressing mode: It provides only a limited address space.

3. Indirect addressing mode:
In indirect addressing mode the address field refer to the address of a word in memory, which contains a full-length address of  the operand.

EA = (A)
Here, the parentheses are to be interpreted as meaning contents of.

Advantage of indirect addressing mode: Address range is not limited by address field.
Disadvantage of indirect memory address: Instruction execution requires two memory references to fetch the operand: one to get its address and a second to get its value.


4. Register direct addressing mode:
Register direct addressing mode is similar to direct addressing mode. The only difference is that the  address field refers to a register rather than a main memory address.
EA = R
Advantages of register direct addressing mode: Only a small address field is needed in the instruction, and no time consuming memory references are required.
Disadvantag f register direct addressing mode: Address space is very limited.


5. Register indirect addressing mode:
Register indirect addressing mode is similar to indirect addressing mode.
The only difference is that the  address field refers to a register than a main memory.

EA = (R)
The advantages and disadvantages of register indirect addressing mode are basically the same 
as for indirect addressing mode.


6. Displacement addressing mode:
Displacement addressing mode combines the capabilities of direct addressing mode and register indirect addressing mode.

EA = A + (R)
 

Difference betwenn Register Direct Addressing Mode and Register Indirect Addressing Mode:

Register Direct Addressing Mode

Register Indirect Addressing Mode

1.       Operand is placed in register.

Operand is placed in Main memory.

2.      Registers are used to store operands.

Registers are used to store address of operand in main memory.

3.      Address field contains effective address of operand.

Address field contains reference to the effective address of operand.

4.      One register reference for operand.

Two register reference for operand.

5.      Fast

Slow

6.      Easier to access data

Complex

7.      Limitation of address field to store operand address.

There is no such limit.


Difference betwenn Direct Addressing Mode and Indirect Addressing Mode:

Direct Addressing Mode

Indirect Addressing Mode

1.       Address field contains effective address of operand.

Address field contains memory location where effective address is present

2.      One memory reference to access operand

Two memory reference to access operand

3.      Fast

Slow

4.      Address size of operand is limited to size of address field.

No such limitation. Because operand address is stored in main memory.

5.      Less calculation to access operand

More calculation to access operand.


Difference betwenn Immediate Addressing Mode and Direct Addressing Mode:

Immediate Addressing Mode

Direct Addressing Mode

1.       Address field contains operand

Address field contains effective address of operand

2.      Operand is in address field

Operand is present in main memory

3.      No memory reference

One memory reference

4.      Fast

Slow

  5.   Operand size depends on size of address field

No limitation on operand size


Difference between Immediate Addressing Mode and Indirect Addressing Mode:

Immediate Addressing Mode

Indirect Addressing Mode

1.       Address field contains operand

Address field contains memory reference of operand

2.      There is no memory reference

There is two memory reference

3.      Operand size depends on size of address field in instruction

There is no such limit on operand size

4.      Fast

Slow

5.      Operand present in address field

Operand is present in main memory


Q1. There is more than one addressing mode, than how processor determine which addressing mode to use?
Ans.  By using mode field. One or more bits in the instruction format can be used as a mode field. The value of the mode field determines which addressing mode is to be used.

Q2. What is effective address ?
Ans. In a system without virtual memory, the effective address will be either a main memory address or a register. 
In a virtual memory system, the effective address is a virtual address or a register.

More topics from Computer Organization to read

Computer Organization and Architecture:

EasyExamNotes.com covered following topics in these notes.

  1. Structure of desktop computers
  2. Logic gates
  3. Register organization
  4. Bus structure
  5. Addressing modes
  6. Register transfer language
  7. Direct mapping numericals
  8. Register in Assembly Language Programming
  9. Arrays in Assembly Language Programming

References:

  1. William stalling ,“Computer Architecture and Organization” PHI
  2. Morris Mano , “Computer System Organization ”PHI

Post a Comment

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.