
October 13 1995, Draft 1
360
Addendum to –– Evaluating and Programming the 29K RISC Family
7.5.1 Debug Tool Developers
A debug tool developer typically arranges for their product to be available for a
range of popular processors. This normally means rebuilding the tool with the knowl-
edge required to understand the peculiarities of each processor. If an enhancement is
made to the debugger user–interface, then normally the debugger source and the pro-
cessor specific information must be recompiled and tested before customers are up-
dated.
When developing code to run on an engineering workstation, the processor sup-
porting the debugger execution is the same processor running the program being de-
veloped. This means the debugger can make use of operating system services such as
ptrace() (see section 7.5.3), to examine and control the program being debugged.
When developing code for an embedded application, the program being developed is
known as the
Target Program
and executes on the
Target Processor
which is usually a
different processor than the one supporting the debugger, known as the
Host Proces-
sor
. The host processor and target processor do not communicate via the ptrace() sys-
tem call, but via whatever hardware communication path links the two processors.
The portion of the debugger which controls communication with the target processor
is known as the target interface module, and whenever a change or addition is re-
quired in the communications mechanism, the debugger must be once again recom-
piled to produce a binary executable which is specific to the target–processor and tar-
get–communications requirements.
When the chipmakers turn out their latest whiz–bang RISC processor, the tool
developer companies are faced with considerable development costs in ensuring
their tools function with the new architecture. It is not uncommon for the availability
of debug tools to lag behind RISC chip introduction. Often tools are introduced with
limited configuration options. For example, target processor communication may be
according to a low level debug monitor protocol, or an in–circuit emulator (ICE) pro-
tocol. Each debugger product has its own target interface module; this module must
be developed for each debugger in order to communicate with the new target RISC
processor.
An embedded application developer may have prior experience or a preference
for a particular debug tool, but the only available communications path to the target
may not be currently supported. This incompatibility may discourage the developer
from choosing to use a new processor. It is desirable that debuggers share commu-
nication modules and be more adaptable to available target processor interfaces.
Ideally a debugger from one company should be able to operate with, say, an
emulator from another company. This would make it possible for a customer to select
a little used debugger with a popular target monitor or vice versa.
The goal of the Universal Debug Interface (UDI) is to provide a standard inter-
face between the debugger developer and the target communications module, so the
two can be developed and supplied separately. In fact, an applications developer