
190
Evaluating and Programming the 29K RISC Family
dure execution. The
return registers
bit–field indicates the number of registers used.
Additionally, temporary registers can be obtained from register range
gr116–gr120
.
In fact, the GNU compiler prefers allocate temporary registers in this range before
allocation from the return registers range (see section 2.5.2). The
temps.
bit–field in-
dices the number of registers modified in the range
gr116–gr124
. When interrupt
processing is accomplished with a leaf routine, these bit–fields enable only the mini-
mum number of global registers to be saved before the interrupt handler procedure is
entered.
3.7
TRANSPARENT ROUTINES
Transparent routines are used to support small highly efficient procedure calls.
They are like small leaf procedures in that they do not lower the register stack and
allocate a new activation record. They are unlike leaf procedures in that the only
global registers which the caller does not expect to survive the call are
tav
(
gr121
) and
tpc
(
gr122
). They are normally used to support compiler specific support routines
such as integer multiply (where the 29K hardware does not directly support this op-
eration).
Parameters are passed to transparent routines using
tav
and the indirect pointer
registers. Return values are via
tpc
and possibly the modified register identified by
indirect pointer
ipc
. Leaf procedures can call transparent routines without changing
their status as leaf routines.
Newer versions of the High C 29K compiler enable the user to select procedures
for implementation as transparent routines. For example, a procedure which would
normally be of return type “
int
” would be defined (and declared) as type “
_Transpar-
ent
int
”. The
_Transparent
key word extends the C language. Of course there are a
number of restrictions which apply to transparent routine construction: They can
only receive two in–coming parameters (passed via IPA and IPB); They must be of
type
void
or return an object of word–size or less (return values are passed via IPC);
They must not perform any floating point (and some integer) operations which re-
quire trapware support; And of course, they must not call any other procedures (even
if they are transparent).
3.8
INITIALIZING THE PROCESSOR
Reset mode is entered when the processor’s *RESET pin is activated. This
causes the Current Processor Status (CPS) register to be set to the Reset mode values;
the processor operates in Supervisor mode with all data and instruction addresses be-
ing physical (no address translation); all traps and interrupts are disabled and the pro-
cessor Freeze mode bit is set. (See the Initialization section of the processor User’s
Manual for the exact CPS register setting.) Individual 29K family members have