
240
Evaluating and Programming the 29K RISC Family
to save the context in place of the PCB data structure, the CTX_ offset constants may
still be used.
5.1
REGISTER CONTEXT
Part of the increased performance of the 29K family comes from using 128
internal registers as a register stack cache. The cache holds the top of the run–time
stack. Each procedure obtains its necessary register allocation by claiming a region
of the register stack. The register cache does not have to be flushed (spilled) until
there is insufficient unallocated register space. This happens infrequently. The
register stack offers greater performance benefits over a data memory cache, due to
register cache triple porting on–chip (two read ports and one write port). Note, the
Am29050 has an additional write port which can be used to simultaneously
write–back a result from the floating–point unit. Chapter 2 explains in detail the
procedure calling mechanism’s use of the cache.
However, when a context switch is required from one user task to another user
task, it is necessary to copy all internal registers currently allocated to the current user
task to a data memory save region. This makes the registers available for use by the
in–coming task.
In performing a context switch, a clear understanding is required of processor
register usage. The AMD C Language register usage convention (see section 2.1)
makes 33 of the 65 global registers (
gr1
,
gr96–gr127
) available for User data storage.
Global registers
gr128–gr255
, used to implement the local register stack, are also
used by the compiler generated code. (See section 3.3 (page 117) of Chapter 3,
Assembly Language Programming
, for global register assignment.)
Processor global registers
gr64–gr95
are not accessed by C generated code.
These registers are normally used by the Supervisor to store operating system
information or implement interrupt handler temporary working space. Particular
Supervisor implementations may store data in registers
gr64–gr95
. This data is
relevant to the task currently executing, and includes such information as pointers to
memory resident data structures containing system support information. This data
may also have to be copied–out to memory when a task switch is required.
The C procedure calling convention specifies that global registers
gr96–gr111
are used for return value passing. For a procedure returning a 32–bit integer, only
register
gr96
is required to store return value information. The compiler generally
uses these global registers for temporary working space before the return value data
is determined. The compiler has nine more temporary registers in the
gr112–gr127
range which can also be used for temporary data storage. Other registers in this range
are used to implement register stack support functions.
When more registers are required by a procedure for data storage, the local
register stack can be used. This reduces the need to use external data memory to store
procedure data.