CH13 COA10e
CH13 COA10e
William Stallings
Computer Organization
and Architecture
10th Edition
© 2016 Pearson Education, Inc., Hoboken,
NJ. All rights reserved.
+ Chapter 13
Instruction Sets: Addressing
Modes and Formats
Direct
Indirect
Register
Register indirect
Displacement
Stack
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Table 13.1
Basic Addressing Modes
■ Operand = A
■ This mode can be used to define and use constants or set initial
values of variables
■ Typically the number will be stored in twos complement form
■ The leftmost bit of the operand field is used as a sign bit
■ Advantage:
■ No memory reference other than the instruction fetch is required to
obtain the operand, thus saving one memory or cache cycle in the
instruction cycle
■ Disadvantage:
■ The size of the number is restricted to the size of the address field,
which, in most instruction sets, is small compared with the word length
Limitation is that it
provides only a limited
address space
■ EA = (A)
■ Parentheses are to be interpreted as meaning contents of
■ Advantage:
■ For a word length of N an address space of 2N is now available
■ Disadvantage:
■ Instruction execution requires two memory references to fetch the operand
■ One to get its address and a second to get its value
Advantages: Disadvantage:
• Only a small address • The address space is
field is needed in the very limited
instruction
• No time-consuming
memory references are
required
■ EA = (R)
■ EA = A + (R)
■ Requires that the instruction have two address fields, at least one
of which is explicit
■ The value contained in one address field (value = A) is used directly
■ The other address field refers to a register whose contents are added to
A to produce the effective address
■ Autoindexing
■ Automatically increment or decrement the index register after each reference to it
■ EA = A + (R)
■ (R) 🡸 (R) + 1
■ Postindexing
■ Indexing is performed after the indirection
■ EA = (A) + (R)
■ Preindexing
■ Indexing is performed before the indirection
■ EA = (A + (R))
■ Associated with the stack is a pointer whose value is the address of the top of
the stack
■ The stack pointer is maintained in a register
■ Thus references to stack locations in memory are in fact register indirect addresses
■ Branch instructions
■ The only form of addressing for branch instructions is immediate
■ Instruction contains 24 bit value
■ Shifted 2 bits left so that the address is on a word boundary
■ Effective range ± 32MB from from the program counter
Number of Register
Number of
addressing versus
operands
modes memory
Number of Address
Address range
register sets granularity
■ Delivers overall code density comparable with Thumb, together with the
performance levels associated with the ARM ISA
■ Before Thumb-2 developers had to choose between Thumb for size and
ARM for performance