
October 13 1995, Draft 1
336
Addendum to –– Evaluating and Programming the 29K RISC Family
trace trap is an asynchronous trap, and thus after the trap is taken the next instruction
about to execute is addressed by PC1. Some family members support Instruction
Breakpoint registers, which can be used to stop execution when a certain address
reaches execute. When this occurs a synchronous trap is taken and the instruction is
stopped before execution is completed.
Debug monitors, such as MiniMON29K, understand the operation of the PC
registers and can use them to control program execution. When MiniMON29K is
used with a processor which has no Breakpoint registers, a technique relying on tem-
porarily replacing instructions with illegal opcode instructions is used to implement
breakpoints. Illegal opcode instructions are used in preference to trap instructions be-
cause execution is stopped with the PC–buffer recording execution a cycle earlier.
That is, the breakpoint address is in PC1 rather than PC2, as would happen with a trap
instruction.
One further useful feature of the PC2 register occurs when breakpoints are set to
the first instruction of a new instruction sequence — typically the first instruction of a
procedure. When the breakpoint is
taken
and program execution is stopped, the PC2
register contains the address of the delay slot instruction executed before the new
instruction sequence started. This is very useful in determining where a program was
previously executing.
7.2.5 Monitor Mode
Monitor Mode currently only applies to a limited numbr of 29K processors, see
Table 7-1. If a trap occurs when the DA bit in the CPS register is a 1, the processor
starts executing at address 16 in instruction ROM space. Monitor Mode is not entered
as a result of asynchronous events such as timer interrupts or activation of the
TRAP(1–0) or INTR(3–0) lines.
On taking a Monitor Mode trap the Reason Vector register (RSN) is set by the
processor to indicate the cause of the trap. Additionally, the MM bit in the CPS regis-
ter is set to 1. When the MM bit is set, the shadow program counters (SPC0, SPC1,
and SPC2) are frozen, in a similar way to the FZ bit freezing the PC0–PC2 buffer
registers. Because the shadow program counters continue to record PC-BUS activity
when the FZ bit is set, they can be used to restart Freeze Mode execution. This is
achieved by an IRET or IRETINV instruction being executed while in Monitor
Mode.
Monitor mode traps are used by monitors in the debugging of trap and interrupt
handlers and are not intended for operating system use.
7.2.6 Instruction Breakpoints
Some members of the 29K processor family support Instruction Breakpoint reg-
isters, see Table 7-1. These registers can be used to stop a program’s execution when