Difference between RISC and CISC Processor | Set 2 (original) (raw)

Last Updated : 11 Jul, 2025

The **microprocessor is a processing unit on the single chip. It is the integrated circuit that performs the core functions of the computer CPU. It is the multipurpose programmable silicon chip constructed using a Metal Oxide Semiconductor (MOS) technology which is clock driven and register based. It accepts a binary data as a input and provides output after processing it as per a specification of instructions stored in a memory. These microprocessors are capable of the processing the 128 bits at the time at the speed of a one billion instructions per second.

Characteristics of a Microprocessor

  1. Instruction Set : The set of complete instructions that the microprocessor executes is termed the instruction set.

  2. Word Length : The number of bits processed in a single instruction is called word length or word size. The Greater the word size is the larger the processing power of the CPU.

3. **System Clock Speed : A Clock speed determines how fast the single instruction can be executed in the processor. The microprocessor is controlled by the System Clock. A Clock speeds are generally measured in the millions of a cycles per second (MHz) and thousand million cycles per second GHz. A Clock speed is considered to be the very important aspect of predicting a performance of the processor.

What is Reduced Instruction Set Computer(RISC)?

It stands for Reduced Instruction Set Computer. It is a type of microprocessor architecture that uses a small set of instructions of uniform length. These are simple instructions that are generally executed in one clock cycle. RISC chips are relatively simple to design and inexpensive. The setback of this design is that the computer has to repeatedly perform simple operations to execute a larger program having a large number of processing operations.
**Examples: SPARC, POWER PC, etc.

Advantages of Reduced Instruction Set Computer (RISC)

Disadvantages of Reduced Instruction Set Computer (RISC)

**What is Complex Instruction Set Computer ****(CISC)?**

It stands for Complex Instruction Set Computer. These processors offer the users, hundreds of instructions of variable sizes. CISC architecture includes a complete set of special-purpose circuits that carry out these instructions at a very high speed. These instructions interact with memory by using complex addressing modes. CISC processors reduce the program size and hence lesser number of memory cycles are required to execute the programs. This increases the overall speed of execution.
**Examples: Intel architecture, AMD

Advantages of Complex Instruction Set Computer (CISC)

Disadvantages of Complex Instruction Set Computer (CISC)

**What is EPIC?

It stands for Explicitly Parallel Instruction Computing. The best features of RISC and CISC processors are combined in the architecture. It implements parallel processing of instructions rather than using fixed-length instructions. The working of EPIC processors is supported by using a set of complex instructions that contain both basic instructions as well as the information of execution of parallel instructions. It substantially increases the efficiency of these processors.

Difference between RISC and CISC processor

CISC RISC
A large number of a instructions are present in the architecture. Very few instructions are present. The number of instructions is generally less than 100.
Some instructions with long execution times. These include instructions that copy an entire block from one part of memory to another and others that copy multiple registers to and from memory. No instruction with a long execution time due to a very simple instruction set. Some early RISC machines did not even have an integer multiply instruction, requiring compilers to implement multiplication as a sequence of additions.
Variable-length encodings of the instructions. **Example: IA32 instruction size can range from 1 to 15 bytes. Fixed-length encodings of the instructions are used. **Example: In IA32, generally all instructions are encoded as 4 bytes.
Multiple formats are supported for specifying operands. A memory operand specifier can have many different combinations of displacement, base, and index register. Simple addressing formats are supported. Only base and displacement addressing is allowed.
CISC supports array. RISC does not support an array.
Arithmetic and logical operations can be applied to both memory and register operands. Arithmetic and logical operations only use register operands. Memory referencing is only allowed by loading and storing instructions, i.e. reading from memory into a register and writing from a register to memory respectively.
Implementation programs are hidden from machine-level programs. The ISA provides a clean abstraction between programs and how they get executed. Implementation programs exposed to machine-level programs. Few RISC machines do not allow specific instruction sequences.
Condition codes are used. No condition codes are used.
The stack is being used for procedure arguments and returns addresses. Registers are being used for procedure arguments and return addresses. Memory references can be avoided by some procedures.
Successful pipeline with one instruction per cycle Unsuccessful pipeline
Heavy use of RAM More efficient use of RAM

Refer for Set-1: RISC and CISC

Conclusion

The Reduced Instruction Set Computing and a Complex Instruction Set Computing are the method of a processor design. The RISC processors use the fewer and simpler instructions that execute quickly while the CISC processors have the complex instructions that can perform the multiple operations. The RISC focuses on a efficiency and speed using a simpler hardware and relying on the software. CISC aims for a versatility with more built in functionality in the hardware. RISC is a generally faster and more energy efficient while a CISC can be more compact in a terms of code size.