| Index: > A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
|
|||||
Before the first RISC processors were designed, many computer architects tried to bridge the "semantic gap" - to design instruction sets to support high-level languages by providing "high-level" instructions such as procedure call and return, loop instructions such as "decrement and branch if non-zero" and complex addressing modes to allow data structure and array accesses to be combined into single instructions. Additionally, the compact nature of a CISC ISA results in smaller program sizes and fewer calls to main memory, which at the time (the 1960s) resulted in a tremendous savings on the cost of a computer.
While these architectures achieved their aim of allowing high-level language constructs to be expressed in fewer instructions, it was observed that they did not always result in improved performance. For example, on one processor it was discovered that it was possible to improve performance by not using the procedure call instruction but using a sequence of simpler instructions instead. Furthermore, the more complex the instruction set, the greater the overhead of decoding any given instruction, both in execution time and silicon area. This is particularly true for processors which used microcode to decode the (macro)instructions. In other words, adding a large and complex instruction set to the processor even slowed down the execution of simple instructions. Implementing all these complex instructions also required a lot of work on the part of the chip designer, and a lot of transistors; this left less room on the processor to optimize performance in other ways.
Examples of CISC processors are the VAX, PDP-11, Motorola 68000 family and the Intel x86/Pentium CPUs.
The term, like its antonym RISC, has become less meaningful with the continued evolution of both CISC and RISC designs and implementations. Modern "CISC" CPUs, such as recent x86 designs like the Pentium 4, whilst they usually support every instruction that their predecessors did, are designed to work most efficiently with a subset of instructions more resembling a typical " RISC" instruction set. Indeed, many CISC CPUs (such as modern x86 processors from both Intel and AMD) "crack" many x86 instructions into a series of smaller internal "micro-operations" that are then executed internally by the processor.
See also CPU, RISC, microprocessorIntel 80486DX2 and an Intel 80386 A microprocessor (abbreviated as P or uP is an electronic computer central processing unit (CPU) made from miniaturized transistors and other circuit elements on a single semiconductor integrated circuit (IC) (aka microch, computertower of a personal computer. A computer is a device for making calculations or controlling operations that are expressible in numerical or logical terms. While factually accurate, this definition and those found in other dictionaries are so broad that th, CPU designTo a large extent, the design of a CPU or central processing unit, is the design of its control unit. The modern (ie, 1965 to 1985) way to design control logic is to write a microprogram. CPU design was originally an ad-hoc process. Just getting a CPU to, and computer architectureComputer architecture is the theory behind the design of a computer. In the same way as a building architect sets the principles and goals of a building project as the basis for the draftsman's plans, so too, a computer architect sets out the computer arc.
This article was originally based on material from the Free On-line Dictionary of Computing, which is used under the GFDL.