
49
Chapter 1 Architectural Overview
lated condition can be quickly tested. These registers are little used and on the whole
other, more efficient, techniques can be found in preference to their use.
Local Registers
When the most significant address bit is set, the upper 128 registers in the gener-
al purpose register file are accessed. The lower 7–bits of the address are used as an
offset to a base register which
points
into the 128 registers. These general purpose
registers are known as the Local Registers. The base register is located at the global
register address
gr1
. If the addition of the 7–bit operand address value and the register
base value produces a results too big to be contained in the 7–bit local register address
space, the result is rounded modulo–128. When producing a general purpose register
address from a local register address, the most significant bit of the general purpose
register address value is always set.
The local register base address can be read by accessing global register
gr1
.
However, the base register is actually a register which shadows global register
gr1
.
The shadow support circuitry requires that the base be written via an ALU operation
producing a result destined for
gr1
. This also requires that a one cycle delay follow
the setting of the base register and any reference to local registers.
Global register address
gr0
also has a special meaning. Each of the three oper-
and fields has an indirect pointer register located in the special register space. When
address
gr0
is used in an operand field, the indirect pointer is used to access a general
purpose register for the associated operand. Each of the three indirect pointers has an
8–bit field and can point anywhere in the general purpose register space. When indi-
rect pointers are used, there is no distinction made between global and local registers.
All of the general purpose registers are accessible to the processor while execut-
ing in User mode unless register bank protection is applied. General purpose registers
starting with
gr64
are divided into groups of 16 registers. Each group can have access
restricted to the processor operating in Supervisor mode only. The AMD high level
language calling convention specifies that global registers
gr64–gr95
be reserved for
operating system support tasks. For this reason it is normal to see the special register
used to support register banking set to disable User mode access to global registers
gr64–gr95
.
1.10.2 Special Purpose Registers
Special purpose register space is used to contain registers which are not ac-
cessed directly by high level languages. Registers such as the program counter and
the interrupt vector table base pointer are located in special register space. Normally
these registers are accessed by operating system code or assembly language
helper
routines. Special registers can only be accessed by move–to and move–from type
instructions; except for the move–to–immediate case. Move–to and move–from
instructions require the use of a general purpose register. It is worth noting that