Difference Between RISC And CISC Machine in Tabular Form

A processor, or say more precisely CPU (Central Processing Unit ) can be defined as an integrated circuit that is responsible for processing stored instructions. The primary operations of a CPU are:
– Fetch : Receiving instructions from memory
– Decode – Convert it into binary instructions
– Execute – Operation is performed
– Store – Saving output to memory

CISC Vs RISC

It can have two types of CPU architecture, CISC and RISC. Both provides communication between hardware and software.

These CPU architectures are capable of carrying out primary CPU tasks, though, they follow different approaches. The main difference between them is, CISC supports more instruction sets than RISC.

Difference between RISC AND CISC in Tabular Form

BasisRISCCISC
Stands forReduced Instruction Set ComputerComplex Instruction Set Computer
Size of instructionsSmaller and simpler instructionsLarger and Complex instructions
Execution Time1 cycle per instructionMultiple number of cycles per instruction
EmphasisOn SoftwareOn hardware
Instruction FormatsFixed (4 bytes)Variable Length (2-6 bytes)
Control UnitHardwired Control UnitMicroprogrammed Control Unit
Data and Instruction CacheSeparateCombined
Example of processorsARM processor and Qualcomm processor are some examplesAMD, VAX and Intel x86 CPUs are some examples
CPU sizeSmallerLarger as they have larger instruction libraries
Addressing ModesFewerMany
ArrayNot SupportedSupported
PipelineEasyHard
Power consumptionLessMore
Referred asMachine OrientedProgrammer Oriented
Register setsHas multiple register setsHas Single register set
Memory unitDoesn't have memory unitHave memory unit

RISC (Reduced Instruction Set Computer)

It stands for Reduced Instruction Set Computer.

It is basically conceptualized on the fact of making hardware simpler and less complex. And this is done by implementation of the Instruction set which reduces the load on processes like loading, storing and evaluating data.

risc

In other words, it has an assembly language that enables each and every task to be split into simpler instructions which are then executed for each clock cycle. Its instructions are efficient but due to simplicity it processes more lines of code.

It focuses on reducing execution time by optimising and simplifying instruction set. It requires only single clock cycle to process results in uniform execution time. However, it reduces efficiency in case of large program size which leads to need of more RAM for storing instruction.

RISC architecture is often used in portable devices such as mobile phones.

CISC (Complex Instruction Set Computer)

It stands for Complex Instruction Set Computer.

It is basically based on complex hardware and all the importance is given to that always. This is done by implementing complex hardware which serves as a single instruction for all the processes like loading, storing and evaluating data.

In other words, It processes larger and more complex assembly instructions each time. One CISC instruction can do the task of multiple RISC instructions.

CISC

It focuses on reducing the number of instructions per program without considering the number of cycles per instruction. It relatively requires less RAM to store instructions. It is mainly used in desktops or laptops computer.

RISC and CISC example :

Multiplying two variables X*Y:

  • CISC approach can be viewed as
    MULT X, Y
  • RISC approach can be viewed as
    LOAD R1, X
    LOAD R2, Y
    PROD X, Y
    STORE R3, X

Key Differences:

  1. RISC machine focuses more on software and less on hardware, whereas; CISC machine focuses more on hardware and less on software.
  2. RISC machine has greater use of registers so, they use transistors for more registers, whereas; CISC machine uses a greater number of complex instructions, so they use transistors to store all their complex instructions.
  3. In RISC machine, as it follows a software-based approach that is why, the code part is large, whereas; in CISC machine, as it is complex hardware driven, this makes the code part much smaller.
  4. In RISC machine, due to its great and reliable software approach, an instruction can execute in a single clock cycle, whereas; in CISC machine, due to its more hardware driven approach, an instruction lags a little bit and takes more than one clock cycle.
  5. The RISC instructions are quite handy and easy as they can fit in a single word, whereas; the CISC instructions are quite larger than a typical word.

Leave a Reply