SlideShare a Scribd company logo
RISC Vs CISC
Classification of
Microprocessors:
• The classification based on
– the word length,
– the architecture i.e. Instruction Set of the
microprocessor.
• These are categorized into RISC and CISC.
Before start !
RISC is the way to make hardware simpler
whereas CISC is the single instruction that
handles multiple work.
RISC
• Definition
– stands for Reduced Instruction Set Computers.
– is a type of microprocessor architecture that utilizes a
small, highly-optimized set of instructions,
– The main idea behind this, is
• to simplify hardware by using an instruction set composed
of a few basic steps for loading, evaluating, and storing
operations just like
– a load command will load data,
– a store command will store the data.
• Examples: SPARC, POWER PC, etc.
Characteristics of RISC
• Simpler instruction, hence simple instruction
decoding.
• Instruction comes undersize of one word.
• Instruction takes a single clock cycle to get
executed.
• More general-purpose registers.
• Simple Addressing Modes.
• Fewer Data types.
• A pipeline can be achieved.
Advantages of RISC
• Simpler instructions:
• RISC processors use a smaller set of simple
instructions,
• which makes them easier to decode and execute quickly.
• This results in faster processing times.
• Faster execution:
• Because RISC processors have a simpler instruction
set,
• they can execute instructions faster than CISC processors.
• Lower power consumption:
• RISC processors consume less power than CISC
processors,
• making them ideal for portable devices.
Disadvantages of RISC
• More instructions required:
• RISC processors require more instructions to
perform complex tasks than CISC processors.
• Increased memory usage:
• RISC processors require more memory to store
the additional instructions needed to perform
complex tasks.
• Higher cost:
• Developing and manufacturing RISC processors
can be more expensive than CISC processors.
Complex Instruction Set
Architecture (CISC)
• The main idea is that a single instruction
will do all loading, evaluating, and storing
operations just like
– a multiplication command will do stuff like
• loading data,
• evaluating,
• storing it,
– hence it’s complex.
• Examples: Intel architecture, AMD
Characteristics of CISC
• Complex instruction, hence complex
instruction decoding.
• Instructions are larger than one-word size.
• Instruction may take more than a single clock
cycle to get executed.
• Less number of general-purpose registers as
operations get performed in memory itself.
• Complex Addressing Modes.
• More Data types.
Advantages of CISC
• Reduced code size:
• CISC processors use complex instructions that can perform
multiple operations,
• reducing the amount of code needed to perform a task.
• More efficient memory:
• Because CISC instructions are more complex,
• they require fewer instructions to perform complex tasks,
• This can result in more memory-efficient code.
• Widely used:
• CISC processors have been in use for a longer time than
RISC processors,
• so they have a larger user base and more available
software.
Disadvantages of CISC
• Slower execution:
• CISC processors take longer to execute instructions
because
• they have more complex instructions and
• need more time to decode them.
• More complex design:
• CISC processors have more complex instruction sets,
• which makes them more difficult to design and
manufacture.
• Higher power consumption:
• CISC processors consume more power than RISC
processors
• because of their more complex instruction sets.
Example:
Multiplying Two Numbers in Memory
• The figure in the next slide is a diagram representing the
storage scheme for a generic computer.
• The main memory is divided into locations numbered from
(row) 1: (column) 1 to (row) 6: (column) 4.
• The execution unit is responsible for carrying out all
computations.
• However, the execution unit can only operate on data that
has been loaded into one of the six registers (A, B, C, D, E,
or F).
RISC Vs CISC Computer architecture and design
Example:
Multiplying Two Numbers in Memory
• Let's say we want to find the product of two
numbers
– one stored in location 2:3 and another stored in location 5:2
– then store the product back in the location 2:3.
Cont. example:
The CISC Approach
• The primary goal of CISC architecture is to complete
a task in as few lines of assembly as possible.
• This is achieved by building processor hardware
– that is capable of understanding and executing a series of
operations.
• For this particular task,
– a CISC processor would come prepared with a specific instruction
(we'll call it "MULT").
• When executed, this instruction
– loads the two values into separate registers,
– multiplies the operands in the execution unit,
– stores the product in the appropriate register.
• Thus, the entire task of multiplying two numbers
can be completed with one instruction:
– MULT 2:3, 5:2
• For instance,
– if we let "a" represent the value of 2:3 and "b" represent
the value of 5:2, then this command is identical to the C
statement "a = a * b."
• One of the primary advantages of this system is
– that the compiler has to do very little work to translate a
high-level language statement into assembly.
• Because the length of the code is relatively short,
– very little RAM is required to store instructions.
• The emphasis is put on building complex instructions
directly into the hardware.
Cont. example:
The CISC Approach
• RISC processors only use simple instructions that
can be executed within one clock cycle.
• Thus, the "MULT" command described above could
be divided into three separate commands
– "LOAD," which moves data from the memory bank to a
register,
– "PROD," which finds the product of two operands located
within the registers, and
– "STORE,“ which moves data from a register to the memory
banks.
Cont. example:
The RISC Approach
• In order to perform the exact series of
steps described in the CISC approach,
a programmer would need to code four
lines of assembly:
– LOAD A, 2:3
– LOAD B, 5:2
– PROD A, B
– STORE 2:3, A
Cont. example:
The RISC Approach
• At first, this may seem like a much less
efficient way of completing the
operation.
– Because there are more lines of code,
• more RAM is needed to store the assembly level
instructions.
– The compiler must also perform more
work to convert a high-level language
statement into code of this form.
Cont. example:
The RISC Approach
• However, the RISC strategy also brings some very
important advantages.
– 1 Because each instruction requires only one clock
cycle to execute,
• the entire program will execute in approximately the same
amount of time as the multi-cycle "MULT" command.
• These RISC "reduced instructions" require less transistors of
hardware space than the complex instructions, leaving
more room for general purpose registers.
• Because all of the instructions execute in a uniform amount
of time (i.e. one clock), pipelining is possible.
Cont. example:
The RISC Approach
• 2- Separating the "LOAD" and "STORE"
instructions actually reduces the amount of
work that the computer must perform.
Cont. example:
The RISC Approach
• 3- After a CISC-style "MULT" command is
executed,
– the processor automatically erases the registers.
– If one of the operands needs to be used for
another computation,
• the processor must re-load the data from the memory
bank into a register.
– In RISC, the operand will remain in the register
until another value is loaded in its place.
Cont. example:
The RISC Approach
Difference between CISC and RISC
• Here, are important differences between CISC
vs. RISC
Difference between CISC and RISC
• RISC • CISC
Focus on software Focus on hardware
Uses only Hardwired control unit
Uses hardwired
& microprogrammed control
unit
Fixed sized instructions Variable sized instructions
An instruction fit in one word.
(mostly 32-bits)
Instructions are larger than the
size of one word
Requires more number of
registers
Requires less number of registers
Difference between CISC and RISC
RISC CISC
Simple addressing formats are
supported.
Only base and displacement
addressing is allowed.
Multiple formats are supported for
specifying operands.
A memory operand specifier can
have many different combinations
of displacement, base, and index
register.
Simple and limited addressing
modes.
Complex and more addressing
modes.
Difference between CISC and RISC
RISC CISC
It consumes low power. It consumes more/high power.
RISC is highly pipelined. CISC is less pipelined.
RISC required more RAM for
storing codes for storing codes.
CISC required less RAM for storing
codes.
Code size is large Code size is small
An instruction executed in a single
clock cycle
Instruction takes more than one
clock cycle
CISC and RISC Convergence
• Because a number of advancements are used by
both RISC and CISC processors,
– the lines between the two architectures have begun
to blur.
• In fact, the two architectures almost seem to
have adopted the strategies of the other.
• Because processor speeds have increased,
– CISC chips are now able to execute more than one
instruction within a single clock.
– This also allows CISC chips to make use of pipelining.
CISC and RISC Convergence
• With other technological improvements,
– it is now possible to fit many more transistors on a single chip.
– This gives RISC processors enough space to incorporate more
complicated, CISC-like commands.
• RISC chips also make use of more complicated hardware,
– making use of extra functional units for superscalar execution.
• All of these factors have led some groups to argue that we
are now in a "post-RISC" era,
– in which the two styles have become so similar that
distinguishing between them is no longer relevant.
CISC and RISC Convergence
• However, it should be noted that RISC chips still
retain some important behaviors.
• RISC chips
– strictly utilize uniform, single-cycle instructions.
– They also retain the register-to-register, load/store
architecture.
– despite their extended instruction sets,
• RISC chips still have a large number of general purpose
registers.
RISC Roadblocks
• Despite the advantages of RISC based
processing,
– RISC chips took over a decade to gain a foothold in the
commercial world.
– This was largely due to a lack of software support.
• although Apple's Power Macintosh line
featured RISC-based chips and Windows NT
was RISC compatible,
– Windows 3.1 and Windows 95, and later versions were
designed with CISC processors in mind.
– Many companies were unwilling to take a chance with the
emerging RISC technology.
RISC Roadblocks
• Without commercial interest,
– processor developers were unable to manufacture RISC
chips in large enough volumes to make their price
competitive.
• Another major setback was the presence of
Intel.
– Although their CISC chips were becoming increasingly
awkward and difficult to develop,
• Intel had the resources to plow through development and
produce powerful processors.
– Although RISC chips might surpass Intel's efforts in
specific areas,
• the differences were not great enough to persuade buyers to
change technologies.
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.

More Related Content

What's hot (20)

PPT
8086
Ravi Anand
 
PPTX
Computer organization
ishapadhy
 
PPTX
Subroutine
PoojaChoudhary313113
 
PPTX
Harvard architecture
Gichelle Amon
 
PPT
Instruction Set Architecture (ISA)
Gaditek
 
PPTX
Instruction Set Architecture
Dilum Bandara
 
PPTX
Instruction Formats
RaaviKapoor
 
PPTX
Unit 4-booth algorithm
vishal choudhary
 
PPT
Memory Addressing
chauhankapil
 
PPTX
ADDRESSING MODES
Sadaf Rasheed
 
PPT
Microprocessor 80386
yash sawarkar
 
PDF
Memory mapping
SnehalataAgasti
 
PPTX
Risc cisc Difference
Sehrish Asif
 
PPTX
Computer registers
Jatin Grover
 
PPTX
Chapter 1 microprocessor introduction
Shubham Singh
 
PPTX
80486 and pentium
Vikshit Ganjoo
 
PDF
Assembler directives and basic steps ALP of 8086
Urvashi Singh
 
PPT
Computer architecture pipelining
Mazin Alwaaly
 
PDF
Introduction to 80386
Shehrevar Davierwala
 
PPTX
8051 MICROCONTROLLER ARCHITECTURE.pptx
MemonaMemon1
 
Computer organization
ishapadhy
 
Harvard architecture
Gichelle Amon
 
Instruction Set Architecture (ISA)
Gaditek
 
Instruction Set Architecture
Dilum Bandara
 
Instruction Formats
RaaviKapoor
 
Unit 4-booth algorithm
vishal choudhary
 
Memory Addressing
chauhankapil
 
ADDRESSING MODES
Sadaf Rasheed
 
Microprocessor 80386
yash sawarkar
 
Memory mapping
SnehalataAgasti
 
Risc cisc Difference
Sehrish Asif
 
Computer registers
Jatin Grover
 
Chapter 1 microprocessor introduction
Shubham Singh
 
80486 and pentium
Vikshit Ganjoo
 
Assembler directives and basic steps ALP of 8086
Urvashi Singh
 
Computer architecture pipelining
Mazin Alwaaly
 
Introduction to 80386
Shehrevar Davierwala
 
8051 MICROCONTROLLER ARCHITECTURE.pptx
MemonaMemon1
 

Similar to RISC Vs CISC Computer architecture and design (20)

PPSX
CISC & RISC ARCHITECTURES
Dr.YNM
 
PDF
CS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdf
Guru Nanak Technical Institutions
 
PDF
M&m comparison for elcetrical engineering
chauhangopal7354
 
PPT
ARMicrocontroller Memory and Exceptions,Traps.ppt
ECEHITS
 
PPTX
Dsdco IE: RISC and CISC architectures and design issues
Home
 
PPTX
Risc and cisc computers
ankita mundhra
 
PPTX
Risc
Piyush Rochwani
 
PDF
Unit I_MT2301.pdf
Kannan Kanagaraj
 
PPTX
RISC computer science presentation for a level
charveepm2008
 
PPTX
2024_lecture13_come321.pptx.........................
ghada507476
 
PPTX
Processors selection
Pradeep Shankhwar
 
PPTX
Data transfer andn & floating point.pptx
Shwetamaurya36
 
PPT
Risc and cisc eugene clewlow
karan saini
 
PPT
Risc and cisc eugene clewlow
Chaudhary Manzoor
 
PPSX
Processors used in System on chip
Dr. A. B. Shinde
 
PPT
Risc and cisc eugene clewlow
Manish Prajapati
 
PPTX
Data transfer and data manipulation & floating point.pptx
Shwetamaurya36
 
PPTX
Advanced Processor Power Point Presentation
PrashantYadav931011
 
CISC & RISC ARCHITECTURES
Dr.YNM
 
CS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdf
Guru Nanak Technical Institutions
 
M&m comparison for elcetrical engineering
chauhangopal7354
 
ARMicrocontroller Memory and Exceptions,Traps.ppt
ECEHITS
 
Dsdco IE: RISC and CISC architectures and design issues
Home
 
Risc and cisc computers
ankita mundhra
 
Unit I_MT2301.pdf
Kannan Kanagaraj
 
RISC computer science presentation for a level
charveepm2008
 
2024_lecture13_come321.pptx.........................
ghada507476
 
Processors selection
Pradeep Shankhwar
 
Data transfer andn & floating point.pptx
Shwetamaurya36
 
Risc and cisc eugene clewlow
karan saini
 
Risc and cisc eugene clewlow
Chaudhary Manzoor
 
Processors used in System on chip
Dr. A. B. Shinde
 
Risc and cisc eugene clewlow
Manish Prajapati
 
Data transfer and data manipulation & floating point.pptx
Shwetamaurya36
 
Advanced Processor Power Point Presentation
PrashantYadav931011
 
Ad

Recently uploaded (20)

PPTX
Solar Thermal Energy System Seminar.pptx
Gpc Purapuza
 
PDF
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
PPTX
Green Building & Energy Conservation ppt
Sagar Sarangi
 
PDF
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
PPTX
Heart Bleed Bug - A case study (Course: Cryptography and Network Security)
Adri Jovin
 
PPTX
Arduino Based Gas Leakage Detector Project
CircuitDigest
 
PDF
Biomechanics of Gait: Engineering Solutions for Rehabilitation (www.kiu.ac.ug)
publication11
 
PDF
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
PDF
Zilliz Cloud Demo for performance and scale
Zilliz
 
PDF
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
PDF
AI TECHNIQUES FOR IDENTIFYING ALTERATIONS IN THE HUMAN GUT MICROBIOME IN MULT...
vidyalalltv1
 
PPTX
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
PDF
GTU Civil Engineering All Semester Syllabus.pdf
Vimal Bhojani
 
PPTX
Element 7. CHEMICAL AND BIOLOGICAL AGENT.pptx
merrandomohandas
 
PDF
Water Industry Process Automation & Control Monthly July 2025
Water Industry Process Automation & Control
 
PPTX
artificial intelligence applications in Geomatics
NawrasShatnawi1
 
PPTX
Shinkawa Proposal to meet Vibration API670.pptx
AchmadBashori2
 
PDF
AI TECHNIQUES FOR IDENTIFYING ALTERATIONS IN THE HUMAN GUT MICROBIOME IN MULT...
vidyalalltv1
 
PPTX
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
PPTX
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
Solar Thermal Energy System Seminar.pptx
Gpc Purapuza
 
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
Green Building & Energy Conservation ppt
Sagar Sarangi
 
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
Heart Bleed Bug - A case study (Course: Cryptography and Network Security)
Adri Jovin
 
Arduino Based Gas Leakage Detector Project
CircuitDigest
 
Biomechanics of Gait: Engineering Solutions for Rehabilitation (www.kiu.ac.ug)
publication11
 
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
Zilliz Cloud Demo for performance and scale
Zilliz
 
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
AI TECHNIQUES FOR IDENTIFYING ALTERATIONS IN THE HUMAN GUT MICROBIOME IN MULT...
vidyalalltv1
 
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
GTU Civil Engineering All Semester Syllabus.pdf
Vimal Bhojani
 
Element 7. CHEMICAL AND BIOLOGICAL AGENT.pptx
merrandomohandas
 
Water Industry Process Automation & Control Monthly July 2025
Water Industry Process Automation & Control
 
artificial intelligence applications in Geomatics
NawrasShatnawi1
 
Shinkawa Proposal to meet Vibration API670.pptx
AchmadBashori2
 
AI TECHNIQUES FOR IDENTIFYING ALTERATIONS IN THE HUMAN GUT MICROBIOME IN MULT...
vidyalalltv1
 
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
Ad

RISC Vs CISC Computer architecture and design

  • 2. Classification of Microprocessors: • The classification based on – the word length, – the architecture i.e. Instruction Set of the microprocessor. • These are categorized into RISC and CISC.
  • 3. Before start ! RISC is the way to make hardware simpler whereas CISC is the single instruction that handles multiple work.
  • 4. RISC • Definition – stands for Reduced Instruction Set Computers. – is a type of microprocessor architecture that utilizes a small, highly-optimized set of instructions, – The main idea behind this, is • to simplify hardware by using an instruction set composed of a few basic steps for loading, evaluating, and storing operations just like – a load command will load data, – a store command will store the data. • Examples: SPARC, POWER PC, etc.
  • 5. Characteristics of RISC • Simpler instruction, hence simple instruction decoding. • Instruction comes undersize of one word. • Instruction takes a single clock cycle to get executed. • More general-purpose registers. • Simple Addressing Modes. • Fewer Data types. • A pipeline can be achieved.
  • 6. Advantages of RISC • Simpler instructions: • RISC processors use a smaller set of simple instructions, • which makes them easier to decode and execute quickly. • This results in faster processing times. • Faster execution: • Because RISC processors have a simpler instruction set, • they can execute instructions faster than CISC processors. • Lower power consumption: • RISC processors consume less power than CISC processors, • making them ideal for portable devices.
  • 7. Disadvantages of RISC • More instructions required: • RISC processors require more instructions to perform complex tasks than CISC processors. • Increased memory usage: • RISC processors require more memory to store the additional instructions needed to perform complex tasks. • Higher cost: • Developing and manufacturing RISC processors can be more expensive than CISC processors.
  • 8. Complex Instruction Set Architecture (CISC) • The main idea is that a single instruction will do all loading, evaluating, and storing operations just like – a multiplication command will do stuff like • loading data, • evaluating, • storing it, – hence it’s complex. • Examples: Intel architecture, AMD
  • 9. Characteristics of CISC • Complex instruction, hence complex instruction decoding. • Instructions are larger than one-word size. • Instruction may take more than a single clock cycle to get executed. • Less number of general-purpose registers as operations get performed in memory itself. • Complex Addressing Modes. • More Data types.
  • 10. Advantages of CISC • Reduced code size: • CISC processors use complex instructions that can perform multiple operations, • reducing the amount of code needed to perform a task. • More efficient memory: • Because CISC instructions are more complex, • they require fewer instructions to perform complex tasks, • This can result in more memory-efficient code. • Widely used: • CISC processors have been in use for a longer time than RISC processors, • so they have a larger user base and more available software.
  • 11. Disadvantages of CISC • Slower execution: • CISC processors take longer to execute instructions because • they have more complex instructions and • need more time to decode them. • More complex design: • CISC processors have more complex instruction sets, • which makes them more difficult to design and manufacture. • Higher power consumption: • CISC processors consume more power than RISC processors • because of their more complex instruction sets.
  • 12. Example: Multiplying Two Numbers in Memory • The figure in the next slide is a diagram representing the storage scheme for a generic computer. • The main memory is divided into locations numbered from (row) 1: (column) 1 to (row) 6: (column) 4. • The execution unit is responsible for carrying out all computations. • However, the execution unit can only operate on data that has been loaded into one of the six registers (A, B, C, D, E, or F).
  • 14. Example: Multiplying Two Numbers in Memory • Let's say we want to find the product of two numbers – one stored in location 2:3 and another stored in location 5:2 – then store the product back in the location 2:3.
  • 15. Cont. example: The CISC Approach • The primary goal of CISC architecture is to complete a task in as few lines of assembly as possible. • This is achieved by building processor hardware – that is capable of understanding and executing a series of operations. • For this particular task, – a CISC processor would come prepared with a specific instruction (we'll call it "MULT"). • When executed, this instruction – loads the two values into separate registers, – multiplies the operands in the execution unit, – stores the product in the appropriate register. • Thus, the entire task of multiplying two numbers can be completed with one instruction: – MULT 2:3, 5:2
  • 16. • For instance, – if we let "a" represent the value of 2:3 and "b" represent the value of 5:2, then this command is identical to the C statement "a = a * b." • One of the primary advantages of this system is – that the compiler has to do very little work to translate a high-level language statement into assembly. • Because the length of the code is relatively short, – very little RAM is required to store instructions. • The emphasis is put on building complex instructions directly into the hardware. Cont. example: The CISC Approach
  • 17. • RISC processors only use simple instructions that can be executed within one clock cycle. • Thus, the "MULT" command described above could be divided into three separate commands – "LOAD," which moves data from the memory bank to a register, – "PROD," which finds the product of two operands located within the registers, and – "STORE,“ which moves data from a register to the memory banks. Cont. example: The RISC Approach
  • 18. • In order to perform the exact series of steps described in the CISC approach, a programmer would need to code four lines of assembly: – LOAD A, 2:3 – LOAD B, 5:2 – PROD A, B – STORE 2:3, A Cont. example: The RISC Approach
  • 19. • At first, this may seem like a much less efficient way of completing the operation. – Because there are more lines of code, • more RAM is needed to store the assembly level instructions. – The compiler must also perform more work to convert a high-level language statement into code of this form. Cont. example: The RISC Approach
  • 20. • However, the RISC strategy also brings some very important advantages. – 1 Because each instruction requires only one clock cycle to execute, • the entire program will execute in approximately the same amount of time as the multi-cycle "MULT" command. • These RISC "reduced instructions" require less transistors of hardware space than the complex instructions, leaving more room for general purpose registers. • Because all of the instructions execute in a uniform amount of time (i.e. one clock), pipelining is possible. Cont. example: The RISC Approach
  • 21. • 2- Separating the "LOAD" and "STORE" instructions actually reduces the amount of work that the computer must perform. Cont. example: The RISC Approach
  • 22. • 3- After a CISC-style "MULT" command is executed, – the processor automatically erases the registers. – If one of the operands needs to be used for another computation, • the processor must re-load the data from the memory bank into a register. – In RISC, the operand will remain in the register until another value is loaded in its place. Cont. example: The RISC Approach
  • 23. Difference between CISC and RISC • Here, are important differences between CISC vs. RISC
  • 24. Difference between CISC and RISC • RISC • CISC Focus on software Focus on hardware Uses only Hardwired control unit Uses hardwired & microprogrammed control unit Fixed sized instructions Variable sized instructions An instruction fit in one word. (mostly 32-bits) Instructions are larger than the size of one word Requires more number of registers Requires less number of registers
  • 25. Difference between CISC and RISC RISC CISC Simple addressing formats are supported. Only base and displacement addressing is allowed. Multiple formats are supported for specifying operands. A memory operand specifier can have many different combinations of displacement, base, and index register. Simple and limited addressing modes. Complex and more addressing modes.
  • 26. Difference between CISC and RISC RISC CISC It consumes low power. It consumes more/high power. RISC is highly pipelined. CISC is less pipelined. RISC required more RAM for storing codes for storing codes. CISC required less RAM for storing codes. Code size is large Code size is small An instruction executed in a single clock cycle Instruction takes more than one clock cycle
  • 27. CISC and RISC Convergence • Because a number of advancements are used by both RISC and CISC processors, – the lines between the two architectures have begun to blur. • In fact, the two architectures almost seem to have adopted the strategies of the other. • Because processor speeds have increased, – CISC chips are now able to execute more than one instruction within a single clock. – This also allows CISC chips to make use of pipelining.
  • 28. CISC and RISC Convergence • With other technological improvements, – it is now possible to fit many more transistors on a single chip. – This gives RISC processors enough space to incorporate more complicated, CISC-like commands. • RISC chips also make use of more complicated hardware, – making use of extra functional units for superscalar execution. • All of these factors have led some groups to argue that we are now in a "post-RISC" era, – in which the two styles have become so similar that distinguishing between them is no longer relevant.
  • 29. CISC and RISC Convergence • However, it should be noted that RISC chips still retain some important behaviors. • RISC chips – strictly utilize uniform, single-cycle instructions. – They also retain the register-to-register, load/store architecture. – despite their extended instruction sets, • RISC chips still have a large number of general purpose registers.
  • 30. RISC Roadblocks • Despite the advantages of RISC based processing, – RISC chips took over a decade to gain a foothold in the commercial world. – This was largely due to a lack of software support. • although Apple's Power Macintosh line featured RISC-based chips and Windows NT was RISC compatible, – Windows 3.1 and Windows 95, and later versions were designed with CISC processors in mind. – Many companies were unwilling to take a chance with the emerging RISC technology.
  • 31. RISC Roadblocks • Without commercial interest, – processor developers were unable to manufacture RISC chips in large enough volumes to make their price competitive. • Another major setback was the presence of Intel. – Although their CISC chips were becoming increasingly awkward and difficult to develop, • Intel had the resources to plow through development and produce powerful processors. – Although RISC chips might surpass Intel's efforts in specific areas, • the differences were not great enough to persuade buyers to change technologies.
  • 32. 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.