
202
Evaluating and Programming the 29K RISC Family
The FZ bit in the Current Processor Status register is responsible for locking the
values in the Program Counters (PC0–PC2), the Channel registers (CHA, CHD and
CHC), and the ALU status. As long as the FZ bit remains set, these registers will not
be updated. Note, the PC0–PC2 registers are not the actual Program counter, but a
three-stage buffer store that records the stages of program execution.
If the intention is to ignore the interrupt and return control to the interrupted pro-
cess, the entire handler can consist of little more than an IRET instruction. After the
interrupt request has been cleared, execution of this instruction will cause the proces-
sor to perform the interrupt return sequence described above, resuming execution of
the interrupted program at the point of interruption.
4.3.4 Operating in Freeze mode
Interrupt or trap handlers executing only a small number of instructions before
returning will benefit from the very short latency of the interrupt sequence performed
by the 29K processor. This is because the 29K processor offers superior performance
when compared with conventional processors that save a great deal of context when-
ever an interrupt or trap occurs.
Because the executing program’s context is often not disturbed by the interrupt
or trap handling code, both the reaction time (latency) and processing time of the in-
terrupt handler are minimized.
In this context, no registers (except the CPS) have been saved when an interrupt
or trap handler is given control by the processor. In addition, if the Program Counter
registers (PC0 and PC1) are left undisturbed, the 29K processor’s instruction pipe-
line is more quickly restarted when the handler returns.
But, because Freeze mode has frozen the contents of several important registers,
there are some instructions that should not be used in this context, or whose use is
restricted. These instructions are:
Instructions that can generate traps. These should not be used because traps are
disabled in Freeze mode. These include ASSERT, emulated floating-point
operations (e.g., FADD), and certain integer operations whose execution
could cause a trap to occur. Note, the Am29050 processor executes all floating
point operations directly and thus these instructions can be used with the
Am29050 processor as they will not generate a trap.
If a trap generating instruction is executed it will have the same affect as a NOP
instruction. An exception trap is caused by bad memory accesses. These traps are al-
ways taken, even if they occur in Freeze-mode code. Because the processor registers
were already frozen at the time of the
nested
trap, it can be difficult to determine the
cause of the trap or issue an IRET instruction.
However, if an Am29050 processor is being used and a trap occurs when the DA
bit is set in the CPS register, Monitor mode is entered. Monitor mode (section 4.3.5)
can be used by monitors to debug kernel Freeze-mode code.