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

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. Instruction count Determined by ISA and compiler. We will examine two MIPS implementations

Chapter 4. The Processor Designing the datapath

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

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

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

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

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

Chapter 4. The Processor

Introduction. Datapath Basics

Chapter 4. The Processor

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

ECE232: Hardware Organization and Design

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

The MIPS Processor Datapath

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

COMPUTER ORGANIZATION AND DESIGN

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

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

LECTURE 5. Single-Cycle Datapath and Control

Single Cycle Datapath

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

Inf2C - Computer Systems Lecture Processor Design Single Cycle

Single Cycle Datapath

COMPUTER ORGANIZATION AND DESIGN

CPE 335 Computer Organization. Basic MIPS Architecture Part I

Lecture 10: Simple Data Path

COMPUTER ORGANIZATION AND DESIGN

CENG 3420 Lecture 06: Datapath

Review: Abstract Implementation View

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

CSSE232 Computer Architecture I. Datapath

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

LECTURE 3: THE PROCESSOR

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

Data paths for MIPS instructions

RISC Processor Design

CPU Organization (Design)

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

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

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

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

Chapter 4. The Processor

CC 311- Computer Architecture. The Processor - Control

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

Chapter 5: The Processor: Datapath and Control

Chapter 4. The Processor

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

CPE 335. Basic MIPS Architecture Part II

Chapter 4. The Processor

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

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

CS/COE0447: Computer Organization

CS/COE0447: Computer Organization

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

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

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

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

Topic #6. Processor Design

Processor: Multi- Cycle Datapath & Control

EIE/ENE 334 Microprocessors

ECE369. Chapter 5 ECE369

Laboratory 5 Processor Datapath

Computer Hardware Engineering

Systems Architecture I

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

The Processor: Datapath & Control

Design of Digital Circuits 2017 Srdjan Capkun Onur Mutlu (Guest starring: Frank K. Gürkaynak and Aanjhan Ranganathan)

Computer Hardware Engineering

CS Computer Architecture Spring Week 10: Chapter

CS222: Processor Design

Unsigned Binary Integers

Unsigned Binary Integers

CO Computer Architecture and Programming Languages CAPL. Lecture 18 & 19

LECTURE 6. Multi-Cycle Datapath and Control

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

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

CSEN 601: Computer System Architecture Summer 2014

The overall datapath for RT, lw,sw beq instrucution

CpE242 Computer Architecture and Engineering Designing a Single Cycle Datapath

Major CPU Design Steps

Design of the MIPS Processor

EECS 151/251A Fall 2017 Digital Design and Integrated Circuits. Instructor: John Wawrzynek and Nicholas Weaver. Lecture 13 EE141

RISC Architecture: Multi-Cycle Implementation

Single Cycle CPU Design. Mehran Rezaei

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

Lecture 12: Single-Cycle Control Unit. Spring 2018 Jason Tang

ECE 486/586. Computer Architecture. Lecture # 7

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

361 control.1. EECS 361 Computer Architecture Lecture 9: Designing Single Cycle Control

Pipelining. CSC Friday, November 6, 2015

ENE 334 Microprocessors

Computer Architecture, IFE CS and T&CS, 4 th sem. Single-Cycle Architecture

Transcription:

The Processor (1) Jinkyu Jeong (jinkyu@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 1

Outline Textbook: P&H 4.1-4.4 Logic Design Basics & Implementation Overview Building a Datapath Control Logic Design EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 2

Logic Design Basics & Implementation Overview EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 4

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) EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 5 A B ALU F Y

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 6

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 7

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 8

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 9

CPU Overview EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Multiplexers Can t just join wires together Use multiplexers EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 11

Control EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Building a Datapath EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 14

Instruction Fetch 32-bit register Increment by 4 for next instruction EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

R-Format Instructions Read two register operands Perform arithmetic/logical operation Write register result EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 16

R-Format Instructions R format instructions (add, sub, slt, and, or) 31 25 20 15 10 5 0 R-type: op rs rt rd shamt funct perform operation (op and funct) on values in rs and rt store the result back into the Register File (into location rd) RegWrite ALU control Instruction Read Addr 1 Register Read Addr 2 File Write Addr Write Data Read Data 1 Read Data 2 ALU overflow zero Note that Register File is not written every cycle (e.g. sw), so we need an explicit write control signal for the Register File EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 17

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 18

Load/Store Instructions Load and store instructions involve compute memory address by adding the base register (read from the Register File during decode) to the 16-bit signed-extended offset field in the instruction store value (read from the Register File during decode) written to the Data Memory load value, read from the Data Memory, written to the Register File RegWrite ALU control MemWrite Instruction Read Addr 1 Register Read Addr 2 File Write Addr Write Data Read Data 1 Read Data 2 overflow zero ALU Address Data Memory Write Data Read Data Sign 16 Extend 32 MemRead EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 19

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 20

Branch Instructions Just re-routes wires Sign-bit wire replicated EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Branch Instructions Branch instructions involve compare the operands read from the Register File during decode for equality (zero ALU out) compute the branch target address by adding the updated PC to the 16-bit signedextended offset field in the instr 4 Add Shift left 2 Add Branch target address ALU control PC Instruction Read Addr 1 Register Read Addr 2 File Write Addr Write Data Read Data 1 Read Data 2 ALU zero (to branch control logic) Sign 16 Extend EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 32 22

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 23

R-Type/Load/Store Datapath EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 24

Full Datapath EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Control Logic Design EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Datapath With Control EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 28

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 29

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 and l oad sign-extend and add EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 30

R-Type Instruction EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Load Instruction EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Branch-on-Equal Instruction EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 34

Datapath With Jumps Added EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu)

Performance Issues Longest delay determines clock period Critical path: 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 EEE3050: Theory on Computer Architectures, Spring 2017, Jinkyu Jeong (jinkyu@skku.edu) 36