|
|||||
Summary
IntroductionThis course is about Computer Architecture. We start by explaining a few key terms. The General Purpose Digital ComputerHow can we define a 'computer'? There are several kinds of devices that can be termed "computers": from desktop machines tthe microcontrollers used in appliances such as a microwave oven, from the Abacus tthe cluster of tiny chips used in parallel processors, etc. For the purpose of this course, we will use the following definition of a computer: "an electronic device, operating under the control of instructions stored in its own memory unit, that can accept data (input), process data arithmetically and logically, produce output from the processing, and store the results for future use." [1] Thus, when we use the term computer, we actually mean a digital computer. There are many digital computers, which have dedicated purposes, for example, a computer used in an automobile that controls the spark timing for the engine. This means that when we use the term computer, we actually mean a general-purpose digital computer that can perform a variety of arithmetic and logic tasks. The Computer as a SystemNow we examine the notion of a system, and the place of digital computers in the general universal set of systems. A "system" is a collection of elements, or components, working together on one or more inputs tproduce one or more desired outputs. There are many types of systems in the world. Examples include:
These are all subsets of the general universal set of "systems". One particular subset of interest is an "electrical system". In case of electrical systems, the inputs as well as the outputs are electrical quantities, namely voltage and current. "Digital systems" are a subset of electrical systems. The inputs and outputs are digital quantities in this case. General-purpose digital computers are a subset of digital systems. We will focus on general-purpose digital computers in this course. Essential Elements of a General Purpose Digital ComputerThe figure shows the block diagram of a modern general-purpose digital computer. We observe from the diagram that a general-purpose computer has three main components: a memory subsystem, an input/ output subsystem, and a central processing unit. Programs are stored in the memory, the execution of the program instructions takes place in the CPU, and the communication with the external world is achieved through the I/subsystem (including the peripherals). ArchitectureNow that we understand the term "computer" in our context, let us focus on the term architecture. The word architecture, as defined in standard dictionaries, is "the art or science of building", or "a method or style of building". [2] Computer ArchitectureThis term was first used in 1964 by Amdahl, Blaauw, and Brooks at IBM [3]. They defined it as "the structure of a computer that a machine language programmer must understand to write a correct (time independent) program for that machine." By architecture, they meant the programmer visible portion of the instruction set. Thus, afamily of machines of the same architecture should be able trun the same software (instructions). This concept is now scommon that it is taken for granted. The x86 architecture is a well-known example. The study of computer architecture includes
Computer Organization versus Computer ArchitectureIt is difficult tmake a sharp distinction between these two. However, architecture refers tthe attributes of a computer that are visible ta programmer, including
On the other hand, organization refers tthe operational units of a computer and their interconnections that realize the architectural specifications. These include
It is an architectural issue whether a computer will have a specific instruction or not, while it is an organizational issue how that instruction will be implemented. Computer ArchitectWe can conclude from the discussion above that a computer architect is a person who designs computers. DesignDesign is defined as "the process of devising a system, component, or process tmeet desired needs." Most people think of design as a "sketch". This is the usage of the term as a noun. However, the standard engineering usage of the term, as is quite evident from the above definition, is as a verb, i.e., "design is a process". A designer works with a set of stated requirements under a number of constraints tproduce the best solution for a given problem. Best may mean a "cost-effective" solution, but not always. Additional or alternate requirements, like efficiency, the client or the designer may impose robustness, etc.. Therefore, design is a decision-making process (often iterative in nature), in which the basic sciences, mathematical concepts and engineering sciences are applied tconvert a given set of resources optimally tmeet a stated objective. Knowledge base of a computer architectThere are many people in the world whknow how tdrive a car; these are the "users" of cars whare familiar with the behavior of a car and how toperate it. In the same way, there are people whcan use computers. There are alsa number of people in the world whknow how trepair a car; these are "automobile technicians". In the same way, we have computer technicians. However, there are a very few people whknow how to design a car; these are "automobile designers". In the same way, there are only very few experts in the world whcan design computers. In this course, you will learn how to design computers! These computer design experts are familiar with
as well as few other related things. At this point, we need trealize that it is not the job of a single person tdesign a computer from scratch. There are a number of levels of computer design. Domain experts of that particular level carry out the design activity for each level. These levels of abstraction of a digital computer's design are explained below. Digital Design: Levels of AbstractionProcessor-Memory-Switch level (PMS level)The highest is the processor-memory-switch level. This is the level at which an architect views the system. It is simply a description of the system components and their interconnections. The components are specified in the form of a block diagram. Instruction Set LevelThe next level is instruction set level. It defines the function of each instruction. The emphasis is on the behavior of the system rather than the hardware structure of the system. Register Transfer LevelNext tthe ISA (instruction set architecture) level is the register transfer level. Hardware structure is visible at this level. In addition tregisters, the basic elements at this level are multiplexers, decoders, buses, buffers etc. The above three levels relate t"system design". Logic Design LevelThe logic design level is alscalled the gate level. The basic elements at this level are gates and flip-flops. The behavior is less visible, while the hardware structure predominates. The above level relates t"logic design". Circuit LevelThe key elements at this level are resistors, transistors, capacitors, diodes etc. Mask LevelThe lowest level is mask level dealing with the silicon structures and their layout that implement the system as an integrated circuit. The above twlevels relate t"circuit design". The focus of this course will be the register transfer level and the instruction set level, although we will alsdeal with the PMS level and the Logic Design Level. Objectives of the courseThis course will provide the students with an understanding of the various levels of studying computer architecture, with emphasis on instruction set level and register transfer level. They will be able tuse basic combinational and sequential building blocks tdesign larger structures like ALUs (Arithmetic Logic Units), memory subsystems, I/subsystems etc. It will help them understand the various approaches used tdesign computer CPUs (Central Processing Units) of the RISC (Reduced Instruction Set Computers) and the CISC (Complex Instruction Set Computers) type, as well as the principles of cache memories. Important topics tbe covered
Course OutlineIntroduction:
Brief review of computer organization:
Foundations of Computer Architecture:
An example processor: The SRC:
ISA: Design and Development
Other example processors:
CPU Design:
Term Exam – IAdvanced topics in processor design:
Input-output (I/O):
Term Exam – IIArithmetic Logic Shift Unit (ALSU) implementation:
Memory subsystems:
References[1] Shelly G.B., Cashman T.J., Waggoner G.A., Waggoner W.C., Complete Computer Concepts: Microcomputer and Applications. Ferncroft Village Danvers, Massachusetts: Boyd & Fraser, 1992. [2] Merriam-Webster Online; The Language Centre, May 12, 2003 ( http://www.mw. com/home.htm). [3] Patterson, D.A. and Hennessy, J.L., Computer Architecture- A Quantitative Approach, 2nd ed., San Francisco, CA: Morgan Kauffman Publishers Inc., 1996. [4] Heuring V.P. and Jordan H.F., Computer Systems Design and Architecture. Melano Park, CA: Addison Wesley, 1997. A brief review of Computer Organization Perceptions of Different People about Computers There are various perspectives that a computer can take depending on the person viewing it. For example, the way a child perceives a computer is quite different from how a computer programmer or a designer views it. There are a number of perceptions of the computer, however, for the purpose of understanding the machine, generally the following four views are considered. The User's ViewA user is the person for whom the machine is designed, and whemploys it tperform some useful work through application software. This useful work may be composing some reports in word processing software, maintaining credit history in a spreadsheet, or even developing some application software using high-level languages such as C or Java. The list of "useful work" is not all-inclusive. Children playing games on a computer may argue that playing games is als"useful work", maybe more sthan preparing an internal office memo. At the user's level, one is only concerned with things like speed of the computer, the storage capacity available, and the behavior of the peripheral devices. Besides performance, the user is not involved in the implementation details of the computer, as the internal structure of the machine is made obscure by the operating system interface. The Programmer's View By "programmer" we imply machine or assembly language programmer. The machine or the assembly language programmer is responsible for the implementation of software required texecute various commands or sequences of commands (programs) on the computer. Understanding some key terms first will help us better understand this view, the associated tasks, responsibilities and tools of the trade. Machine LanguageMachine language consists of all the primitive instructions that a computer understands and is able texecute. These are strings of 1s and 0s.Machine language is the computer's native language. Commands in the machine language are expressed as strings of 1s and 0s. It is the lowest level language of a computer, and requires nfurther interpretation. Instruction SetA collection of all possible machine language commands that a computer can understand and execute is called its instruction set. Every processor has its own unique instruction set. Therefore, programs written for one processor will generally not run on another processor. This is quite unlike programs written in higher-level languages, which may be portable. Assembly/machine languages are generally unique tthe processors on which they are run, because of the differences in computer architecture. Three ways tlist instructions in an instruction set of a computer:
Assembly LanguageSince it is extremely tiring as well as error-prone twork with strings of 1s and 0s for writing entire programs, assembly language is used as a substitute symbolic representation using "English like" key words called mnemonics. A pure assembly language is a language in which each statement produces exactly one machine instruction, i.e. there is a one-to-one correspondence between machine instructions and statements in the assembly language. However, there are a few exceptions tthis rule, the Pentium jump instruction shown in the table below serves as an example. ExampleThe table provides us with some assembly statement and the machine language equivalents of the Intel x 86 processor families. Alpha is a label, and its value will be determined by the position of the jmp instruction in the program and the position of the instruction whose address is alpha. Sthe second byte in the last instruction can be different for different programs. Hence there is a one-to-many correspondence of the assembly tmachine language in this instruction. Users of Assembly LanguageThe machine designerThe designer of a new machine needs tbe familiar with the instruction sets of other machines in order tbe able tunderstand the trade-offs implicit in the design of those instruction sets. The compiler writerA compiler is a program that converts programs written in high-level languages to machine language. It is quite evident that a compiler writer must be familiar with the machine language of the processor for which the compiler is being designed. This understanding is crucial for the design of a compiler that produces correct and optimized code. The writer of time or space critical codeA complier may not always produce optimal code. Performance goals may force program-specific optimizations in the assembly language. Special purpose or embedded processor programmer Higher-level languages may not be appropriate for programming special purpose or embedded processors that are now in common use in various appliances. This is because the functionality required in such applications is highly specialized. In such a case, assembly language programming is required timplement the required functionality. Useful tools for assembly language programmersThe assembler:Programs written in assembly language require translation tthe machine language, and an assembler performs this translation. This conversion process is termed as the assembly process. The assembly process can be done manually as well, but it is very tedious and error-prone. An "assembler" that runs on one processor and translates an assembly language program written for another processor intthe machine language of the other processor is called a "cross assembler". The linker:When developing large programs, different people working at the same time can develop separate modules of functionality. These modules can then be 'linked' to form a single module that can be loaded and executed. The modularity of programs, that the linking step in assembly language makes possible, provides the same convenience as it does in higher-level languages; namely abstraction and separation of concerns. Once the functionality of a module has been verified for correctness, it can be re-used in any number of other modules. The programmer can focus on other parts of the program. This is the so-called "modular" approach, or the "top-down" approach. The debugger or monitor:Assembly language programs are very lengthy and non-intuitive, hence quite tedious and error-prone. There is alsthe disadvantage of the absence of an operating system thandle run-time errors that can often crash a system, as opposed tthe higher-level language programming, where control is smoothly returned tthe operating system. In addition trun-time errors (such as a divideby- zererror), there are syntax or logical errors. A "debugger", alscalled a "monitor", is a computer program used taid in detecting these errors in a program. Commonly, debuggers provide functionality such as
program and registers at desired points during execution. While syntax errors and many logical errors can be detected by using debuggers, the best debugger in the world can catch not every logical error. The development systemThe development system is a complete set of (hardware and software) tools available tthe system developer. It includes
Difference between Higher-Level Languages and Assembly LanguageHigher-level languages are generally used tdevelop application software. These highlevel programs are then converted tassembly language programs using compilers. Sit is the task of a compiler writer tdetermine the mapping between the high-levellanguage constructs and assembly language constructs. Generally, there is a "many-tomany" mapping between high-level languages and assembly language constructs. This means that a given HLL construct can generally be represented by many different equivalent assembly language constructs. Alternately, a given assembly language construct can be represented by many different equivalent HLL constructs. High-level languages provide various primitive data types, such as integer, Boolean and a string, that a programmer can use. Type checking provides for the verification of proper usage of these data types. It allows the compiler tdetermine memory requirements for variables and helping in the detection of bad programming practices. On the other hand, there is generally nprovision for type checking at the machine level, and hence, nprovision for type checking in assembly language. The machine only sees strings of bits. Instructions interpret the strings as a type, and it is usually limited to signed or unsigned integers and floating point numbers. A given 32-bit word might be an instruction, an integer, a floating-point number, or 4 ASCII characters. It is the task of the compiler writer tdetermine how high-level language data types will be implemented using the data types available at the machine level, and how type checking will be implemented. The Stored Program ConceptThis concept is fundamental tall the general-purpose computers today. It states that the program is stored with data in computer's memory, and the computer is able to manipulate it as data. For example, the computer can load the program from disk, move it around in memory, and store it back tthe disk. Even though all computers have unique machine language instruction sets, the 'stored program' concept and the existence of a 'program counter' is common tall machines. The sequence of instructions tperform some useful task is called a program. All of the digital computers (the general purpose machine defined above) are able tstore these sequences of instructions as stored programs. Relevant data is alsstored on the computer's secondary memory. These stored programs are treated as data and the computer is able tmanipulate them, for example, these can be loaded intthe memory for execution and then saved back ontthe storage. General Operation of a Stored Program ComputerThe machine language programs are brought intthe memory and then executed instruction by instruction. Unless a branch instruction is encountered, the program is executed in sequence. The instruction that is tbe executed is fetched from the memory and temporarily stored in a CPU register, called the instruction register (IR). The instruction register holds the instruction while it is decoded and executed by the central processing unit (CPU) of the computer. However, before loading an instruction intthe instruction register for execution, the computer needs tknow which instruction tload. The program counter (PC), alscalled the instruction pointer in some texts, is the register that holds the address of the next instruction in memory that is tbe executed.
When the execution of an instruction is completed, the contents of the program counter (which is the address of the next instruction) are placed on the address bus. The memory places the instruction on the corresponding address on the data bus. The CPU puts this instruction ontthe IR (instruction register) tdecode and execute. While this instruction is decoded, its length in bytes is determined, and the PC (program counter) is incremented by the length, sthat the PC will point tthe next instruction in the memory. Note that the length of the instruction is not determined in the case of RISC machines, as the instruction length is fixed in these architectures, and sthe program counter is always incremented by a fixed number. In case of branch instructions, the contents of the PC are replaced by the address of the next instruction contained in the present branch instruction, and the current status of the processor is stored in a register called the Processor Status Word (PSW). Another name for the PSW is the flag register. It contains the status bits, and control bits corresponding tthe state of the processor. Examples of status bits include the sign bit, overflow bit, etc. Examples of control bits include interrupt enable flag, etc. When the execution of this instruction is completed, the contents of the program counter are placed on the address bus, and the entire cycle is repeated. This entire process of reading memory, incrementing the PC, and decoding the instruction is known as the Fetch and Execute principle of the stored program computer. This is actually an oversimplified situation. In case of the advanced processors of this age, a lot more is going on than just the simple "fetch and execute" operation, such as pipelining etc. The details of some of these more involved techniques will be studied later on during the course. The Concept of Instruction Set Architecture (ISA)Now that we have an understanding of some of the relevant key terms, we revert tthe assembly language programmer's perception of the computer. The programmer's view is limited tthe set of all the assembly instructions or commands that can the particular computer at hand execute understood/, in addition tthe resources that these instructions may help manage. These resources include the memory space and the entire programmer accessible registers. Note that we use the term 'memory space' instead of memory, because not all the memory space has tbe filled with memory chips for a particular implementation, but it is still a resource available tthe programmer. This set of instructions or operations and the resources together form the instruction set architecture (ISA). It is the ISA, which serves as an interface between the program and the functional units of a computer, i.e., through which, the computer's resources, are accessed and controlled. The Computer Architect's ViewThe computer architect's view is concerned with the design of the entire system as well as ensuring its optimum performance. The optimality is measured against some quantifiable objectives that are set out before the design process begins. These objectives are set on the basis of the functionality required from the machine tbe designed. The computer architect
Useful tools for the computer architectSome of the tools available that facilitate the design process are
The Logic Designer's ViewThe logic designer is responsible for the design of the machine at the logic gate level. It is the design process at this level that determines whether the computer architect meets cost and performance goals. The computer architect and the logic designer have twork in collaboration tmeet the cost and performance objectives of a machine. This is the reason why a single person or a single team may be performing the tasks of system's architectural design as well as the logic design. Useful Tools for the Logic DesignerSome of the tools available that aid the logic designer in the logic design process are
The Concept of the Implementation DomainThe collection of hardware devices, with which the logic designer works for the digital logic gate implementation and interconnection of the machine, is termed as the implementation domain. The logic gate implementation domain may be
Similarly, the implementation domains used for gate, board and module interconnections are
At the lower levels of logic design, the designer is concerned mainly with the functional details represented in a symbolic form. The implementation details are not considered at these lower levels. They only become an issue at higher levels of logic design. An example of a two-to-one multiplexer in various implementation domains will illustrate this point. Figure (a) is the generic logic gate (abstract domain) representation of a 2-to-1 multiplexer. Figure (b) shows the 2-to-1 multiplexer logic gate implementation in the domain of TTL (VLSI on Silicon) logic using part number '257, with interconnections in the domain of printed circuit board traces. Figure (c) is the implementation of the 2-to-1 multiplexer with a fiber optic directional coupler switch, which has an interconnection domain of optical fiber. Classical logic design versus computer logicdesignWe have already studied the sequential circuit design concepts in the course on Digital Logic Design, and thus are familiar with the techniques used. However, these traditional techniques for a finite state machine are not very practical when it comes tthe design of a computer, in spite of the fact that a computer is a finite state machine. The reason is that employing these techniques is much tocomplex as the computer can assume hundreds of states. Sequential Logic Circuit DesignWhen designing a sequential logic circuit, the problem is first coded in the form of a state diagram. The redundant states may be eliminated, and then the state diagram is translated intthe next state table. The minimum number of flip-flops needed timplement the design is calculated by making "state assignments" in terms of the flip-flop "states". A "transition table" is made using the state assignments and the next state table. The flipflop control characteristics are used tcomplete a set of "excitation tables". The excitation equations are determined through minimization. The logic circuit can then be drawn timplement the design. A detailed discussion of these steps can be found in most books on Logic Design. Computer Logic DesignTraditional Finite State Machine (FSM) design techniques are not suitable for the design of computer logic. Since there is a natural separation between the data path and the control path in case of a digital computer, a modular approach can be used in this case. The data path consists of the storage cells, the arithmetic and logic components and their interconnections. Control path is the circuitry that manages the data path information flow. Sconsidering the behavior first can carry out the design. Then the structure can be considered and dealt with. For this purpose, well-defined logic blocks such as multiplexers, decoders, adders etc. can be used repeatedly. TwViews of the CPU Program Counter RegisterThe view of a logic designer is more detailed than that of a programmer. Details of the mechanism used tcontrol the machine are unimportant tthe programmer, but of vital importance tthe logic designer. This can be illustrated through the following twviews of the program counter of a machine. As shown in figure (a), ta programmer the program counter is just a register, and in this case, of length 32 bits or 4 bytes. Figure (b) illustrates the logic designer's view of a 32-bit program counter, implemented as an array of 32 D flip-flops. It shows the contents of the program counter being gated out on 'A bus' (the address bus) by applying a control signal PCout. The contents of the 'B bus' (alsthe address bus), can be stored in the program counter by asserting the signal PCin on the leading edge of the clock signal CK, thus storing the address of the next instruction in the program counter. Table of Contents:
|
|||||