
5
Chapter 1 Architectural Overview
sion drawn was that microcode rarely provides the exact sequence of operations re-
quired to support a high level language instruction.
The variable instruction execution times of CISC instructions results in com-
plex pipeline management. It is also more difficult for a compiler to work out the
execution times for different combinations of CISC instructions. For that matter it is
harder for the assembly level programmer to estimate the execution times of, say, an
interrupt handler code sequence compared to the equivalent RISC code sequence.
More importantly, streamlining pipeline operations enables reduced processor cycle
times and greater control by a compiler of the processor’s operation. Given that the
execute–stage dominates performance, the RISC
approach
is to fetch more instruc-
tions which can be simply executed. Although a RISC program may contain 20%
more instructions than a program for a CISC, the total number of cycles required to
perform a task is reduced.
A number of processor characteristics have been proposed in the press as indica-
tive of RISC or CISC. Many of these proposals are made by marketing departments
which wish to control markets by using RISC and CISC labels as marketing rather
than engineering expressions. I consider a processor to be RISC if it is microcode free
and has a simple instruction execute–stage which can complete in a single cycle.
1.2
FAMILY MEMBER FEATURES
Although this book is about Programming the 29K RISC Family, the following
sections are not restricted to only describing features which can be utilized by soft-
ware. They also briefly describe key hardware features which affect a processor’s
performance and hence its selection.
All members of the family have User mode binary code compatibility. This
greatly simplifies the task of porting application code from one processor to another.
Some system–mode code may need to be changed due to differences in such things as
field assignments of registers in special register space.
Given the variation between family members such as the 3–bus Am29050 float-
ing–point processor and the Am29205 microcontroller, it is remarkable that there is
so much software compatibility. The number of family members is expected to con-
tinue to grow; but already there is a wide selection enabling systems of ranging per-
formance and cost to be constructed (see Figure 1-3). If AMD continues to grow the
family at “both ends of the performance spectrum”, we might expect to see new mi-
crocontroller family members as well as superscalar microprocessors [Johnson
1991]. AMD has stated that future microprocessors will be pin compatible with the
current 2–bus family members.
I think one of the key features of 29K family members is their ability to operate
with varying memory system configurations. It is possible to build very high perfor-
mance Harvard type architectures, or low cost –– high access latency –– DRAM
based systems. Two types of instruction memory caching are supported. Branch Tar-