Chapter 4. The Processor. Instruction count Determined by ISA and compiler. We will examine two MIPS implementations

Similar documents
Chapter 4. The Processor

The Processor: Datapath and Control. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Chapter 4. The Processor

Processor (I) - datapath & control. Hwansoo Han

Chapter 4. The Processor Designing the datapath

The Processor (1) Jinkyu Jeong Computer Systems Laboratory Sungkyunkwan University

COMPUTER ORGANIZATION AND DESIGN. The Hardware/Software Interface. Chapter 4. The Processor: A Based on P&H

COMPUTER ORGANIZATION AND DESIGN. 5 th Edition. The Hardware/Software Interface. Chapter 4. The Processor

Chapter 4. Instruction Execution. Introduction. CPU Overview. Multiplexers. Chapter 4 The Processor 1. The Processor.

COMPUTER ORGANIZATION AND DESIGN. 5 th Edition. The Hardware/Software Interface. Chapter 4. The Processor

Systems Architecture

The Processor. Z. Jerry Shi Department of Computer Science and Engineering University of Connecticut. CSE3666: Introduction to Computer Architecture

Introduction. Datapath Basics

Chapter 4. The Processor

Chapter 4. The Processor. Computer Architecture and IC Design Lab

TDT4255 Computer Design. Lecture 4. Magnus Jahre. TDT4255 Computer Design

Chapter 4. The Processor

Introduction. Chapter 4. Instruction Execution. CPU Overview. University of the District of Columbia 30 September, Chapter 4 The Processor 1

ECE260: Fundamentals of Computer Engineering

ECE232: Hardware Organization and Design

COMPUTER ORGANIZATION AND DESIGN

The MIPS Processor Datapath

Chapter 4 The Processor 1. Chapter 4A. The Processor

Lecture Topics. Announcements. Today: Single-Cycle Processors (P&H ) Next: continued. Milestone #3 (due 2/9) Milestone #4 (due 2/23)

COMPUTER ORGANIZATION AND DESIGN The Hardware/Software Interface. 5 th. Edition. Chapter 4. The Processor

Single Cycle Datapath

Single Cycle Datapath

Inf2C - Computer Systems Lecture Processor Design Single Cycle

COMPUTER ORGANIZATION AND DESIGN

CSSE232 Computer Architecture I. Datapath

COMPUTER ORGANIZATION AND DESIGN

LECTURE 5. Single-Cycle Datapath and Control

ELEC 5200/6200 Computer Architecture and Design Spring 2017 Lecture 4: Datapath and Control

ENGN1640: Design of Computing Systems Topic 04: Single-Cycle Processor Design

Computer and Information Sciences College / Computer Science Department The Processor: Datapath and Control

Review: Abstract Implementation View

CPU Organization (Design)

Data paths for MIPS instructions

LECTURE 3: THE PROCESSOR

CPE 335 Computer Organization. Basic MIPS Architecture Part I

Determined by ISA and compiler. We will examine two MIPS implementations. A simplified version A more realistic pipelined version

Chapter 4. The Processor

Chapter 5: The Processor: Datapath and Control

4. The Processor Computer Architecture COMP SCI 2GA3 / SFWR ENG 2GA3. Emil Sekerinski, McMaster University, Fall Term 2015/16

Topic #6. Processor Design

Computer Architecture Computer Science & Engineering. Chapter 4. The Processor BK TP.HCM

Mark Redekopp and Gandhi Puvvada, All rights reserved. EE 357 Unit 15. Single-Cycle CPU Datapath and Control

CENG 3420 Lecture 06: Datapath

Chapter 4. The Processor

The Processor: Datapath & Control

Chapter 4. The Processor

Lecture 3: The Processor (Chapter 4 of textbook) Chapter 4.1

CENG 3420 Computer Organization and Design. Lecture 06: MIPS Processor - I. Bei Yu

CC 311- Computer Architecture. The Processor - Control

EIE/ENE 334 Microprocessors

Full Datapath. CSCI 402: Computer Architectures. The Processor (2) 3/21/19. Fengguang Song Department of Computer & Information Science IUPUI

Unsigned Binary Integers

Unsigned Binary Integers

EECS150 - Digital Design Lecture 10- CPU Microarchitecture. Processor Microarchitecture Introduction

Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: Data Paths and Microprogramming

COMP303 - Computer Architecture Lecture 8. Designing a Single Cycle Datapath

Systems Architecture I

Computer Organization and Structure. Bing-Yu Chen National Taiwan University

ECE369. Chapter 5 ECE369

CS222: Processor Design

The Big Picture: Where are We Now? EEM 486: Computer Architecture. Lecture 3. Designing a Single Cycle Datapath

Computer Organization and Structure

EECS150 - Digital Design Lecture 9- CPU Microarchitecture. Watson: Jeopardy-playing Computer

CS 61C: Great Ideas in Computer Architecture. MIPS CPU Datapath, Control Introduction

Lecture 10: Simple Data Path

Outline. EEL-4713 Computer Architecture Designing a Single Cycle Datapath

CpE242 Computer Architecture and Engineering Designing a Single Cycle Datapath

CS 61C: Great Ideas in Computer Architecture Datapath. Instructors: John Wawrzynek & Vladimir Stojanovic

Lecture 08: RISC-V Single-Cycle Implementa9on CSE 564 Computer Architecture Summer 2017

Major CPU Design Steps

Ch 5: Designing a Single Cycle Datapath

CS3350B Computer Architecture Winter 2015

RISC Processor Design

CSE140: Components and Design Techniques for Digital Systems

361 datapath.1. Computer Architecture EECS 361 Lecture 8: Designing a Single Cycle Datapath

The overall datapath for RT, lw,sw beq instrucution

Laboratory 5 Processor Datapath

Pipelining. CSC Friday, November 6, 2015

ECE 15B Computer Organization Spring 2011

Lecture 5: The Processor

ﻪﺘﻓﺮﺸﻴﭘ ﺮﺗﻮﻴﭙﻣﺎﻛ يرﺎﻤﻌﻣ MIPS يرﺎﻤﻌﻣ data path and ontrol control

ECE 486/586. Computer Architecture. Lecture # 7

CSCI 402: Computer Architectures. Fengguang Song Department of Computer & Information Science IUPUI. Today s Content

CS/COE0447: Computer Organization

CS/COE0447: Computer Organization

Computer Architecture Computer Science & Engineering. Chapter 4. The Processor BK TP.HCM

LECTURE 6. Multi-Cycle Datapath and Control


COMPUTER ORGANIZATION AND DESI

5 th Edition. The Processor We will examine two MIPS implementations A simplified version A more realistic pipelined version

CPE 335. Basic MIPS Architecture Part II

Improving Performance: Pipelining

Review. N-bit adder-subtractor done using N 1- bit adders with XOR gates on input. Lecture #19 Designing a Single-Cycle CPU

EC 413 Computer Organization - Fall 2017 Problem Set 3 Problem Set 3 Solution

CSEN 601: Computer System Architecture Summer 2014

Transcription:

Chapter 4 The Processor Part I Introduction CPU performance factors Instruction count Determined by ISA and compiler CPI and Cycle time Determined by CPU hardware We will examine two MIPS implementations A simplified version A more realistic pipelined version Simple subset, shows most aspects Memory reference: lw, sw Arithmetic/logical: add, sub, and, or, slt Control transfer: beq, j 4.1 Intro oduction Chapter 4 The Processor 2

Instruction Execution PC instruction memory, fetch instruction Register numbers register file, read registers Depending on instruction class Use ALU to calculate Arithmetic result Memory address for load/store Branch target address Access data memory for load/store PC target address or PC + 4 Chapter 4 The Processor 3 CPU Overview Chapter 4 The Processor 4

Multiplexers Can t just join wires together Use multiplexers Chapter 4 The Processor 5 Control Chapter 4 The Processor 6

Logic Design Basics Information encoded in binary Low voltage = 0, High voltage = 1 One wire per bit Multi-bit data encoded on multi-wire buses Combinational element Operate on data Output is a function of input State (sequential) elements Store information 4.2 Logic Design Conventio ons Chapter 4 The Processor 7 Combinational Elements AND-gate Y = A & B Adder Y = A + B A B + Y A B Y Multiplexer Y = S? I1 : I0 I0 I1 M u x S Y Arithmetic/Logic Unit Y = F(A, B) A ALU Y B F Chapter 4 The Processor 8

Sequential Elements Register: stores data in a circuit Uses a clock signal to determine when to update the stored value Edge-triggered: update when Clk changes from 0 to 1 D Clk Q Clk D Q Chapter 4 The Processor 9 Sequential Elements Register with write control Only updates on clock edge when write control input is 1 Used when stored value is required later Clk D Write Clk Q Write D Q Chapter 4 The Processor 10

Clocking Methodology Combinational logic transforms data during clock cycles Between clock edges Input from state elements, output to state element Longest delay determines clock period Chapter 4 The Processor 11 Building a Datapath Datapath Elements that process data and addresses in the CPU Registers, ALUs, mux s, memories, We will build a MIPS datapath incrementally Refining the overview design 4.3 Building a Da tapath Chapter 4 The Processor 12

Instruction Fetch Two state elements to store and access instructions Instruction memory Program counter (32 bits) An adder to compute the next instruction address Add two 32-bit inputs Place the sum on its output Chapter 4 The Processor 13 Instruction Fetch Exercise: How are the components put together? Chapter 4 The Processor 14

Instruction Fetch 32-bit register Increment by 4 for next instruction Chapter 4 The Processor 15 R-Format Instructions Read two register operands Perform arithmetic/logical operation Write register result Chapter 4 The Processor 16

Load/Store Instructions Read register operands Calculate address using 16-bit offset Use ALU, but sign-extend offset Load: Read memory and update register Store: Write register value to memory Chapter 4 The Processor 17 Branch Instructions Read register operands Compare operands Use ALU, subtract and check Zero output Calculate target address Sign-extend displacement Shift left 2 places (word displacement) Add to PC + 4 Already calculated by instruction fetch Chapter 4 The Processor 18

Branch Instructions Exercise: How are the components put together? Chapter 4 The Processor 19 Branch Instructions Just re-routesroutes wires Sign-bit wire replicated Chapter 4 The Processor 20

Composing the Elements First-cut data path does an instruction in one clock cycle Each datapath element can only do one function at a time Hence, we need separate instruction and data memories Use multiplexers where alternate data sources are used for different instructions Chapter 4 The Processor 21 R-Type/Load/Store Datapath Exercise: How are the components put together? Chapter 4 The Processor 22

R-Type/Load/Store Datapath Chapter 4 The Processor 23 Full Datapath Chapter 4 The Processor 24

ALU Control ALU used for Load/Store: F = add Branch: F = subtract R-type: F depends on funct field ALU control Function 0000 AND 0001 OR 0010 add 0110 subtract 0111 set-on-less-than 1100 NOR 4.4 A Simple Impl lementatio on Scheme e Chapter 4 The Processor 25 ALU Control Assume 2-bit ALUOp derived from opcode Combinational logic derives ALU control opcode ALUOp Operation funct ALU function ALU control lw 00 load word XXXXXX add 0010 sw 00 store word XXXXXX add 0010 beq 01 branch equal XXXXXX subtract 0110 R-type 10 add 100000 add 0010 subtract 100010 subtract 0110 AND 100100 AND 0000 OR 100101 OR 0001 set-on-less-than 101010 set-on-less-than 0111 Chapter 4 The Processor 26

The Main Control Unit Control signals derived from instruction R-type Load/ Store Branch 0 rs rt rd shamt funct 31:26 25:21 20:16 15:11 10:6 5:0 35 or 43 rs rt address 31:26 25:21 20:16 15:0 4 rs rt address 31:26 25:21 20:16 15:0 opcode always read read, except for load write for R-type andload sign-extend and add Chapter 4 The Processor 27 The Main Control Unit Datapath with all necessary multiplexors and all control lines identified Chapter 4 The Processor 28

The Main Control Unit The effect of each of the seven control signals Chapter 4 The Processor 29 Datapath With Control Chapter 4 The Processor 30

Datapath With Control Setting of the control lines is completely determined by the opcode fields of the instruction Chapter 4 The Processor 31 Datapath With Control Setting of the control lines is completely determined by the opcode fields of the instruction Chapter 4 The Processor 32

R-Type Instruction Chapter 4 The Processor 33 R-Type Instruction Chapter 4 The Processor 34

Load Instruction Chapter 4 The Processor 35 Load Instruction Chapter 4 The Processor 36

Branch-on-Equal Instruction Chapter 4 The Processor 37 Branch-on-Equal Instruction Chapter 4 The Processor 38

Finalizing Control Truth table used to specify the control function for the simple single-cycle implementation Chapter 4 The Processor 39 Implementing Jumps Jump 2 address 31:26 25:0 Jump uses word address Update PC with concatenation of Top 4 bits of old PC 26-bit jump address 00 Need an extra control signal decoded from opcode Chapter 4 The Processor 40

Datapath With Jumps Added Chapter 4 The Processor 41 Performance Issues Longest delay determines clock period Critical path: longest latency path Which one? Ans.: load instruction Instruction memory register file ALU data memory register file Not feasible to vary period for different instructions Violates design principle Making the common case fast We will improve performance by pipelining Chapter 4 The Processor 42