
127
Chapter 2 Applications Programming
2.5.1 An Interrupt Context Cache with High C 29K
The
interrupt_handler
macro code, described in the previous section, pre-
pares the processor to handle a C language interrupt handler which can operate within
the processor Freeze mode restrictions. The code saves the interrupted processor
context onto the current memory stack position before calling the C handler.
The
interrupt_cache
macro shown below can be used in place of the previously
described macro. Its use is also restricted to preparing the processor to handle a C
level handler which meets the Freeze mode execution criteria. However, its operation
is considerably faster due to the use of an Interrupt Context Cache. Section 4.3.9 de-
scribes context caching in more detail. A cache is used here only to save sufficient
context to enable a non–interruptable C level handler to execute.
The cache is implemented using operating system registers
gr64–gr80
. These
global registers are considered operating system temporaries, at least
gr64–gr79
are
(also known as
it0–it3
and
kt0–kt11
). Register
gr80
(known as
ks0
) is generally used
to hold operating system static data (see section 3.3). Processors which do not direct-
ly support floating–point operations contain instruction emulation software (trap-
ware) which normally uses registers in the
gr64–gr79
range to support instruction
emulation. Given application code can perform a floating–point operation at any
time, an operating system can not consider these registers contents remain static after
application code has run. For this reason and others, floating–point trapware normal-
ly runs with interrupts turned off, it is convenient to use these registers for interrupted
context caching.
The
interrupt_handler
macro uses a loop to preserve the global registers used
by the Freeze mode interrupt handler. The
interrupt_cache
macro
unrolls
the loop
and uses register–to–register operations rather than register–to–memory. In place of
traversing the loop
nregs
times, the
nregs
value is used to determine the required
entry point to the unrolled code. These techniques reduce interrupt preparation times
and interrupt latency.
.macro interrupt_cache, trap_number, C_handler, nregs
sub
asgeu
add
add
const
const
const
consth
asneq
add
add
add
jmp
asleu
gr1,gr1,4*4
V_SPILL,gr1,rab ;check for stack spill
lr1,gr121,0
;save gr121
lr0,gr96,0
;save gr96
gr121,290
;HIF 2.0 SETTRAP service
lr2,trap_number ;trap number, macro parameter
lr3,$1–(nregs*4) ;trap handler address
lr3,$1–(nregs*4)
69,gr1,gr1
;HIF service request
gr121,lr1,0
;restore gr121
gr96,lr0,0
;restore gr96
gr1,gr1,4*4
;restore stack
$2
;macro code finished
V_FILL,lr1,rfb
;check for stack fill
;get lr0–lr3 space