Outline of today s lecture. EEL-4713 Computer Architecture Designing a Multiple-Cycle Processor. What s wrong with our CPI=1 processor?

Size: px
Start display at page:

Download "Outline of today s lecture. EEL-4713 Computer Architecture Designing a Multiple-Cycle Processor. What s wrong with our CPI=1 processor?"

Transcription

1 Outline of today s lecture EEL-7 Computer Architecture Designing a Multiple-Cycle Processor Recap and Introduction Introduction to the Concept of Multiple Cycle Processor Multiple Cycle Implementation of R-type Instructions What is a Multiple Cycle Delay Path and Why is it Bad? Multiple Cycle Implementation of Or ediate Multiple Cycle Implementation of Load and Store Putting it all Together EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross Abstract view of our single cycle processor What s wrong with our CPI= processor? op Main Arithmetic & Logical Inst Reg File mux mux Reg File n_sel Next fun Instruction Fetch Equal Register Fetch Src Ext ctr control Mem Mem Access RegDst Reg. Wrt Data Mem Result Store Load Inst Reg File mux Data Mem mux Critical Path Store Inst Reg File mux Data Mem Branch Inst Reg File cmp mux Long Cycle Time All instructions take as much time as the slowest Reg File looks like an FSM with as state EEL-7 Ann Gordon - Ross Real memory is not so nice as our idealized memory cannot aays get the job done in one (short) cycle EEL-7 Ann Gordon - Ross

2 Drawbacks of this single cycle processor Overview of a multiple cycle implementation Long cycle time: Cycle time is much longer than needed for all other instructions. Examples: R-type instructions do not require data memory access Jump does not require operation nor data memory access Need for multiple functional units Can t share functional units for multiple operations in the same instruction E.g., instruction/data memory, adders (,, branch target, etc.) EEL-7 Ann Gordon - Ross The root of the single cycle processor s problems: The cycle time has to be long enough for the slowest instruction Solution: Break the instruction into smaller steps Execute each step (instead of the entire instruction) in one cycle 6 EEL-7 Ann Gordon - Ross - Cycle time: time it takes to execute the longest step - All the steps have similar length This is the essence of the multiple cycle processor The advantages of the multiple cycle processor: Cycle time is much shorter Different instructions take different number of cycles to complete (for now) - Load takes five cycles - Jump only takes three cycles Allows a functional unit to be used more than once per instruction What and when: When designing multi-cycle implementations, you must think about: What to do on each cycle When results are ready for next cycle What to do on each cycle: Aays need to fetch instruction Aays need to decode instruction (know what to do next) Next need to perform actual operation (varies from instruction to instruction) E.g.: - Load will require address calculation, memory read, reg write - Branch will require comparison and update - R-type will require operation, reg write Overview: State Diagram Read mem. with address calculated above Computes rs+imm Fetch and store in IR =+ LWmem Latch data read from memory in rt or Write rt to memory address calc. above Decode operation Index registers Register operands In busa, busb RExec ype has inputs and control set, can compute Latch computed result in rd Finish branch Calculate the Target address Select mux, Write Exec has inputs and control set, can compute Latch computed result in rt Finish 7 EEL-7 Ann Gordon - Ross 8 EEL-7 Ann Gordon - Ross

3 Clk,,, Op, Func ctr Example: the five steps of a Load instruction 9 EEL-7 Ann Gordon - Ross Clk-to-Q New Value Old Value Instruction Access Time New Value Delay through Logic New Value Old Value New Value busa busb Old Value Instruction Fetch Instr Decode / Old Value Old Value New Value Src Old Value New Value Old Value Reg. Fetch Delay through er & Old Value Address Data Register File Access Time New Value New Value Delay Address Old Value New Value Data Access Time busw Old Value New Reg Wr Register File Write Time Multicycle datapath Similar to the single-cycle datapath; use latches for instruction and branch target address signals generated for multiple clock cycles per instruction - FSM Wr= WrCond= =x BrWr= =x = IRWr= RegDst=x = = Target Rb busa Reg File WrAdr busw busb << Beq Op ype 6 Func SelB= 6 6 : = EEL-7 Ann Gordon - Ross Overview: State Diagram Read mem. with address calculated above Computes rs+imm Fetch and store in IR =+ LWmem Latch data read from memory in rt or Write rt to memory address calc. above Decode operation Index registers Register operands In busa, busb RExec ype has inputs and control set, can compute Latch computed result in rd Finish branch Calculate the Target address Select mux, Write Exec has inputs and control set, can compute Latch computed result in rt Finish Cycle : Fetch : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross

4 Instruction fetch cycle: beginning Every cycle begins right AFTER the clock tick: mem[] <:> + Instruction fetch cycle: end Every cycle ends AT the next clock tick (storage element updates): IR <-- mem[] <:> <-- <:> + Clk Clk You are here! Wr=? One Logic Clock Cycle Use the main Wr= One Logic Clock Cycle You are here! Clk =? WrAdr Dout Din IRWr=? Clk op=? Clk = IRWr= WrAdr Din Dout Clk Op = Add EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross Instruction Fetch Cycle: Overall Picture. Latch IR=mem[] Fetch and. Set =+ store in IR : Wr, IRWr =+ x: WrCond RegDst, MemR Others: s Wr= WrCond=x = BrWr= = = IRWr= = Target busa WrAdr busb SelB= Cycle : Register fetch, decode : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : EEL-7 Ann Gordon - Ross 6 EEL-7 Ann Gordon - Ross

5 Register Fetch / Instruction Decode busa <- RegFile[rs] ; busb <- RegFile[rt] ; can be also be used to compute branch target address (next slide) in this cycle (latch target); register compare done on next cycle Wr= =x WrCond= = WrAdr Go to the 7 EEL-7 Ann Gordon - Ross Op Func IRWr= 6 6 RegDst=x 6 = Rb busa Reg File busw busb =x =x SelB=xx Op=xx Register Fetch / Instruction Decode (Continue) busa <- Reg[rs] ; busb <- Reg[rt] ; Target <- + SignExt(6)* Generate control signals Wr= =x Beq ype WrCond= = WrAdr 8 EEL-7 Ann Gordon - Ross : IRWr= Op 6 Func 6 RegDst=x 6 = : BrWr, SelB= x: RegDst,, Others: s = Rb busa Reg File busw busb << =x = Decode operation Index registers Register operands In busa, busb SelB= BrWr= Target Cycle : Branch completion : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, 9 EEL-7 Ann Gordon - Ross :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Branch Completion if (busa == busb) Wr= <- Target =x WrCond= = WrAdr EEL-7 Ann Gordon - Ross IRWr= RegDst=x 6 =x Op=Sub SelB= x:, MemReg RegDst, : WrCond = Rb busa Reg File busw busb << Finish branch Calculate the Target address Select mux, Write = = SelB= BrWr= Target Op=Sub

6 Cycle : ype execution : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : R-type Execution has Output <- busa op busb RExec : RegDst inputs and control set, Jump SelB= Op=ype can compute x:, Wr= WrCond= =x BrWr= =x = IRWr= RegDst= = = Target JumpAddr Rb busa Reg File WrAdr busw busb << Funct 6 =x =x Op=ype SelB= EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross Cycle : ype completion : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Latch R-type Completion computed Op=ype result in R[rd] <- Output : RegDst, rd sela SelB= Wr= WrCond= x:, =x BrWr= =x = IRWr= RegDst= = = Target Rb busa Reg File WrAdr busw busb << 6 =x = Op=ype SelB= EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross

7 Cycle : execution : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Execution Op=Or Op=Or Exec : output <- busa or Ext[6] :,, Wr= WrCond= =x BrWr= =x = IRWr= RegDst= = = Target Rb busa Reg File WrAdr busw busb << 6 = =x Op=Or EEL-7 Ann Gordon - Ross 6 EEL-7 Ann Gordon - Ross Cycle : completion : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Completion Latch Finish Op=Or computed result in Reg[rt] <- output x:, rt : Wr= WrCond= =x BrWr= =x = IRWr= RegDst= = = Target Rb busa Reg File WrAdr busw busb << 6 = = Op=Or 7 EEL-7 Ann Gordon - Ross 8 EEL-7 Ann Gordon - Ross

8 Cycle : Address calculation : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: 9 EEL-7 Ann Gordon - Ross : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Address Calculation : Computes rs+imm output <- busa + SignExt[6] Wr= WrCond= =x BrWr= =x = IRWr= RegDst=x = = Target Rb busa Reg File WrAdr busw busb << EEL-7 Ann Gordon - Ross 6 = =x Cycle : access, store : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Write rt Access for Store : SWmem to memory address calc. mem[ output] <- busb above Wr= WrCond= x:,regdst =x BrWr= =x = IRWr= RegDst=x = = Target Rb busa Reg File WrAdr busw busb << 6 = =x EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross

9 Cycle : access, load : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: EEL-7 Ann Gordon - Ross : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Access for Load : LWmem Read mem., with address calculated Mem Dout <- mem[ output] above Wr= WrCond= =x BrWr= = = IRWr= RegDst= = = Target Rb busa Reg File WrAdr busw busb << EEL-7 Ann Gordon - Ross 6 = =x Cycle : access, load : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, EEL-7 Ann Gordon - Ross :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Write Back for Load Latch data read from :, memory in rt Reg[rt] <- Mem Dout x: Wr= WrCond= =x BrWr= =x = IRWr= RegDst= = = Target Rb busa Reg File WrAdr busw busb << 6 EEL-7 Ann Gordon - Ross 6 = =

10 Wr Putting it all together: Multiple Cycle Datapath WrCond BrWr IRWr RegDst Target WrAdr 6 Rb busa Reg File busw busb << SelB Op Putting it all together: State Diagram : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem, :, x: : x:,regdst : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Op=Or Finish x:, : 7 EEL-7 Ann Gordon - Ross 8 EEL-7 Ann Gordon - Ross Note: there is a multiple-cycle delay path There is no register to save the results between: IRWr ) Register Fetch: busa <- Reg[rs] ; busb <- Reg[rt] ) R-type Execution: output <- busa op busb ) R-type Completion: Reg[rd] <- output Register here to save outputs of Rfetch? busa Rb Reg File busw busb selb sela Op Register here to save outputs of RExec? A Multiple Cycle Delay Path (Continue) Register is NOT needed to save the outputs of Register Fetch: IRWr = : busa and busb will not change after Register Fetch Register is NOT needed to save the outputs of R-type Execution: busa and busb will not change after Register Fetch signals, SelB, and Op will not change after R-type Execution Consequently output will not change after R-type Execution In theory, you need a register to hold a signal value if: () The signal is computed in one clock cycle and used in another. () AND the inputs to the functional block that computes this signal can change before the signal is written into a state element. You can save a register if Cond is true BUT Cond is false: But in practice, this will introduce a multiple cycle delay path: - A logic delay path that takes multiple cycles to propagate from one storage element to the next storage element 9 EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross

11 Pros and Cons of a Multiple Cycle Delay Path Pros and Cons of a Multiple Cycle Delay Path (Continue) A -cycle path example: IR (storage) -> Reg File Read -> -> Reg File Write (storage) Advantages: Register savings We can share time among cycles: - If takes longer than one cycle, still OK as long as the entire path takes less than cycles to finish Disadvantage: Static timing analyzer, which ONLY looks at delay between two storage elements, will report this as a timing violation You have to ignore the static timing analyzer s warnings busa Rb Reg File busw busb selb busa Rb Reg File busw busb selb EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross Summary logic Disadvantages of the Single Cycle Processor Long cycle time Cycle time is too long for all instructions except the Load Review of Finite State Machine (FSM) control From Finite State Diagrams to Microprogramming Multiple Cycle Processor: Divide the instructions into smaller steps Execute each step (instead of the entire instruction) in one cycle Do NOT confuse Multiple Cycle Processor with multiple cycle delay path Multiple Cycle Processor executes each instruction in multiple clock cycles Multiple Cycle Delay Path: a combinational logic path between two storage elements that takes more than one clock cycle to complete It is possible (desirable) to build a MC Processor without MCDP: Use a register to save a signal s value whenever a signal is generated in one clock cycle and used in another cycle later EEL-7 Ann Gordon - Ross EEL-7 Ann Gordon - Ross

12 Overview may be designed using one of several initial representations. The choice of sequence control, and how logic is represented, can then be determined independently; the control can then be implemented with one of several methods using a structured logic technique. Initial Representation Finite State Diagram Microprogram Sequencing Explicit Next State Microprogram counter Function + Dispatch ROMs Logic Representation Logic Equations Truth Tables Implementation Technique PLA ROM hardwired control microprogrammed control Initial Representation: Finite State Diagram 8 : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem 6, : x:,regdst : 7, 9: Jump x: See Fig C.. : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : EEL-7 Ann Gordon - Ross 6 EEL-7 Ann Gordon - Ross Sequencing : Explicit Next State Function Interface in detail Logic and Next State Logic Inputs O u t p u t s Multicycle Datapath Opcode State Reg Next state number is encoded just like datapath controls 7 EEL-7 Ann Gordon - Ross 8 EEL-7 Ann Gordon - Ross

13 Logic Representation: Logic Equations Next state from current state State -> State State -> S, S6, S8, S State -> S, S State -> State State ->State State -> State State 6 -> State 7 State 7 -> State State 8 -> State State 9-> State State -> State State -> State 9 EEL-7 Ann Gordon - Ross Alternatively, prior state & condition S, S, S7, S8, S9, S -> State State -> State State & op = -> State State & op = -> State State -> State State & op = -> State State & op = R-type -> State 6 State 6 -> State 7 State & op = -> State 8 State & op = jmp -> State 9 State & op = ORi -> State State -> State See Fig. C.. Implementation Technique: Programmed Logic Arrays Each output line: the logical OR of logical AND of input lines or their complement; AND minterms specified in top AND plane, OR sums specified in bottom OR plane Op Op Op Op Op Op S S S S = 6 = = 7 = = 8 = = 9 = = = = = EEL-7 Ann Gordon - Ross R = = = = ori = jmp = Op=any S= Next= NS NS NS NS Implementation Technique: Programmed Logic Arrays Each output line the logical OR of logical AND of input lines or their complement: AND minterms specified in top AND plane, OR sums specified in bottom OR plane Op Op Op Op Op Op S S S S = 6 = = 7 = = 8 = = 9 = = = = = EEL-7 Ann Gordon - Ross = = R = ori = = jmp = NS NS NS NS Multicycle Given numbers assigned to FSM, can in turn determine next state as function of the inputs and current state Can turn these into Boolean equations for each bit of the next state lines Implement easily using PLA (programmable logic array) or ROM storing truth tables See Figs. C..6 and C..8 for tables showing outputs and next state as function of current state and opcode What if many more states, many more conditions? State machine gets too large; very large ROMs/PLAs What if need to add a state? May need to increase address for ROM, number of inputs for PLA gates Or just implement FSM in VHDL EEL-7 Ann Gordon - Ross

14 Next Iteration: Using Sequencer for Next State Sequencer-based control unit Before: Explicit Next State; Next try variation step from right hand side Few sequential states in small FSM: suppose added floating point? Still need to go to non-sequential states: e.g., state =>, 6, 8, Initial Representation Finite State Diagram Microprogram Sequencing Explicit Next State Microprogram counter Function + Dispatch ROMs Logic Representation Logic Equations Truth Tables Implementation Technique PLA ROM hardwired control microprogrammed control EEL-7 Ann Gordon - Ross Logic Outputs Inputs State Reg Adder Address Select Logic Opcode EEL-7 Ann Gordon - Ross Multicycle Datapath A processor on its own Set state to Dispatch (state & ) Incremented state number ( micro ) and micro branches specify whether to increment or select another state based on opcode Sequencer-based control unit Sequencer block diagram Adder Logic Outputs Inputs State Reg Address Select Logic Multicycle Datapath AddrCtrl control for select logic : reset state register (next instruction) : select next using next-state ROM for state : select next using next-state ROM for state : increment state Fig. C.. Before: 6bit opcode + -bit state -> -bit NS Now: -bit state -> -bit AddrCtrl AddrCtrl= (fetch) AddrCtrl= (decode) AddrCtrl= (/) AddrCtrl= () AddrCtrl= () AddrCtrl= () AddrCtrl= (r-type) AddrCtrl= (r-type) AddrCtrl= (branch) AddrCtrl= (ori) AddrCtrl= (ori) Dispatch ROM (Indexed by opcode) -> -> R-type -> ori -> branch -> EEL-7 Ann Gordon - Ross Opcode 6 EEL-7 Ann Gordon - Ross ROM: -> ->

15 Initial Representation: Finite State Diagram 8 : Wr, IRWr x: WrCond RegDst, MemR : Others: s or : LWmem 6, : x:,regdst : 7, 9: Jump x: See Fig C.. : BrWr, SelB= x: RegDst,, Others: s ype RExec : RegDst SelB= Op=ype x:, Op=ype : RegDst, sela SelB= x:, Op=Sub SelB= x:, MemReg RegDst, : WrCond Exec Op=Or :, Finish Op=Or x:, : Next Iteration: Using Microprogram for Representation Initial Representation Finite State Diagram Microprogram Sequencing Explicit Next State Microprogram counter Function + Dispatch ROMs Logic Representation Logic Equations Truth Tables Implementation Technique PLA ROM hardwired control microprogrammed control ROM can be thought of as a sequence of control words word can be thought of as instruction: microinstruction 7 EEL-7 Ann Gordon - Ross 8 EEL-7 Ann Gordon - Ross Microprogramming is the hard part of processor design Datapath is fairly regular and well-organized is highly regular is irregular and global Microprogramming: -- A particular strategy for implementing the control unit of a processor by "programming" at the level of register transfer operations Macroinstruction Interpretation Main execution unit ADD SUB AND... DATA User program plus Data this can change! one of these is mapped into one of these Microarchitecture: -- Logical structure and functional capabilities of the hardware as seen by the microprogrammer CPU control memory AND microsequence e.g., Fetch Calc Operand Addr Fetch Operand(s) Calculate Save Aner(s) 9 EEL-7 Ann Gordon - Ross 6 EEL-7 Ann Gordon - Ross

16 Microprogramming Pros and Cons Summary: Multicycle Ease of design Flexibility Easy to adapt to changes in organization, timing, technology Can make changes late in design cycle, or even in the field Can implement very powerful instruction sets (just more control memory) Generality Can implement multiple instruction sets on same machine. Can tailor instruction set to application. Compatibility Many organizations, same instruction set Costly to implement Slow Microprogramming and hardwired control have many similarities, perhaps biggest difference is initial representation and ease of change of implementation, with ROM generally being easier than PLA Initial Representation Finite State Diagram Microprogram Sequencing Explicit Next State Microprogram counter Function + Dispatch ROMs Logic Representation Logic Equations Truth Tables Implementation Technique PLA ROM hardwired control microprogrammed control 6 EEL-7 Ann Gordon - Ross 6 EEL-7 Ann Gordon - Ross

ECE 361 Computer Architecture Lecture 11: Designing a Multiple Cycle Controller. Review of a Multiple Cycle Implementation

ECE 361 Computer Architecture Lecture 11: Designing a Multiple Cycle Controller. Review of a Multiple Cycle Implementation ECE 6 Computer Architecture Lecture : Designing a Multiple Cycle ler 6 multicontroller. Review of a Multiple Cycle Implementation The root of the single cycle processor s problems: The cycle time has to

More information

ECE 361 Computer Architecture Lecture 10: Designing a Multiple Cycle Processor

ECE 361 Computer Architecture Lecture 10: Designing a Multiple Cycle Processor ECE 6 Computer Architecture Lecture : Designing a Multiple Cycle Processor 6 multipath.. Recap: A Single Cycle Datapath We have everything except control signals (underline) RegDst Today s lecture will

More information

361 multipath..1. EECS 361 Computer Architecture Lecture 10: Designing a Multiple Cycle Processor

361 multipath..1. EECS 361 Computer Architecture Lecture 10: Designing a Multiple Cycle Processor 36 multipath.. EECS 36 Computer Architecture Lecture : Designing a Multiple Cycle Processor Recap: A Single Cycle Datapath We have everything except control signals (underline) Today s lecture will show

More information

ECE4680. Computer Organization and Architecture. Designing a Multiple Cycle Processor

ECE4680. Computer Organization and Architecture. Designing a Multiple Cycle Processor ECE68 Computer Organization and Architecture Designing a Multiple Cycle Processor ECE68 Multipath. -- op 6 Instr RegDst A Single Cycle Processor busw RegWr Main imm6 Instr Rb -bit Registers 6 op

More information

ECE468. Computer Organization and Architecture. Designing a Multiple Cycle Processor

ECE468. Computer Organization and Architecture. Designing a Multiple Cycle Processor ECE68 Computer Organization and Architecture Designing a Multiple Cycle Processor ECE68 multipath.. op 6 Instr RegDst A Single Cycle Processor busw RegWr Main imm6 Instr Rb -bit Registers 6 op RegDst

More information

ECE468 Computer Organization and Architecture. Designing a Multiple Cycle Controller

ECE468 Computer Organization and Architecture. Designing a Multiple Cycle Controller ECE468 Computer Organization and Architecture Designing a Multiple Cycle Controller ECE468 multicontroller Review of a Multiple Cycle Implementation The root of the single cycle processor s problems: The

More information

CpE 442. Designing a Multiple Cycle Controller

CpE 442. Designing a Multiple Cycle Controller CpE 442 Designing a Multiple Cycle Controller CPE 442 multicontroller.. Outline of Today s Lecture Recap (5 minutes) Review of FSM control (5 minutes) From Finite State Diagrams to Microprogramming (25

More information

ECE4680. Computer Organization and Architecture. Designing a Multiple Cycle Processor

ECE4680. Computer Organization and Architecture. Designing a Multiple Cycle Processor ECE468 Computer Organization and Architecture Designing a Multiple Cycle Processor ECE468 Multipath. -- Start X:4 op 6 Instr RegDst A Single Cycle Processor busw RegWr Clk Main imm6 Instr Rb -bit

More information

CS152 Computer Architecture and Engineering Lecture 13: Microprogramming and Exceptions. Review of a Multiple Cycle Implementation

CS152 Computer Architecture and Engineering Lecture 13: Microprogramming and Exceptions. Review of a Multiple Cycle Implementation CS152 Computer Architecture and Engineering Lecture 13: Microprogramming and Exceptions March 3, 1995 Dave Patterson (patterson@cs) and Shing Kong (shing.kong@eng.sun.com) Slides available on http://http.cs.berkeley.edu/~patterson

More information

Recap: A Single Cycle Datapath. CS 152 Computer Architecture and Engineering Lecture 8. Single-Cycle (Con t) Designing a Multicycle Processor

Recap: A Single Cycle Datapath. CS 152 Computer Architecture and Engineering Lecture 8. Single-Cycle (Con t) Designing a Multicycle Processor CS 52 Computer Architecture and Engineering Lecture 8 Single-Cycle (Con t) Designing a Multicycle Processor February 23, 24 John Kubiatowicz (www.cs.berkeley.edu/~kubitron) lecture slides: http://inst.eecs.berkeley.edu/~cs52/

More information

Designing a Multicycle Processor

Designing a Multicycle Processor Designing a Multicycle Processor Arquitectura de Computadoras Arturo Díaz D PérezP Centro de Investigación n y de Estudios Avanzados del IPN adiaz@cinvestav.mx Arquitectura de Computadoras Multicycle-

More information

CPU Design Steps. EECC550 - Shaaban

CPU Design Steps. EECC550 - Shaaban CPU Design Steps 1. Analyze instruction set operations using independent RTN => datapath requirements. 2. Select set of datapath components & establish clock methodology. 3. Assemble datapath meeting the

More information

CS 152 Computer Architecture and Engineering. Lecture 10: Designing a Multicycle Processor

CS 152 Computer Architecture and Engineering. Lecture 10: Designing a Multicycle Processor CS 152 Computer Architecture and Engineering Lecture 1: Designing a Multicycle Processor October 1, 1997 Dave Patterson (http.cs.berkeley.edu/~patterson) lecture slides: http://www-inst.eecs.berkeley.edu/~cs152/

More information

Initial Representation Finite State Diagram Microprogram. Sequencing Control Explicit Next State Microprogram counter

Initial Representation Finite State Diagram Microprogram. Sequencing Control Explicit Next State Microprogram counter Control Implementation Alternatives Control may be designed using one of several initial representations. The choice of sequence control, and how logic is represented, can then be determined independently;

More information

Major CPU Design Steps

Major CPU Design Steps Datapath Major CPU Design Steps. Analyze instruction set operations using independent RTN ISA => RTN => datapath requirements. This provides the the required datapath components and how they are connected

More information

CS152 Computer Architecture and Engineering. Lecture 8 Multicycle Design and Microcode John Lazzaro (www.cs.berkeley.

CS152 Computer Architecture and Engineering. Lecture 8 Multicycle Design and Microcode John Lazzaro (www.cs.berkeley. CS152 Computer Architecture and Engineering Lecture 8 Multicycle Design and Microcode 2004-09-23 John Lazzaro (www.cs.berkeley.edu/~lazzaro) Dave Patterson (www.cs.berkeley.edu/~patterson) www-inst.eecs.berkeley.edu/~cs152/

More information

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

The Big Picture: Where are We Now? EEM 486: Computer Architecture. Lecture 3. Designing a Single Cycle Datapath The Big Picture: Where are We Now? EEM 486: Computer Architecture Lecture 3 The Five Classic Components of a Computer Processor Input Control Memory Designing a Single Cycle path path Output Today s Topic:

More information

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

361 datapath.1. Computer Architecture EECS 361 Lecture 8: Designing a Single Cycle Datapath 361 datapath.1 Computer Architecture EECS 361 Lecture 8: Designing a Single Cycle Datapath Outline of Today s Lecture Introduction Where are we with respect to the BIG picture? Questions and Administrative

More information

COMP303 Computer Architecture Lecture 9. Single Cycle Control

COMP303 Computer Architecture Lecture 9. Single Cycle Control COMP33 Computer Architecture Lecture 9 Single Cycle Control A Single Cycle Datapath We have everything except control signals (underlined) RegDst busw Today s lecture will look at how to generate the control

More information

CC 311- Computer Architecture. The Processor - Control

CC 311- Computer Architecture. The Processor - Control CC 311- Computer Architecture The Processor - Control Control Unit Functions: Instruction code Control Unit Control Signals Select operations to be performed (ALU, read/write, etc.) Control data flow (multiplexor

More information

ECE468 Computer Organization and Architecture. Designing a Single Cycle Datapath

ECE468 Computer Organization and Architecture. Designing a Single Cycle Datapath ECE468 Computer Organization and Architecture Designing a Single Cycle Datapath ECE468 datapath1 The Big Picture: Where are We Now? The Five Classic Components of a Computer Processor Control Input Datapath

More information

CpE242 Computer Architecture and Engineering Designing a Single Cycle Datapath

CpE242 Computer Architecture and Engineering Designing a Single Cycle Datapath CpE242 Computer Architecture and Engineering Designing a Single Cycle Datapath CPE 442 single-cycle datapath.1 Outline of Today s Lecture Recap and Introduction Where are we with respect to the BIG picture?

More information

The Big Picture: Where are We Now? CS 152 Computer Architecture and Engineering Lecture 11. The Five Classic Components of a Computer

The Big Picture: Where are We Now? CS 152 Computer Architecture and Engineering Lecture 11. The Five Classic Components of a Computer The Big Picture: Where are We Now? S 5 omputer Architecture and ngineering Lecture Multicycle ontroller esign (ontinued) The Five lassic omponents of a omputer Processor Input ontrol atapath Output Today

More information

CENG 3420 Lecture 06: Datapath

CENG 3420 Lecture 06: Datapath CENG 342 Lecture 6: Datapath Bei Yu byu@cse.cuhk.edu.hk CENG342 L6. Spring 27 The Processor: Datapath & Control q We're ready to look at an implementation of the MIPS q Simplified to contain only: memory-reference

More information

Initial Representation Finite State Diagram. Logic Representation Logic Equations

Initial Representation Finite State Diagram. Logic Representation Logic Equations Control Implementation Alternatives Control may be designed using one of several initial representations. The choice of sequence control, and how logic is represented, can then be determined independently;

More information

CPU Organization (Design)

CPU Organization (Design) ISA Requirements CPU Organization (Design) Datapath Design: Capabilities & performance characteristics of principal Functional Units (FUs) needed by ISA instructions (e.g., Registers, ALU, Shifters, Logic

More information

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

COMP303 - Computer Architecture Lecture 8. Designing a Single Cycle Datapath COMP33 - Computer Architecture Lecture 8 Designing a Single Cycle Datapath The Big Picture The Five Classic Components of a Computer Processor Input Control Memory Datapath Output The Big Picture: The

More information

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

CENG 3420 Computer Organization and Design. Lecture 06: MIPS Processor - I. Bei Yu CENG 342 Computer Organization and Design Lecture 6: MIPS Processor - I Bei Yu CEG342 L6. Spring 26 The Processor: Datapath & Control q We're ready to look at an implementation of the MIPS q Simplified

More information

Ch 5: Designing a Single Cycle Datapath

Ch 5: Designing a Single Cycle Datapath Ch 5: esigning a Single Cycle path Computer Systems Architecture CS 365 The Big Picture: Where are We Now? The Five Classic Components of a Computer Processor Control Memory path Input Output Today s Topic:

More information

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

Outline. EEL-4713 Computer Architecture Designing a Single Cycle Datapath Outline EEL-473 Computer Architecture Designing a Single Cycle path Introduction The steps of designing a processor path and timing for register-register operations path for logical operations with immediates

More information

Introduction. ENG3380 Computer Organization and Architecture MIPS: Data Path Design Part 3. Topics. References. School of Engineering 1

Introduction. ENG3380 Computer Organization and Architecture MIPS: Data Path Design Part 3. Topics. References. School of Engineering 1 ENG8 Computer Organization and rchitecture MIPS: Data Path Design Part Winter 7 S. reibi School of Engineering University of Guelph Introduction Topics uilding a Complete Data Path for MIPS Multi Cycle

More information

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

361 control.1. EECS 361 Computer Architecture Lecture 9: Designing Single Cycle Control 36 control. EECS 36 Computer Architecture Lecture 9: Designing Single Cycle Control Recap: The MIPS Subset ADD and subtract add rd, rs, rt sub rd, rs, rt OR Imm: ori rt, rs, imm6 3 3 26 2 6 op rs rt rd

More information

CPE 335. Basic MIPS Architecture Part II

CPE 335. Basic MIPS Architecture Part II CPE 335 Computer Organization Basic MIPS Architecture Part II Dr. Iyad Jafar Adapted from Dr. Gheith Abandah slides http://www.abandah.com/gheith/courses/cpe335_s08/index.html CPE232 Basic MIPS Architecture

More information

ECE4680 Computer Organization and Architecture. Designing a Pipeline Processor

ECE4680 Computer Organization and Architecture. Designing a Pipeline Processor ECE468 Computer Organization and Architecture Designing a Pipeline Processor Pipelined processors overlap instructions in time on common execution resources. ECE468 Pipeline. 22-4-3 Start X:4 Branch Jump

More information

Review: Abstract Implementation View

Review: Abstract Implementation View Review: Abstract Implementation View Split memory (Harvard) model - single cycle operation Simplified to contain only the instructions: memory-reference instructions: lw, sw arithmetic-logical instructions:

More information

MIPS-Lite Single-Cycle Control

MIPS-Lite Single-Cycle Control MIPS-Lite Single-Cycle Control COE68: Computer Organization and Architecture Dr. Gul N. Khan http://www.ee.ryerson.ca/~gnkhan Electrical and Computer Engineering Ryerson University Overview Single cycle

More information

Implementing the Control. Simple Questions

Implementing the Control. Simple Questions Simple Questions How many cycles will it take to execute this code? lw $t2, 0($t3) lw $t3, 4($t3) beq $t2, $t3, Label add $t5, $t2, $t3 sw $t5, 8($t3) Label:... #assume not What is going on during the

More information

Hardwired Control Unit Ch 14

Hardwired Control Unit Ch 14 Hardwired Control Unit Ch 14 Micro-operations Controlling Execution Hardwired Control 1 What is Control (2) So far, we have shown what happens inside CPU execution of instructions opcodes, addressing modes,

More information

The overall datapath for RT, lw,sw beq instrucution

The overall datapath for RT, lw,sw beq instrucution Designing The Main Control Unit: Remember the three instruction classes {R-type, Memory, Branch}: a) R-type : Op rs rt rd shamt funct 1.src 2.src dest. 31-26 25-21 20-16 15-11 10-6 5-0 a) Memory : Op rs

More information

Midterm I March 12, 2003 CS152 Computer Architecture and Engineering

Midterm I March 12, 2003 CS152 Computer Architecture and Engineering University of California, Berkeley College of Engineering Computer Science Division EECS Spring 2003 John Kubiatowicz Midterm I March 2, 2003 CS52 Computer Architecture and Engineering Your Name: SID Number:

More information

ECE170 Computer Architecture. Single Cycle Control. Review: 3b: Add & Subtract. Review: 3e: Store Operations. Review: 3d: Load Operations

ECE170 Computer Architecture. Single Cycle Control. Review: 3b: Add & Subtract. Review: 3e: Store Operations. Review: 3d: Load Operations ECE7 Computer Architecture Single Cycle Control Review: 3a: Overview of the Fetch Unit The common operations Fetch the : mem[] Update the program counter: Sequential Code: < + Branch and Jump: < something

More information

The Processor: Datapath & Control

The Processor: Datapath & Control Chapter Five 1 The Processor: Datapath & Control We're ready to look at an implementation of the MIPS Simplified to contain only: memory-reference instructions: lw, sw arithmetic-logical instructions:

More information

Hardwired Control Unit Ch 16

Hardwired Control Unit Ch 16 Hardwired Control Unit Ch 16 Micro-operations Controlling Execution Hardwired Control 1 What is Control (2) So far, we have shown what happens inside CPU execution of instructions opcodes, addressing modes,

More information

EEM 486: Computer Architecture. Lecture 3. Designing Single Cycle Control

EEM 486: Computer Architecture. Lecture 3. Designing Single Cycle Control EEM 48: Computer Architecture Lecture 3 Designing Single Cycle The Big Picture: Where are We Now? Processor Input path Output Lec 3.2 An Abstract View of the Implementation Ideal Address Net Address PC

More information

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

TDT4255 Computer Design. Lecture 4. Magnus Jahre. TDT4255 Computer Design 1 TDT4255 Computer Design Lecture 4 Magnus Jahre 2 Outline Chapter 4.1 to 4.4 A Multi-cycle Processor Appendix D 3 Chapter 4 The Processor Acknowledgement: Slides are adapted from Morgan Kaufmann companion

More information

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

CO Computer Architecture and Programming Languages CAPL. Lecture 18 & 19 CO2-3224 Computer Architecture and Programming Languages CAPL Lecture 8 & 9 Dr. Kinga Lipskoch Fall 27 Single Cycle Disadvantages & Advantages Uses the clock cycle inefficiently the clock cycle must be

More information

Lecture 5 and 6. ICS 152 Computer Systems Architecture. Prof. Juan Luis Aragón

Lecture 5 and 6. ICS 152 Computer Systems Architecture. Prof. Juan Luis Aragón ICS 152 Computer Systems Architecture Prof. Juan Luis Aragón Lecture 5 and 6 Multicycle Implementation Introduction to Microprogramming Readings: Sections 5.4 and 5.5 1 Review of Last Lecture We have seen

More information

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

Full Datapath. CSCI 402: Computer Architectures. The Processor (2) 3/21/19. Fengguang Song Department of Computer & Information Science IUPUI CSCI 42: Computer Architectures The Processor (2) Fengguang Song Department of Computer & Information Science IUPUI Full Datapath Branch Target Instruction Fetch Immediate 4 Today s Contents We have looked

More information

CS3350B Computer Architecture Winter Lecture 5.7: Single-Cycle CPU: Datapath Control (Part 2)

CS3350B Computer Architecture Winter Lecture 5.7: Single-Cycle CPU: Datapath Control (Part 2) CS335B Computer Architecture Winter 25 Lecture 5.7: Single-Cycle CPU: Datapath Control (Part 2) Marc Moreno Maza www.csd.uwo.ca/courses/cs335b [Adapted from lectures on Computer Organization and Design,

More information

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

Mark Redekopp and Gandhi Puvvada, All rights reserved. EE 357 Unit 15. Single-Cycle CPU Datapath and Control EE 37 Unit Single-Cycle CPU path and Control CPU Organization Scope We will build a CPU to implement our subset of the MIPS ISA Memory Reference Instructions: Load Word (LW) Store Word (SW) Arithmetic

More information

Mapping Control to Hardware

Mapping Control to Hardware C A P P E N D I X A custom format such as this is slave to the architecture of the hardware and the instruction set it serves. The format must strike a proper compromise between ROM size, ROM-output decoding,

More information

Midterm I October 6, 1999 CS152 Computer Architecture and Engineering

Midterm I October 6, 1999 CS152 Computer Architecture and Engineering University of California, Berkeley College of Engineering Computer Science Division EECS Fall 1999 John Kubiatowicz Midterm I October 6, 1999 CS152 Computer Architecture and Engineering Your Name: SID

More information

Systems Architecture I

Systems Architecture I Systems Architecture I Topics A Simple Implementation of MIPS * A Multicycle Implementation of MIPS ** *This lecture was derived from material in the text (sec. 5.1-5.3). **This lecture was derived from

More information

CS61C : Machine Structures

CS61C : Machine Structures inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #19 Designing a Single-Cycle CPU 27-7-26 Scott Beamer Instructor AI Focuses on Poker CS61C L19 CPU Design : Designing a Single-Cycle CPU

More information

Lecture 6 Datapath and Controller

Lecture 6 Datapath and Controller Lecture 6 Datapath and Controller Peng Liu liupeng@zju.edu.cn Windows Editor and Word Processing UltraEdit, EditPlus Gvim Linux or Mac IOS Emacs vi or vim Word Processing(Windows, Linux, and Mac IOS) LaTex

More information

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

Lecture Topics. Announcements. Today: Single-Cycle Processors (P&H ) Next: continued. Milestone #3 (due 2/9) Milestone #4 (due 2/23) Lecture Topics Today: Single-Cycle Processors (P&H 4.1-4.4) Next: continued 1 Announcements Milestone #3 (due 2/9) Milestone #4 (due 2/23) Exam #1 (Wednesday, 2/15) 2 1 Exam #1 Wednesday, 2/15 (3:00-4:20

More information

CPE 335 Computer Organization. Basic MIPS Architecture Part I

CPE 335 Computer Organization. Basic MIPS Architecture Part I CPE 335 Computer Organization Basic MIPS Architecture Part I Dr. Iyad Jafar Adapted from Dr. Gheith Abandah slides http://www.abandah.com/gheith/courses/cpe335_s8/index.html CPE232 Basic MIPS Architecture

More information

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

CS 61C: Great Ideas in Computer Architecture. MIPS CPU Datapath, Control Introduction CS 61C: Great Ideas in Computer Architecture MIPS CPU Datapath, Control Introduction Instructor: Alan Christopher 7/28/214 Summer 214 -- Lecture #2 1 Review of Last Lecture Critical path constrains clock

More information

COMP303 - Computer Architecture Lecture 10. Multi-Cycle Design & Exceptions

COMP303 - Computer Architecture Lecture 10. Multi-Cycle Design & Exceptions COP33 - Computer Architecture Lecture ulti-cycle Design & Exceptions Single Cycle Datapath We designed a processor that requires one cycle per instruction RegDst busw 32 Clk RegWr Rd ux imm6 Rt 5 5 Rs

More information

Lecture #17: CPU Design II Control

Lecture #17: CPU Design II Control Lecture #7: CPU Design II Control 25-7-9 Anatomy: 5 components of any Computer Personal Computer Computer Processor Control ( brain ) This week ( ) path ( brawn ) (where programs, data live when running)

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures inst.eecs.berkeley.edu/~cs6c UC Berkeley CS6C : Machine Structures The Internet is broken?! The Clean Slate team at Stanford wants to revamp the Internet, making it safer (from viruses), more reliable

More information

CS 110 Computer Architecture Single-Cycle CPU Datapath & Control

CS 110 Computer Architecture Single-Cycle CPU Datapath & Control CS Computer Architecture Single-Cycle CPU Datapath & Control Instructor: Sören Schwertfeger http://shtech.org/courses/ca/ School of Information Science and Technology SIST ShanghaiTech University Slides

More information

Lecture 8: Control COS / ELE 375. Computer Architecture and Organization. Princeton University Fall Prof. David August

Lecture 8: Control COS / ELE 375. Computer Architecture and Organization. Princeton University Fall Prof. David August Lecture 8: Control COS / ELE 375 Computer Architecture and Organization Princeton University Fall 2015 Prof. David August 1 Datapath and Control Datapath The collection of state elements, computation elements,

More information

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

CS 61C: Great Ideas in Computer Architecture Datapath. Instructors: John Wawrzynek & Vladimir Stojanovic CS 61C: Great Ideas in Computer Architecture Datapath Instructors: John Wawrzynek & Vladimir Stojanovic http://inst.eecs.berkeley.edu/~cs61c/fa15 1 Components of a Computer Processor Control Enable? Read/Write

More information

CS 152 Computer Architecture and Engineering. Lecture 12: Multicycle Controller Design

CS 152 Computer Architecture and Engineering. Lecture 12: Multicycle Controller Design CS 152 Computer Architecture and Engineering Lecture 12: Multicycle Controller Design October 10, 1997 Dave Patterson (http.cs.berkeley.edu/~patterson) lecture slides: http://www-inst.eecs.berkeley.edu/~cs152/

More information

CS359: Computer Architecture. The Processor (A) Yanyan Shen Department of Computer Science and Engineering

CS359: Computer Architecture. The Processor (A) Yanyan Shen Department of Computer Science and Engineering CS359: Computer Architecture The Processor (A) Yanyan Shen Department of Computer Science and Engineering Eecuting R-type Instructions 7 Instructions ADD and subtract add rd, rs, rt sub rd, rs, rt OR Immediate:

More information

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

CSCI 402: Computer Architectures. Fengguang Song Department of Computer & Information Science IUPUI. Today s Content 3/6/8 CSCI 42: Computer Architectures The Processor (2) Fengguang Song Department of Computer & Information Science IUPUI Today s Content We have looked at how to design a Data Path. 4.4, 4.5 We will design

More information

Lecture 5: The Processor

Lecture 5: The Processor Lecture 5: The Processor CSCE 26 Computer Organization Instructor: Saraju P. ohanty, Ph. D. NOTE: The figures, text etc included in slides are borrowed from various books, websites, authors pages, and

More information

Microprogrammed Control Approach

Microprogrammed Control Approach Microprogrammed Control Approach Considering the FSM for our MIPS subset has 10 states, the complete MIPS instruction set, which contains more than 100 instructions, and considering that these instructions

More information

Multicycle conclusion

Multicycle conclusion Multicycle conclusion The last few lectures covered a lot of material! We introduced a multicycle datapath, where different instructions take different numbers of cycles to execute. A multicycle unit is

More information

Processor (I) - datapath & control. Hwansoo Han

Processor (I) - datapath & control. Hwansoo Han Processor (I) - datapath & control Hwansoo Han Introduction CPU performance factors Instruction count - Determined by ISA and compiler CPI and Cycle time - Determined by CPU hardware We will examine two

More information

5.7. Microprogramming: Simplifying Control Design 5.7

5.7. Microprogramming: Simplifying Control Design 5.7 5.7 Microprogramming: Simplifying Control Design 5.7 For the of our simple MIPS subset, a graphical representation of the finite state machine, as in Figure 5.40 on page 345, is certainly adequate. We

More information

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

Review. N-bit adder-subtractor done using N 1- bit adders with XOR gates on input. Lecture #19 Designing a Single-Cycle CPU CS6C L9 CPU Design : Designing a Single-Cycle CPU () insteecsberkeleyedu/~cs6c CS6C : Machine Structures Lecture #9 Designing a Single-Cycle CPU 27-7-26 Scott Beamer Instructor AI Focuses on Poker Review

More information

Single-Cycle Examples, Multi-Cycle Introduction

Single-Cycle Examples, Multi-Cycle Introduction Single-Cycle Examples, ulti-cycle Introduction 1 Today s enu Single cycle examples Single cycle machines vs. multi-cycle machines Why multi-cycle? Comparative performance Physical and Logical Design of

More information

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

ELEC 5200/6200 Computer Architecture and Design Spring 2017 Lecture 4: Datapath and Control ELEC 52/62 Computer Architecture and Design Spring 217 Lecture 4: Datapath and Control Ujjwal Guin, Assistant Professor Department of Electrical and Computer Engineering Auburn University, Auburn, AL 36849

More information

Multicycle Approach. Designing MIPS Processor

Multicycle Approach. Designing MIPS Processor CSE 675.2: Introduction to Computer Architecture Multicycle Approach 8/8/25 Designing MIPS Processor (Multi-Cycle) Presentation H Slides by Gojko Babić and Elsevier Publishing We will be reusing functional

More information

RISC Design: Multi-Cycle Implementation

RISC Design: Multi-Cycle Implementation RISC Design: Multi-Cycle Implementation Virendra Singh Associate Professor Computer Architecture and Dependable Systems Lab Department of Electrical Engineering Indian Institute of Technology Bombay http://www.ee.iitb.ac.in/~viren/

More information

CS 61C: Great Ideas in Computer Architecture Control and Pipelining

CS 61C: Great Ideas in Computer Architecture Control and Pipelining CS 6C: Great Ideas in Computer Architecture Control and Pipelining Instructors: Vladimir Stojanovic and Nicholas Weaver http://inst.eecs.berkeley.edu/~cs6c/sp6 Datapath Control Signals ExtOp: zero, sign

More information

Systems Architecture

Systems Architecture Systems Architecture Lecture 15: A Simple Implementation of MIPS Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan Some or all figures from Computer Organization and Design: The Hardware/Software

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures inst.eecs.berkeley.edu/~cs6c UC Berkeley CS6C : Machine Structures Lecture 26 Single-cycle CPU Control 27-3-2 Exhausted TA Ben Sussman www.icanhascheezburger.com Qutrits Bring Quantum Computers Closer:

More information

Lets Build a Processor

Lets Build a Processor Lets Build a Processor Almost ready to move into chapter 5 and start building a processor First, let s review Boolean Logic and build the ALU we ll need (Material from Appendix B) operation a 32 ALU result

More information

How to design a controller to produce signals to control the datapath

How to design a controller to produce signals to control the datapath ECE48 Computer Organization and Architecture Designing Single Cycle How to design a controller to produce signals to control the datapath ECE48. 2--7 Recap: The MIPS Formats All MIPS instructions are bits

More information

Lecture 10: Control Unit

Lecture 10: Control Unit Lecture 10 What is control? Functional requirements for CPU Control Unit (Ohjausyksikkö) Ch 15-16 [Sta09] (Sta06:16-17) Micro-operations Control signals (Ohjaussignaalit) Hardwired control (Langoitettu

More information

Working on the Pipeline

Working on the Pipeline Computer Science 6C Spring 27 Working on the Pipeline Datapath Control Signals Computer Science 6C Spring 27 MemWr: write memory MemtoReg: ALU; Mem RegDst: rt ; rd RegWr: write register 4 PC Ext Imm6 Adder

More information

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

ﻪﺘﻓﺮﺸﻴﭘ ﺮﺗﻮﻴﭙﻣﺎﻛ يرﺎﻤﻌﻣ MIPS يرﺎﻤﻌﻣ data path and ontrol control معماري كامپيوتر پيشرفته معماري MIPS data path and control abbasi@basu.ac.ir Topics Building a datapath support a subset of the MIPS-I instruction-set A single cycle processor datapath all instruction actions

More information

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

COMPUTER ORGANIZATION AND DESIGN. 5 th Edition. The Hardware/Software Interface. Chapter 4. The Processor COMPUTER ORGANIZATION AND DESIGN The Hardware/Software Interface 5 th Edition Chapter 4 The Processor Introduction CPU performance factors Instruction count Determined by ISA and compiler CPI and Cycle

More information

Topic #6. Processor Design

Topic #6. Processor Design Topic #6 Processor Design Major Goals! To present the single-cycle implementation and to develop the student's understanding of combinational and clocked sequential circuits and the relationship between

More information

Lecture 10: Control Unit

Lecture 10: Control Unit Lecture 10 Control Unit (Ohjausyksikkö) Ch 15-16 [Sta09] (Sta06:16-17) Micro-operations Control signals (Ohjaussignaalit) Hardwired control (Langoitettu ohjaus) Microprogrammed control (Mikro-ohjelmoitu

More information

ENE 334 Microprocessors

ENE 334 Microprocessors ENE 334 Microprocessors Lecture 6: Datapath and Control : Dejwoot KHAWPARISUTH Adapted from Computer Organization and Design, 3 th & 4 th Edition, Patterson & Hennessy, 2005/2008, Elsevier (MK) http://webstaff.kmutt.ac.th/~dejwoot.kha/

More information

Midterm I March 12, 2003 CS152 Computer Architecture and Engineering

Midterm I March 12, 2003 CS152 Computer Architecture and Engineering University of California, Berkeley College of Engineering Computer Science Division EECS Spring 23 John Kubiatowicz Midterm I March 2, 23 CS2 Computer Architecture and Engineering Your Name: SID Number:

More information

Recap: The MIPS Subset ADD and subtract EEL Computer Architecture shamt funct add rd, rs, rt Single-Cycle Control Logic sub rd, rs, rt

Recap: The MIPS Subset ADD and subtract EEL Computer Architecture shamt funct add rd, rs, rt Single-Cycle Control Logic sub rd, rs, rt Recap: The MIPS Subset EEL-47 - Computer Architecture Single-Cycle Logic ADD and subtract add rd, rs, rt sub rd, rs, rt OR Imm: ori rt, rs, imm 2 rs rt rd shamt t bits 5 bits 5 bits 5 bits 5 bits bits

More information

CSE140: Components and Design Techniques for Digital Systems

CSE140: Components and Design Techniques for Digital Systems CSE4: Components and Design Techniques for Digital Systems Tajana Simunic Rosing Announcements and Outline Check webct grades, make sure everything is there and is correct Pick up graded d homework at

More information

Chapter 5: The Processor: Datapath and Control

Chapter 5: The Processor: Datapath and Control Chapter 5: The Processor: Datapath and Control Overview Logic Design Conventions Building a Datapath and Control Unit Different Implementations of MIPS instruction set A simple implementation of a processor

More information

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

Chapter 4. The Processor. Computer Architecture and IC Design Lab Chapter 4 The Processor Introduction CPU performance factors CPI Clock Cycle Time Instruction count Determined by ISA and compiler CPI and Cycle time Determined by CPU hardware We will examine two MIPS

More information

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

The Processor (1) Jinkyu Jeong Computer Systems Laboratory Sungkyunkwan University 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)

More information

Single Cycle CPU Design. Mehran Rezaei

Single Cycle CPU Design. Mehran Rezaei Single Cycle CPU Design Mehran Rezaei What does it mean? Instruction Fetch Instruction Memory clk pc 32 32 address add $t,$t,$t2 instruction Next Logic to generate the address of next instruction The Branch

More information

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

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

More information

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

Chapter 4. Instruction Execution. Introduction. CPU Overview. Multiplexers. Chapter 4 The Processor 1. The Processor. COMPUTER ORGANIZATION AND DESIGN The Hardware/Software Interface 5 th Edition COMPUTER ORGANIZATION AND DESIGN The Hardware/Software Interface 5 th Edition Chapter 4 The Processor The Processor - Introduction

More information

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

Chapter 4 The Processor 1. Chapter 4A. The Processor Chapter 4 The Processor 1 Chapter 4A The Processor Chapter 4 The Processor 2 Introduction CPU performance factors Instruction count Determined by ISA and compiler CPI and Cycle time Determined by CPU hardware

More information

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

Computer and Information Sciences College / Computer Science Department The Processor: Datapath and Control Computer and Information Sciences College / Computer Science Department The Processor: Datapath and Control Chapter 5 The Processor: Datapath and Control Big Picture: Where are We Now? Performance of a

More information