SlideShare ist ein Scribd-Unternehmen logo
1 von 28
MEMBERS
 Tushar Swami
 Vikas Prasad
 Tanish Garg
 Anurag Aggarwal
OUTLINE
 What is RISC?
 CISC
 Background and History
 Characteristics
Pipelining
Hardware
 RISC v/s CISC
 Performance Equation
 Applications of RISC
 RISC & CISC Convergence
ACKNOWLEDGEMENT
We would like to express our special thanks of gratitude to our teacher
Dr. Praveen Kant Pandey who gave us the golden opportunity to present this
wonderful presentation on the topic RISC, which also helped us in doing a lot of
Research and we came to know about new things. We are really thankful to her.
WHAT
IS
RISC???
INTRODUCTION
 RISC – Reduced Instruction Set Computer
 RISC is a type of microprocessor architecture that utilizes
 a small, highly-optimized set of instructions
 rather than a more specialized set of instructions.
 The main alternative for RISC is CISC ,which stands for complex instruction set
computer.
 CISC is the older approach, that came about to maximize performance of earlier
computer’s. Where instructions were executed sequentially.
The instruction set is the
hardware language that tells the
processor what to do.
Sources : http://search400.techtarget.com/definition/RISC
BACKGROUND AND HISTORY
 RISC approach developed as a result of development in 1970’s
- increase in memory size
- decrease in cost
- advanced compilers
 In late 1970’s IBM was the first to start.
 In 1980 , David Patterson ,began the project that gives this approach RISC.
 After some years ,Stanford MIPS was developed.
Sources : http://search400.techtarget.com/definition/RISC
CHARACTERSTICS OF RISC
 Simplified instructions , taking 1 clock cycle.
 Large no. of general purpose registers.
 Circuit is much simpler.
 Fast to decode.
 Fast to execute.
 Pipelining- fetching of next instruction while
previous instruction executes.
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/whatis/index.html
PIPELINING
Pipelining, a standard feature in RISC processors, is much like an assembly line.
A useful method of demonstrating this is the laundry analogy.
Let's say that there are four loads of dirty laundry that need
to be washed, dried, and folded.
Washer - 30 minutes
Dry - 40 minutes
Folding - 20 minutes
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
RISC PIPELINES
A RISC processor pipeline operates in much the same way, although the stages in the
pipeline are different
1. fetch instructions from memory
2. read registers and decode the instruction
3. execute the instruction or calculate an address
4. access an operand in data memory
5. write the result into a register
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
The length of the pipeline is
dependent on the length of
the longest step.
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
HARDARE UTILIZATION
 For any given level of general performance, a RISC chip will typically have far fewer
transistors dedicated to the core logic which originally allowed designers to increase
the size of the register set.
 RISC designs are also more likely planning to feature a
Harvard memory model, where the instruction stream
and the data stream are conceptually separated.
Sources : https://www.youtube.com/watch?v=mDrUkjOVtAU
CISC vs. RISC
CISC
 Complex Instructions.
 ADD AX,[BX + SI + 600H]
 Many operations in single
instruction.
RISC
 Simpler or reduced instructions.
 LOAD R1, addresss1
LOAD R2, address2
ADD R1, R2
STORE address1, R1
One instruction one operation.
INSTRUCTION
Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
CISC RISC
CODE SIZE
Code size is larger but simpler.
Code size is smaller but complicated.
Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
CISC
 Fewer register.
 These registers are designed
for special purposes.
 CISC designs provide a large
number of addressing modes.
RISC
 Large number of registers.
 Here registers are identical so
any register can be used for
any purpose.
 RISC designs have single
addressing modes.
REGISTERS AND ADDRESSING MODE
Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
CISC
 Slower to execute.
 Difficult to decode.
 Instruction size varies in
different instructions.
 Complex circuit design.
RISC
 Faster execution.
 Easy to decode.
 Same instruction size in every
instructions.
 Circuit design is simpler.
Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
RISC
APPLICATIONS
LOW END &
MOBILE SYSTEM
•ARM ARCHITECTURE
o Android based systems/ Apple iPhone/
Nintendo GBA etc.
•MIPS line
o in PlayStations, Nintendo 64 etc.
•Atmel AVR
o Xbox handheld controllers to BMW cars
HIGH END RISC &
SUPERCOMPUTING
•MIPS
o used in embedded system in routers, used
by Digital Equipment Corporation etc.
•IBM’S Power Architecture
o In many IBM’s supercomputers, workstations
etc.
•Alpha
o In Single-board computers, Servers &
Supercomputers from Digital Equivalent
Cooperation etc.
RISC APPLICATIONS
Sources : http://embeddedcraft.org/
ARM Architecture
• Developed by Advanced RISC
Machines (ARM).
• ARM makes 32-bit & 64-bit RISC
multi-core processors.
• Features of ARM architecture:
 A load/store architecture
 An orthogonal instruction set.
 Fixed instruction width
 Mostly single clock-cycle
execution.
 Enhanced power-saving design.
 Hardware virtualization supports.
ARM BASED PRODUCTS.
Sources : http://embeddedcraft.org/
http://whatis.techtarget.com/definition/ARM-processor
MIPS
• It includes MIPS I, MIPS II, MIPS III,
MIPS IV, MIPS V, MIPS32, and
MIPS64.
• Key concepts:
• five-stage execution pipeline
• regular instruction set, all
instructions are 32-bit
• no status register or instruction side-
effects
• no complex instructions.
• only the load and store instruction
access memory.
• optional coprocessors for system
management and floating-point
• flat address space of 2^32 bytes of
main memory
MIPS- Microprocessor without
Interlocked Pipeline Stages
Sources : http://embeddedcraft.org/
https://tams.informatik.unihamburg.de/applets/webdemos/mips.html
DISCUSSION
PERFORMANCE EQUATION
The CISC approach attempts
to minimize the number of
instructions per program,
sacrificing the number of
cycles per instruction.
RISC does the opposite,
reducing the cycles per
instruction at the cost of the
number of instructions per
program.
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/risccisc/index.html
RISC & CISC CONVERGENCE
With time and developments, it was observed that the line of distinction between two
hardware began to blur.
In fact two hardware seem to have adopted the strategies of the other.
 CISC - now executes more than one instruction within a single clock.
 This also allows CISC chips to make use of pipelining.
 With other technological improvements, it is now possible to fit
many more transistors on a single chip.
 RISC - incorporate more complicated, CISC-like commands.
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/developments/index.html
CONCLUSION
 Experts’ talk - we are in a "post-RISC" era, in which the two styles have become so
similar that distinguishing between them is no longer relevant.
 RISC chips still retain some important traits.
- utilize uniform, single-cycle instructions.
- register-to-register, load/store architecture.
- still have a large number of general purpose registers.
Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/developments/index.html
RISC - Reduced Instruction Set Computing

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Unit II Arm7 Thumb Instruction
Unit II Arm7 Thumb InstructionUnit II Arm7 Thumb Instruction
Unit II Arm7 Thumb Instruction
 
Risc & cisk
Risc & ciskRisc & cisk
Risc & cisk
 
SRAM DRAM
SRAM DRAMSRAM DRAM
SRAM DRAM
 
ARM Architecture
ARM ArchitectureARM Architecture
ARM Architecture
 
Arm architecture chapter2_steve_furber
Arm architecture chapter2_steve_furberArm architecture chapter2_steve_furber
Arm architecture chapter2_steve_furber
 
Introduction to arm processor
Introduction to arm processorIntroduction to arm processor
Introduction to arm processor
 
ARM architcture
ARM architcture ARM architcture
ARM architcture
 
Risc and cisc
Risc and ciscRisc and cisc
Risc and cisc
 
ARM CORTEX M3 PPT
ARM CORTEX M3 PPTARM CORTEX M3 PPT
ARM CORTEX M3 PPT
 
LECT 1: ARM PROCESSORS
LECT 1: ARM PROCESSORSLECT 1: ARM PROCESSORS
LECT 1: ARM PROCESSORS
 
Unit II arm 7 Instruction Set
Unit II arm 7 Instruction SetUnit II arm 7 Instruction Set
Unit II arm 7 Instruction Set
 
System on chip architectures
System on chip architecturesSystem on chip architectures
System on chip architectures
 
ARM Exception and interrupts
ARM Exception and interrupts ARM Exception and interrupts
ARM Exception and interrupts
 
Pipeline hazards in computer Architecture ppt
Pipeline hazards in computer Architecture pptPipeline hazards in computer Architecture ppt
Pipeline hazards in computer Architecture ppt
 
Arm processor
Arm processorArm processor
Arm processor
 
Arm processor
Arm processorArm processor
Arm processor
 
Pipelining & All Hazards Solution
Pipelining  & All Hazards SolutionPipelining  & All Hazards Solution
Pipelining & All Hazards Solution
 
Embedded C - Optimization techniques
Embedded C - Optimization techniquesEmbedded C - Optimization techniques
Embedded C - Optimization techniques
 
Arm instruction set
Arm instruction setArm instruction set
Arm instruction set
 
06. thumb instructions
06. thumb instructions06. thumb instructions
06. thumb instructions
 

Andere mochten auch

Reduced instruction set computers
Reduced instruction set computersReduced instruction set computers
Reduced instruction set computers
Sanjivani Sontakke
 
An intel architecture, which is a cisc 2
An intel architecture, which is a cisc 2An intel architecture, which is a cisc 2
An intel architecture, which is a cisc 2
Azhar Abbas
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
GIKI
 
Arm système embarqué
Arm système embarquéArm système embarqué
Arm système embarqué
Houssem Rouini
 

Andere mochten auch (20)

Reduced instruction set computers
Reduced instruction set computersReduced instruction set computers
Reduced instruction set computers
 
Risc
RiscRisc
Risc
 
RISC AND CISC PROCESSOR
RISC AND CISC PROCESSORRISC AND CISC PROCESSOR
RISC AND CISC PROCESSOR
 
13 risc
13 risc13 risc
13 risc
 
Lec18 pipeline
Lec18 pipelineLec18 pipeline
Lec18 pipeline
 
Risc and cisc
Risc and ciscRisc and cisc
Risc and cisc
 
Risc and cisc
Risc and ciscRisc and cisc
Risc and cisc
 
Nmas ass
Nmas assNmas ass
Nmas ass
 
An intel architecture, which is a cisc 2
An intel architecture, which is a cisc 2An intel architecture, which is a cisc 2
An intel architecture, which is a cisc 2
 
ITFT_Risc
ITFT_RiscITFT_Risc
ITFT_Risc
 
Base des systèmes à microprocesseur
Base des systèmes à microprocesseurBase des systèmes à microprocesseur
Base des systèmes à microprocesseur
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
Arm système embarqué
Arm système embarquéArm système embarqué
Arm système embarqué
 
Processors used in System on chip
Processors used in System on chip Processors used in System on chip
Processors used in System on chip
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
pipeline and vector processing
pipeline and vector processingpipeline and vector processing
pipeline and vector processing
 
Risc and cisc casestudy
Risc and cisc casestudyRisc and cisc casestudy
Risc and cisc casestudy
 
CISC vs RISC Processor Architecture
CISC vs RISC Processor ArchitectureCISC vs RISC Processor Architecture
CISC vs RISC Processor Architecture
 
Ch8 (1) morris mano
Ch8 (1) morris manoCh8 (1) morris mano
Ch8 (1) morris mano
 
Pipeline hazard
Pipeline hazardPipeline hazard
Pipeline hazard
 

Ähnlich wie RISC - Reduced Instruction Set Computing

Ähnlich wie RISC - Reduced Instruction Set Computing (20)

Risc and cisc eugene clewlow
Risc and cisc   eugene clewlowRisc and cisc   eugene clewlow
Risc and cisc eugene clewlow
 
Risc and cisc eugene clewlow
Risc and cisc   eugene clewlowRisc and cisc   eugene clewlow
Risc and cisc eugene clewlow
 
Risc and cisc eugene clewlow
Risc and cisc   eugene clewlowRisc and cisc   eugene clewlow
Risc and cisc eugene clewlow
 
R&c
R&cR&c
R&c
 
Comparative Study of RISC AND CISC Architectures
Comparative Study of RISC AND CISC ArchitecturesComparative Study of RISC AND CISC Architectures
Comparative Study of RISC AND CISC Architectures
 
risc_and_cisc.ppt
risc_and_cisc.pptrisc_and_cisc.ppt
risc_and_cisc.ppt
 
Dsdco IE: RISC and CISC architectures and design issues
Dsdco IE: RISC and CISC architectures and design issuesDsdco IE: RISC and CISC architectures and design issues
Dsdco IE: RISC and CISC architectures and design issues
 
CS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdf
CS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdfCS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdf
CS304PC:Computer Organization and Architecture UNIT V_merged_merged.pdf
 
Microcontroller architecture
Microcontroller architectureMicrocontroller architecture
Microcontroller architecture
 
Central processing unit
Central processing unitCentral processing unit
Central processing unit
 
PPT ON RISC
PPT ON RISC PPT ON RISC
PPT ON RISC
 
Computer architecture
Computer architectureComputer architecture
Computer architecture
 
Risc and cisc computers
Risc and cisc computersRisc and cisc computers
Risc and cisc computers
 
Presentation on risc pipeline
Presentation on risc pipelinePresentation on risc pipeline
Presentation on risc pipeline
 
Computer Organization.pptx
Computer Organization.pptxComputer Organization.pptx
Computer Organization.pptx
 
CS304PC:Computer Organization and Architecture Session 30 RISC.pptx
CS304PC:Computer Organization and Architecture Session 30 RISC.pptxCS304PC:Computer Organization and Architecture Session 30 RISC.pptx
CS304PC:Computer Organization and Architecture Session 30 RISC.pptx
 
RISC AND CISC.pptx
RISC AND CISC.pptxRISC AND CISC.pptx
RISC AND CISC.pptx
 
Review paper on 32-BIT RISC processor with floating point arithmetic
Review paper on 32-BIT RISC processor with floating point arithmeticReview paper on 32-BIT RISC processor with floating point arithmetic
Review paper on 32-BIT RISC processor with floating point arithmetic
 
Embedded System IoT_4.pptx ppt presentation
Embedded System  IoT_4.pptx ppt presentationEmbedded System  IoT_4.pptx ppt presentation
Embedded System IoT_4.pptx ppt presentation
 
CISC.pptx
CISC.pptxCISC.pptx
CISC.pptx
 

Mehr von Tushar Swami

Industrial Automation
Industrial AutomationIndustrial Automation
Industrial Automation
Tushar Swami
 

Mehr von Tushar Swami (14)

Consumer Protection Act
Consumer Protection ActConsumer Protection Act
Consumer Protection Act
 
HUL financial analysis 2017-19
HUL financial analysis 2017-19HUL financial analysis 2017-19
HUL financial analysis 2017-19
 
Indian AS 3
Indian AS 3Indian AS 3
Indian AS 3
 
Industrial Automation
Industrial AutomationIndustrial Automation
Industrial Automation
 
Greener mobile phones
Greener mobile phonesGreener mobile phones
Greener mobile phones
 
Oscillators
OscillatorsOscillators
Oscillators
 
Biophotonics
BiophotonicsBiophotonics
Biophotonics
 
Secure communication
Secure communicationSecure communication
Secure communication
 
Cryptography
CryptographyCryptography
Cryptography
 
Morse code (-- --- .-. ... . -.-. --- -.. .)
Morse code (-- --- .-. ... . -.-. --- -.. .)Morse code (-- --- .-. ... . -.-. --- -.. .)
Morse code (-- --- .-. ... . -.-. --- -.. .)
 
Mhealth - mobile health
Mhealth - mobile healthMhealth - mobile health
Mhealth - mobile health
 
Heliophysics - The Study of the Sun
Heliophysics - The Study of the SunHeliophysics - The Study of the Sun
Heliophysics - The Study of the Sun
 
Molecular Orbital Theory (MOT)
Molecular Orbital Theory (MOT)Molecular Orbital Theory (MOT)
Molecular Orbital Theory (MOT)
 
Cathode Ray Oscilloscope (CRO)
Cathode Ray Oscilloscope (CRO)Cathode Ray Oscilloscope (CRO)
Cathode Ray Oscilloscope (CRO)
 

Kürzlich hochgeladen

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 

RISC - Reduced Instruction Set Computing

  • 1.
  • 2. MEMBERS  Tushar Swami  Vikas Prasad  Tanish Garg  Anurag Aggarwal
  • 3. OUTLINE  What is RISC?  CISC  Background and History  Characteristics Pipelining Hardware  RISC v/s CISC  Performance Equation  Applications of RISC  RISC & CISC Convergence
  • 4. ACKNOWLEDGEMENT We would like to express our special thanks of gratitude to our teacher Dr. Praveen Kant Pandey who gave us the golden opportunity to present this wonderful presentation on the topic RISC, which also helped us in doing a lot of Research and we came to know about new things. We are really thankful to her.
  • 6. INTRODUCTION  RISC – Reduced Instruction Set Computer  RISC is a type of microprocessor architecture that utilizes  a small, highly-optimized set of instructions  rather than a more specialized set of instructions.  The main alternative for RISC is CISC ,which stands for complex instruction set computer.  CISC is the older approach, that came about to maximize performance of earlier computer’s. Where instructions were executed sequentially. The instruction set is the hardware language that tells the processor what to do. Sources : http://search400.techtarget.com/definition/RISC
  • 7. BACKGROUND AND HISTORY  RISC approach developed as a result of development in 1970’s - increase in memory size - decrease in cost - advanced compilers  In late 1970’s IBM was the first to start.  In 1980 , David Patterson ,began the project that gives this approach RISC.  After some years ,Stanford MIPS was developed. Sources : http://search400.techtarget.com/definition/RISC
  • 8. CHARACTERSTICS OF RISC  Simplified instructions , taking 1 clock cycle.  Large no. of general purpose registers.  Circuit is much simpler.  Fast to decode.  Fast to execute.  Pipelining- fetching of next instruction while previous instruction executes. Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/whatis/index.html
  • 9. PIPELINING Pipelining, a standard feature in RISC processors, is much like an assembly line. A useful method of demonstrating this is the laundry analogy. Let's say that there are four loads of dirty laundry that need to be washed, dried, and folded. Washer - 30 minutes Dry - 40 minutes Folding - 20 minutes Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
  • 12. RISC PIPELINES A RISC processor pipeline operates in much the same way, although the stages in the pipeline are different 1. fetch instructions from memory 2. read registers and decode the instruction 3. execute the instruction or calculate an address 4. access an operand in data memory 5. write the result into a register Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
  • 13. The length of the pipeline is dependent on the length of the longest step. Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/pipelining/index.html
  • 14. HARDARE UTILIZATION  For any given level of general performance, a RISC chip will typically have far fewer transistors dedicated to the core logic which originally allowed designers to increase the size of the register set.  RISC designs are also more likely planning to feature a Harvard memory model, where the instruction stream and the data stream are conceptually separated. Sources : https://www.youtube.com/watch?v=mDrUkjOVtAU
  • 16. CISC  Complex Instructions.  ADD AX,[BX + SI + 600H]  Many operations in single instruction. RISC  Simpler or reduced instructions.  LOAD R1, addresss1 LOAD R2, address2 ADD R1, R2 STORE address1, R1 One instruction one operation. INSTRUCTION Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
  • 17. CISC RISC CODE SIZE Code size is larger but simpler. Code size is smaller but complicated. Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
  • 18. CISC  Fewer register.  These registers are designed for special purposes.  CISC designs provide a large number of addressing modes. RISC  Large number of registers.  Here registers are identical so any register can be used for any purpose.  RISC designs have single addressing modes. REGISTERS AND ADDRESSING MODE Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
  • 19. CISC  Slower to execute.  Difficult to decode.  Instruction size varies in different instructions.  Complex circuit design. RISC  Faster execution.  Easy to decode.  Same instruction size in every instructions.  Circuit design is simpler. Sources : http://techupdates.in/difference-between-risc-and-cisc-processor-architectures/
  • 21. LOW END & MOBILE SYSTEM •ARM ARCHITECTURE o Android based systems/ Apple iPhone/ Nintendo GBA etc. •MIPS line o in PlayStations, Nintendo 64 etc. •Atmel AVR o Xbox handheld controllers to BMW cars HIGH END RISC & SUPERCOMPUTING •MIPS o used in embedded system in routers, used by Digital Equipment Corporation etc. •IBM’S Power Architecture o In many IBM’s supercomputers, workstations etc. •Alpha o In Single-board computers, Servers & Supercomputers from Digital Equivalent Cooperation etc. RISC APPLICATIONS Sources : http://embeddedcraft.org/
  • 22. ARM Architecture • Developed by Advanced RISC Machines (ARM). • ARM makes 32-bit & 64-bit RISC multi-core processors. • Features of ARM architecture:  A load/store architecture  An orthogonal instruction set.  Fixed instruction width  Mostly single clock-cycle execution.  Enhanced power-saving design.  Hardware virtualization supports. ARM BASED PRODUCTS. Sources : http://embeddedcraft.org/ http://whatis.techtarget.com/definition/ARM-processor
  • 23. MIPS • It includes MIPS I, MIPS II, MIPS III, MIPS IV, MIPS V, MIPS32, and MIPS64. • Key concepts: • five-stage execution pipeline • regular instruction set, all instructions are 32-bit • no status register or instruction side- effects • no complex instructions. • only the load and store instruction access memory. • optional coprocessors for system management and floating-point • flat address space of 2^32 bytes of main memory MIPS- Microprocessor without Interlocked Pipeline Stages Sources : http://embeddedcraft.org/ https://tams.informatik.unihamburg.de/applets/webdemos/mips.html
  • 25. PERFORMANCE EQUATION The CISC approach attempts to minimize the number of instructions per program, sacrificing the number of cycles per instruction. RISC does the opposite, reducing the cycles per instruction at the cost of the number of instructions per program. Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/risccisc/index.html
  • 26. RISC & CISC CONVERGENCE With time and developments, it was observed that the line of distinction between two hardware began to blur. In fact two hardware seem to have adopted the strategies of the other.  CISC - now executes more than one instruction within a single clock.  This also allows CISC chips to make use of pipelining.  With other technological improvements, it is now possible to fit many more transistors on a single chip.  RISC - incorporate more complicated, CISC-like commands. Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/developments/index.html
  • 27. CONCLUSION  Experts’ talk - we are in a "post-RISC" era, in which the two styles have become so similar that distinguishing between them is no longer relevant.  RISC chips still retain some important traits. - utilize uniform, single-cycle instructions. - register-to-register, load/store architecture. - still have a large number of general purpose registers. Sources : https://cs.stanford.edu/people/eroberts/courses/soco/projects/risc/developments/index.html