
October 13 1995, Draft 1
383
Chapter 7 Software Debugging
be enabled by first clicking the right mouse button while in the Console window. The
left button can then be used to select “echo on” from the provided menu. Program
execution will continue when the
Go
button (top middle) is pressed.
The method used to pop–up a Console window can also be used to pop–up a
range of other debug support windows. The
Asm
button produces a window display-
ing assembly level code. The assembly code window shown in Figure 7-12 was pro-
duced by clicking the
Asm
button. The high–lighted code line (with arrow) corre-
sponds to the current Program Counter (PC) position. The corresponding source line
was high–lighted in the source code window (Figure 7-11). All windows which have
a mode setting (Source or Code mode) such as to display the current code position,
are updated automatically when the PC changes. A new PC value is reported when-
ever program execution stops due to, say, single–stepping a source or assembly code
line, or hitting a breakpoint. The example windows have a breakpoint set at the first
line of the fib() function. The right mouse button can be used to select the current dis-
play mode for a window.
This section is too brief to fully describe the capabilities of UDB. Developers
typically pop–up a number of windows displaying code, memory and register con-
tents. Windows can be selected and arranged in a way suited to an individual develop-
er or project’s requirements. As a further example, Figure 7-13 shows a window dis-
playing global register contents. The window is updated whenever a register value
changes. A new value can be entered into a register by placing the cursor over the
selected register data value and typing in the new value. The right mouse button can
be used to select other types of registers for displaying. For more information about
UDB commands, consult the
UDB User’s Guide
.
7.8
TRACING PROGRAM EXECUTION
Tracing program execution refers to recording the instruction execution and
data accesses performed by a processor. Programs are normally traced up to a break-
point or other event causing normal instruction execution to halt. A software engi-
neer can examine the trace information and determine the program’s operation prior
to the event. The technique provides the software developer with a powerful tool for
eliminating software bugs.
A tracing capability is normally provided by an In–Circuit Emulator (ICE) or
logic analyzer. The task of tracing is complicated by on–chip instruction and data
caches. Without caches, processor activity is fully visible from the memory interface.
When an access is performed to on–chip cache, it is not normally possible to deter-
mine the address or the data accessed. ICE developers can overcome this problem,
but often at increased tool cost. Those using a logic analyzer to perform tracing are
traditionally limited to debugging with caches turned off; or if caches are enabled, not
being able to observe all of a program’s execution. Embedded systems typically have
to meet stringent timing requirements and consequently it is not usually possible to