Dynamic Scheduling II

Total Page:16

File Type:pdf, Size:1020Kb

Dynamic Scheduling II This Unit: Dynamic Scheduling II Application • Previously: dynamic scheduling OS • Insn buffer + scheduling algorithms Compiler Firmware CIS 501 • Scoreboard: no register renaming • Tomasulo: register renaming Introduction to Computer Architecture CPU I/O Memory • Now: add speculation, precise state Digital Circuits • Re-order buffer Unit 9: Dynamic Scheduling II Gates & Transistors • PentiumPro vs. MIPS R10000 • Also: dynamic load scheduling • Out-of-order memory operations CIS 501 (Martin/Roth): Dynamic Scheduling II 1 CIS 501 (Martin/Roth): Dynamic Scheduling II 2 Readings Superscalar + Out-of-Order + Speculation • H+P • Three great tastes that taste great together • None (not happy with explanation of this topic) • CPI ! 1? • Go superscalar • Superscalar increases RAW hazards? • Go out-of-order (OoO) • RAW hazards still a problem? • Build a larger window • Branches a problem for filling large window? • Add control speculation CIS 501 (Martin/Roth): Dynamic Scheduling II 3 CIS 501 (Martin/Roth): Dynamic Scheduling II 4 Speculation and Precise Interrupts Precise State • Why are we discussing these together? • Speculative execution requires • Sequential (vN) semantics for interrupts • (Ability to) abort & restart at every branch • All insns before interrupt should be complete • Abort & restart at every load useful for load speculation (later) • All insns after interrupt should look as if never started (abort) • And for shared memory multiprocessing (much later) • Basically want same thing for mis-predicted branch • Precise synchronous (program-internal) interrupts require • What makes precise interrupts difficult? • Abort & restart at every load, store, ?? • OoO completion ! must undo post-interrupt writebacks • Precise asynchronous (external) interrupts require • Same thing for branches • Abort & restart at every ?? • In-order ! branches complete before younger insns writeback • OoO ! not necessarily • Bite the bullet • Implement abort & restart at every insn • Precise interrupts, mis-speculation recovery: same problem • Called “precise state” • Same problem ! same solution CIS 501 (Martin/Roth): Dynamic Scheduling II 5 CIS 501 (Martin/Roth): Dynamic Scheduling II 6 Precise State Options The Problem with Precise State • Imprecise state: ignore the problem! insn buffer – Makes page faults (any restartable exceptions) difficult – Makes speculative execution almost impossible regfile • IEEE standard strongly suggests precise state I$ D$ • Compromise: Alpha implemented precise state only for integer ops B P D S • Force in-order completion (W): stall pipe if necessary – Slow • Precise state in software: trap to recovery routine • Problem: writeback combines two separate functions – Implementation dependent • Forwards values to younger insns: OK for this to be out-of-order • Trap on every mis-predicted branch (you must be joking) • Write values to registers: would like this to be in-order • Precise state in hardware • Similar problem (decode) for OoO execution: solution? + Everything is better in hardware (except policy) • Split decode (D) ! in-order dispatch (D) + out-of-order issue (S) • Separate using insn buffer: scoreboard or reservation station CIS 501 (Martin/Roth): Dynamic Scheduling II 7 CIS 501 (Martin/Roth): Dynamic Scheduling II 8 Re-Order Buffer (ROB) Complete and Retire Reorder buffer (ROB) Reorder buffer (ROB) regfile regfile I$ I$ D$ D$ B B P W1 W2 P C R • Insn buffer ! re-order buffer (ROB) • Complete (C): second part of decode • Buffers completed results en route to register file • Completed insns write results into ROB • May be combined with RS or separate + Out-of-order: wait doesn’t back-propagate to younger insns • Combined in picture: register-update unit RUU (Sohi’s method) • Retire (R): aka commit, graduate • Separate (more common today): P6-style • ROB writes results to register file • Split writeback (W) into two stages • In order: stall back-propagates to younger insns • Why is there no latch between W1 and W2? CIS 501 (Martin/Roth): Dynamic Scheduling II 9 CIS 501 (Martin/Roth): Dynamic Scheduling II 10 Load/Store Queue (LSQ) ROB + LSQ • ROB makes register writes in-order, but what about stores? ROB regfile • As usual, i.e., to D$ in X stage? I$ • Not even close, imprecise memory worse than imprecise registers B P C R • Load/store queue (LSQ) load data • Completed stores write to LSQ store data addr • When store retires, head of LSQ written to D$ D$ • When loads execute, access LSQ and D$ in parallel load/store LSQ • Forward from LSQ if older store with matching address • More modern design: loads and stores in separate queues • More on this later • Modulo gross simplifications, this picture is almost realistic! CIS 501 (Martin/Roth): Dynamic Scheduling II 11 CIS 501 (Martin/Roth): Dynamic Scheduling II 12 P6 P6 Data Structures • P6: Start with Tomasulo’s algorithm… add ROB • Reservation Stations are same as before • Separate ROB and RS • ROB • head, tail: pointers maintain sequential order • Simple-P6 • R: insn output register, V: insn output value • Our old RS organization: 1 ALU, 1 load, 1 store, 2 3-cycle FP • Tags are different • Tomasulo: RS# ! P6: ROB# • Map Table is different • T+: tag + “ready-in-ROB” bit • T==0 ! Value is ready in regfile • T!=0 ! Value is not ready • T!=0+ ! Value is ready in the ROB CIS 501 (Martin/Roth): Dynamic Scheduling II 13 CIS 501 (Martin/Roth): Dynamic Scheduling II 14 P6 Data Structures P6 Data Structures Regfile ROB Map Table CDB Map Table T+ value R value ht # Insn R V S X C Reg T+ T V Head 1 ldf X(r1),f1 f0 Retire 2 mulf f0,f1,f2 f1 3 stf f2,Z(r1) f2 Tail 4 addi r1,4,r1 r1 Dispatch 5 ldf X(r1),f1 CDB.V op T T1 T2 CDB.T V1 V2 ROB 6 mulf f0,f1,f2 == == == == 7 stf f2,Z(r1) == == Dispatch == == RS Reservation Stations T FU # FU busy op T T1 T2 V1 V2 1 ALU no • Insn fields and status bits 2 LD no • Tags 3 ST no 4 FP1 no • Values 5 FP2 no CIS 501 (Martin/Roth): Dynamic Scheduling II 15 CIS 501 (Martin/Roth): Dynamic Scheduling II 16 P6 Pipeline P6 Pipeline • New pipeline structure: F, D, S, X, C, R • C (complete) • D (dispatch) • Structural hazard (CDB)? wait • Structural hazard (ROB/LSQ/RS) ? Stall • Write value into ROB entry indicated by RS tag • Allocate ROB/LSQ/RS • Mark ROB entry as complete • Set RS tag to ROB# • If not overwritten, mark Map Table entry “ready-in-ROB” bit (+) • Set Map Table entry to ROB# and clear “ready-in-ROB” bit • R (retire) • Read ready registers into RS (from either ROB or Regfile) • Insn at ROB head not complete ? stall • X (execute) • Handle any exceptions • Free RS entry • Write ROB head value to register file • Use to be at W, can be earlier because RS# are not tags • If store, write LSQ head to D$ • Free ROB/LSQ entries CIS 501 (Martin/Roth): Dynamic Scheduling II 17 CIS 501 (Martin/Roth): Dynamic Scheduling II 18 P6 Dispatch (D): Part I P6 Dispatch (D): Part II Regfile Regfile Map Table T+ value R value Map Table T+ value R value Head Head Retire Retire Tail Tail Dispatch Dispatch CDB.V CDB.V op T T1 T2 CDB.T V1 V2 ROB op T T1 T2 CDB.T V1 V2 ROB == == == == == == == == == == == == Dispatch == == Dispatch == == RS RS T FU T FU • RS/ROB full ? stall • Read tags for register inputs from Map Table • Allocate RS/ROB entries, assign ROB# to RS output tag • Tag==0 ! copy value from Regfile (not shown) • Set output register Map Table entry to ROB#, clear “ready-in-ROB” • Tag!=0 ! copy Map Table tag to RS • Tag!=0+ ! copy value from ROB CIS 501 (Martin/Roth): Dynamic Scheduling II 19 CIS 501 (Martin/Roth): Dynamic Scheduling II 20 P6 Complete (C) P6 Retire (R) Regfile Regfile Map Table T+ value R value Map Table T value R value Head Head Retire Retire Tail Tail Dispatch Dispatch CDB.V CDB.V op T T1 T2 CDB.T V1 V2 ROB op T T1 T2 CDB.T V1 V2 ROB == == == == == == == == == == == == Dispatch == == Dispatch == == RS RS T FU T FU • Structural hazard (CDB) ? Stall : broadcast <value,tag> on CDB • ROB head not complete ? stall : free ROB entry • Write result into ROB, if still valid clear MapTable “ready-in-ROB” bit • Write ROB head result to Regfile • Match tags, write CDB.V into RS slots of dependent insns • If still valid, clear Map Table entry CIS 501 (Martin/Roth): Dynamic Scheduling II 21 CIS 501 (Martin/Roth): Dynamic Scheduling II 22 P6: Cycle 1 P6: Cycle 2 ROB Map Table CDB ROB Map Table CDB ht # Insn R V S X C Reg T+ T V ht # Insn R V S X C Reg T+ T V ht 1 ldf X(r1),f1 f1 f0 h 1 ldf X(r1),f1 f1 c2 f0 2 mulf f0,f1,f2 f1 ROB#1 t 2 mulf f0,f1,f2 f2 f1 ROB#1 3 stf f2,Z(r1) f2 3 stf f2,Z(r1) f2 ROB#2 4 addi r1,4,r1 r1 4 addi r1,4,r1 r1 5 ldf X(r1),f1 5 ldf X(r1),f1 6 mulf f0,f1,f2 6 mulf f0,f1,f2 7 stf f2,Z(r1) 7 stf f2,Z(r1) Reservation Stations Reservation Stations # FU busy op T T1 T2 V1 V2 set ROB# tag # FU busy op T T1 T2 V1 V2 set ROB# tag 1 ALU no 1 ALU no 2 LD yes ldf ROB#1 [r1] allocate 2 LD yes ldf ROB#1 [r1] 3 ST no 3 ST no 4 FP1 no 4 FP1 yes mulf ROB#2 ROB#1 [f0] allocate 5 FP2 no 5 FP2 no CIS 501 (Martin/Roth): Dynamic Scheduling II 23 CIS 501 (Martin/Roth): Dynamic Scheduling II 24 P6: Cycle 3 P6: Cycle 4 ROB Map Table CDB ROB Map Table CDB ht # Insn R V S X C Reg T+ T V ht # Insn R V S X C Reg T+ T V h 1 ldf X(r1),f1 f1 c2 c3 f0 h 1 ldf X(r1),f1 f1 [f1] c2 c3 c4 f0 ROB#1 [f1] 2 mulf f0,f1,f2 f2 f1 ROB#1 2 mulf f0,f1,f2 f2 c4 f1 ROB#1+ t 3 stf f2,Z(r1) f2 ROB#2 3 stf f2,Z(r1) f2 ROB#2 4 addi r1,4,r1 r1 t 4 addi r1,4,r1 r1 r1 ROB#4 5 ldf X(r1),f1 5 ldf X(r1),f1 ldf finished 6 mulf f0,f1,f2 6 mulf f0,f1,f2 1.
Recommended publications
  • Review Memory Disambiguation Review Explicit Register Renaming
    5HYLHZ5HRUGHU%XIIHU 52% &6 *UDGXDWH&RPSXWHU$UFKLWHFWXUH 8VHRIUHRUGHUEXIIHU /HFWXUH ² ,QRUGHULVVXH2XWRIRUGHUH[HFXWLRQ,QRUGHUFRPPLW ² +ROGVUHVXOWVXQWLOWKH\FDQEHFRPPLWWHGLQRUGHU ,QVWUXFWLRQ/HYHO3DUDOOHOLVP ª 6HUYHVDVVRXUFHRIYDOXHVXQWLOLQVWUXFWLRQVFRPPLWWHG ² 3URYLGHVVXSSRUWIRUSUHFLVHH[FHSWLRQV6SHFXODWLRQVLPSO\WKURZRXW *HWWLQJWKH&3, LQVWUXFWLRQVODWHUWKDQH[FHSWHGLQVWUXFWLRQ ² &RPPLWVXVHUYLVLEOHVWDWHLQLQVWUXFWLRQRUGHU ² 6WRUHVVHQWWRPHPRU\V\VWHPRQO\ZKHQWKH\UHDFKKHDGRIEXIIHU 6HSWHPEHU ,Q2UGHU&RPPLW LVLPSRUWDQWEHFDXVH 3URI-RKQ.XELDWRZLF] ² $OORZVWKHJHQHUDWLRQRISUHFLVHH[FHSWLRQV ² $OORZVVSHFXODWLRQDFURVVEUDQFKHV &6.XELDWRZLF] &6.XELDWRZLF] /HF /HF 5HYLHZ0HPRU\'LVDPELJXDWLRQ 5HYLHZ([SOLFLW5HJLVWHU5HQDPLQJ 4XHVWLRQ*LYHQDORDGWKDWIROORZVDVWRUHLQSURJUDP 0DNHXVHRIDSK\VLFDO UHJLVWHUILOHWKDWLVODUJHUWKDQ RUGHUDUHWKHWZRUHODWHG" QXPEHURIUHJLVWHUVVSHFLILHGE\,6$ ² 7U\LQJWRGHWHFW5$:KD]DUGVWKURXJKPHPRU\ .H\LQVLJKW$OORFDWHDQHZSK\VLFDOGHVWLQDWLRQUHJLVWHU ² 6WRUHVFRPPLWLQRUGHU 52% VRQR:$5:$:PHPRU\KD]DUGV IRUHYHU\LQVWUXFWLRQWKDWZULWHV ,PSOHPHQWDWLRQ ² 5HPRYHVDOOFKDQFHRI:$5RU:$:KD]DUGV ² .HHSTXHXHRIVWRUHVLQSURJRUGHU ² 6LPLODUWRFRPSLOHUWUDQVIRUPDWLRQFDOOHG6WDWLF6LQJOH$VVLJQPHQW ² :DWFKIRUSRVLWLRQRIQHZORDGVUHODWLYHWRH[LVWLQJVWRUHV ª /LNHKDUGZDUHEDVHGG\QDPLFFRPSLODWLRQ" :KHQKDYHDGGUHVVIRUORDGFKHFNVWRUHTXHXH 0HFKDQLVP".HHSDWUDQVODWLRQWDEOH ² ,IDQ\ VWRUHSULRUWRORDGLVZDLWLQJIRULWVDGGUHVVVWDOOORDG ² ,6$UHJLVWHU⇒ SK\VLFDOUHJLVWHUPDSSLQJ ² ,IORDGDGGUHVVPDWFKHVHDUOLHUVWRUHDGGUHVV DVVRFLDWLYHORRNXS ² :KHQUHJLVWHUZULWWHQUHSODFHHQWU\ZLWKQHZUHJLVWHUIURPIUHHOLVW WKHQZHKDYHDPHPRU\LQGXFHG
    [Show full text]
  • ARM Cortex-A* Brian Eccles, Riley Larkins, Kevin Mee, Fred Silberberg, Alex Solomon, Mitchell Wills
    ARM Cortex-A* Brian Eccles, Riley Larkins, Kevin Mee, Fred Silberberg, Alex Solomon, Mitchell Wills The ARM Cortex­A product line has changed significantly since the introduction of the Cortex­A8 in 2005. ARM’s next major leap came with the Cortex­A9 which was the first design to incorporate multiple cores. The next advance was the development of the big.LITTLE architecture, which incorporates both high performance (A15) and high efficiency(A7) cores. Most recently the A57 and A53 have added 64­bit support to the product line. The ARM Cortex series cores are all made up of the main processing unit, a L1 instruction cache, a L1 data cache, an advanced SIMD core and a floating point core. Each processor then has an additional L2 cache shared between all cores (if there are multiple), debug support and an interface bus for communicating with the rest of the system. Multi­core processors (such as the A53 and A57) also include additional hardware to facilitate coherency between cores. The ARM Cortex­A57 is a 64­bit processor that supports 1 to 4 cores. The instruction pipeline in each core supports fetching up to three instructions per cycle to send down the pipeline. The instruction pipeline is made up of a 12 stage in order pipeline and a collection of parallel pipelines that range in size from 3 to 15 stages as seen below. The ARM Cortex­A53 is similar to the A57, but is designed to be more power efficient at the cost of processing power. The A57 in order pipeline is made up of 5 stages of instruction fetch and 7 stages of instruction decode and register renaming.
    [Show full text]
  • Out-Of-Order Execution & Register Renaming
    Asanovic/Devadas Spring 2002 6.823 Out-of-Order Execution & Register Renaming Krste Asanovic Laboratory for Computer Science Massachusetts Institute of Technology Asanovic/Devadas Spring 2002 6.823 Scoreboard for In-order Issue Busy[unit#] : a bit-vector to indicate unit’s availability. (unit = Int, Add, Mult, Div) These bits are hardwired to FU's. WP[reg#] : a bit-vector to record the registers for which writes are pending Issue checks the instruction (opcode dest src1 src2) against the scoreboard (Busy & WP) to dispatch FU available? not Busy[FU#] RAW? WP[src1] or WP[src2] WAR? cannot arise WAW? WP[dest] Asanovic/Devadas Spring 2002 Out-of-Order Dispatch 6.823 ALU Mem IF ID Issue WB Fadd Fmul • Issue stage buffer holds multiple instructions waiting to issue. • Decode adds next instruction to buffer if there is space and the instruction does not cause a WAR or WAW hazard. • Any instruction in buffer whose RAW hazards are satisfied can be dispatched (for now, at most one dispatch per cycle). On a write back (WB), new instructions may get enabled. Asanovic/Devadas Spring 2002 6.823 Out-of-Order Issue: an example latency 1 LD F2, 34(R2) 1 1 2 2 LD F4, 45(R3) long 3 MULTD F6, F4, F2 3 4 3 4 SUBD F8, F2, F2 1 5 5 DIVD F4, F2, F8 4 6 ADDD F10, F6, F4 1 6 In-order: 1 (2,1) . 2 3 4 4 3 5 . 5 6 6 Out-of-order: 1 (2,1) 4 4 . 2 3 . 3 5 .
    [Show full text]
  • Dynamic Register Renaming Through Virtual-Physical Registers
    Dynamic Register Renaming Through Virtual-Physical Registers † Teresa Monreal [email protected] Antonio González* [email protected] Mateo Valero* [email protected] †† José González [email protected] † Víctor Viñals [email protected] †Departamento de Informática e Ing. de Sistemas. Centro Politécnico Superior - Univ. de Zaragoza, Zaragoza, Spain. *Departament d’ Arquitectura de Computadors. Universitat Politècnica de Catalunya, Barcelona, Spain. ††Departamento de Ingeniería y Tecnología de Computadores. Universidad de Murcia, Murcia, Spain. Abstract Register file access time represents one of the critical delays of current microprocessors, and it is expected to become more critical as future processors increase the instruction window size and the issue width. This paper present a novel dynamic register renaming scheme that delays the allocation of physical registers until a late stage in the pipeline. We show that it can provide important savings in number of physical registers so it can significantly shorter the register file access time. Delaying the allocation of physical registers requires some artifact to keep track of dependences. This is achieved by introducing the concept of virtual-physical registers, which are tags that do not require any storage location. The proposed renaming scheme shortens the average number of cycles that each physical register is allocated, and allows for an early execution of instructions since they can obtain a physical register for its destination earlier than with the conventional scheme. Early execution is especially beneficial for branches and memory operations, since the former can be resolved earlier and the latter can prefetch their data in advance. 1. Introduction Dynamically-scheduled superscalar processors exploit instruction-level parallelism (ILP) by overlapping the execution of instructions in an instruction window.
    [Show full text]
  • Computer Architecture Out-Of-Order Execution
    Computer Architecture Out-of-order Execution By Yoav Etsion With acknowledgement to Dan Tsafrir, Avi Mendelson, Lihu Rappoport, and Adi Yoaz 1 Computer Architecture 2013– Out-of-Order Execution The need for speed: Superscalar • Remember our goal: minimize CPU Time CPU Time = duration of clock cycle × CPI × IC • So far we have learned that in order to Minimize clock cycle ⇒ add more pipe stages Minimize CPI ⇒ utilize pipeline Minimize IC ⇒ change/improve the architecture • Why not make the pipeline deeper and deeper? Beyond some point, adding more pipe stages doesn’t help, because Control/data hazards increase, and become costlier • (Recall that in a pipelined CPU, CPI=1 only w/o hazards) • So what can we do next? Reduce the CPI by utilizing ILP (instruction level parallelism) We will need to duplicate HW for this purpose… 2 Computer Architecture 2013– Out-of-Order Execution A simple superscalar CPU • Duplicates the pipeline to accommodate ILP (IPC > 1) ILP=instruction-level parallelism • Note that duplicating HW in just one pipe stage doesn’t help e.g., when having 2 ALUs, the bottleneck moves to other stages IF ID EXE MEM WB • Conclusion: Getting IPC > 1 requires to fetch/decode/exe/retire >1 instruction per clock: IF ID EXE MEM WB 3 Computer Architecture 2013– Out-of-Order Execution Example: Pentium Processor • Pentium fetches & decodes 2 instructions per cycle • Before register file read, decide on pairing Can the two instructions be executed in parallel? (yes/no) u-pipe IF ID v-pipe • Pairing decision is based… On data
    [Show full text]
  • Hardware-Sensitive Database Operations - II
    Faculty of Computer Science Database and Software Engineering Group Hardware-Sensitive Database Operations - II Balasubramanian (Bala) Gurumurthy Advanced Topics in Databases, 2019/May/17 Otto-von-Guericke University of Magdeburg So Far... ● Hardware evolution and current challenges ● Hardware-oblivious vs. hardware-sensitive programming ● Pipelining in RISC computing ● Pipeline Hazards ○ Structural hazard ○ Data hazard ○ Control hazard ● Resolving hazards ○ Loop-Unrolling ○ Predication Bala Gurumurthy | Hardware-Sensitive Database Operations Part II We will see ● Vectorization ○ SIMD Execution ○ SIMD in DBMS Operation ● GPUs in DBMSs ○ Processing Model ○ Handling Synchronization Bala Gurumurthy | Hardware-Sensitive Database Operations Vectorization Leveraging Modern Processing Capabilities Hardware Parallelism One we know already: Pipelining ● Separate chip regions for individual tasks to execute independently ● Advantage: parallelism + sequential execution semantics ● We discussed problems of hazards ● VLSI tech. limits degree up to which pipelining is feasible [Kaeslin, 2008] Bala Gurumurthy | Hardware-Sensitive Database Operations Hardware Parallelism Chip area can be used for other types of parallelism: Computer systems typically use identical hardware circuits, but their function may be controlled by different instruction stream Si: Bala Gurumurthy | Hardware-Sensitive Database Operations Special instances Example of this architecture? Bala Gurumurthy | Hardware-Sensitive Database Operations Special instances Example of this architecture?
    [Show full text]
  • Trends in Processor Architecture
    A. González Trends in Processor Architecture Trends in Processor Architecture Antonio González Universitat Politècnica de Catalunya, Barcelona, Spain 1. Past Trends Processors have undergone a tremendous evolution throughout their history. A key milestone in this evolution was the introduction of the microprocessor, term that refers to a processor that is implemented in a single chip. The first microprocessor was introduced by Intel under the name of Intel 4004 in 1971. It contained about 2,300 transistors, was clocked at 740 KHz and delivered 92,000 instructions per second while dissipating around 0.5 watts. Since then, practically every year we have witnessed the launch of a new microprocessor, delivering significant performance improvements over previous ones. Some studies have estimated this growth to be exponential, in the order of about 50% per year, which results in a cumulative growth of over three orders of magnitude in a time span of two decades [12]. These improvements have been fueled by advances in the manufacturing process and innovations in processor architecture. According to several studies [4][6], both aspects contributed in a similar amount to the global gains. The manufacturing process technology has tried to follow the scaling recipe laid down by Robert N. Dennard in the early 1970s [7]. The basics of this technology scaling consists of reducing transistor dimensions by a factor of 30% every generation (typically 2 years) while keeping electric fields constant. The 30% scaling in the dimensions results in doubling the transistor density (doubling transistor density every two years was predicted in 1975 by Gordon Moore and is normally referred to as Moore’s Law [21][22]).
    [Show full text]
  • WCAE 2003 Workshop on Computer Architecture Education
    WCAE 2003 Proceedings of the Workshop on Computer Architecture Education in conjunction with The 30th International Symposium on Computer Architecture DQG 2003 Federated Computing Research Conference Town and Country Resort and Convention Center b San Diego, California June 8, 2003 Workshop on Computer Architecture Education Sunday, June 8, 2003 Session 1. Welcome and Keynote 8:45–10:00 8:45 Welcome Edward F. Gehringer, workshop organizer 8:50 Keynote address, “Teaching and teaching computer Architecture: Two very different topics (Some opinions about each),” Yale Patt, teacher, University of Texas at Austin 1 Break 10:00–10:30 Session 2. Teaching with New Architectures 10:30–11:20 10:30 “Intel Itanium floating-point architecture,” Marius Cornea, John Harrison, and Ping Tak Peter Tang, Intel Corp. ................................................................................................................................. 5 10:50 “DOP — A CPU core for teaching basics of computer architecture,” Miloš BeþváĜ, Alois Pluháþek and JiĜí DanƟþek, Czech Technical University in Prague ................................................................. 14 11:05 Discussion Break 11:20–11:30 Session 3. Class Projects 11:30–12:30 11:30 “Superscalar out-of-order demystified in four instructions,” James C. Hoe, Carnegie Mellon University ......................................................................................................................................... 22 11:50 “Bridging the gap between undergraduate and graduate experience in
    [Show full text]
  • MIPS Architecture with Tomasulo Algorithm [12]
    CALIFORNIA STATE UNIVERSITY NORTHRIDGE TOMASULO ARCHITECTURE BASED MIPS PROCESSOR A graduate project submitted in partial fulfilment for the requirement Of the degree of Master of Science In Electrical Engineering By Sameer S Pandit May 2014 The graduate project of Sameer Pandit is approved by: ______________________________________ ____________ Dr. Ali Amini, Ph.D. Date _______________________________________ ____________ Dr. Shahnam Mirzaei, Ph.D. Date _______________________________________ ____________ Dr. Ramin Roosta, Ph.D., Chair Date California State University Northridge ii ACKNOWLEDGEMENT I would like to express my gratitude towards all the members of the project committee and would like to thank them for their continuous support and mentoring me for every step that I have taken towards the completion of this project. Dr. Roosta, for his guidance, Dr. Shahnam for his ideas, and Dr. Ali Amini for his utmost support. I would also like to thank my family and friends for their love, care and support through all the tough times during my graduation. iii Table of Contents SIGNATURE PAGE .......................................................................................................... ii ACKNOWLEDGEMENT ................................................................................................. iii LIST OF FIGURES .......................................................................................................... vii ABSTRACT .......................................................................................................................
    [Show full text]
  • In-Line Interrupt Handling and Lock-Up Free Translation Lookaside Buffers (Tlbs)
    IEEE TRANSACTIONS ON COMPUTERS, VOL. 55, NO. 5, MAY 2006 1 In-Line Interrupt Handling and Lock-Up Free Translation Lookaside Buffers (TLBs) Aamer Jaleel, Student Member, IEEE, and Bruce Jacob, Member, IEEE Abstract—The effects of the general-purpose precise interrupt mechanisms in use for the past few decades have received very little attention. When modern out-of-order processors handle interrupts precisely, they typically begin by flushing the pipeline to make the CPU available to execute handler instructions. In doing so, the CPU ends up flushing many instructions that have been brought in to the reorder buffer. In particular, these instructions may have reached a very deep stage in the pipeline—representing significant work that is wasted. In addition, an overhead of several cycles and wastage of energy (per exception detected) can be expected in refetching and reexecuting the instructions flushed. This paper concentrates on improving the performance of precisely handling software managed translation look-aside buffer (TLB) interrupts, one of the most frequently occurring interrupts. The paper presents a novel method of in-lining the interrupt handler within the reorder buffer. Since the first level interrupt-handlers of TLBs are usually small, they could potentially fit in the reorder buffer along with the user-level code already there. In doing so, the instructions that would otherwise be flushed from the pipe need not be refetched and reexecuted. Additionally, it allows for instructions independent of the exceptional instruction to continue to execute in parallel with the handler code. By in-lining the TLB interrupt handler, this provides lock-up free TLBs.
    [Show full text]
  • Improving the Precise Interrupt Mechanism of Software- Managed TLB Miss Handlers
    Improving the Precise Interrupt Mechanism of Software- Managed TLB Miss Handlers Aamer Jaleel and Bruce Jacob Electrical & Computer Engineering University of Maryland at College Park {ajaleel,blj}@eng.umd.edu Abstract. The effects of the general-purpose precise interrupt mechanisms in use for the past few decades have received very little attention. When modern out-of-order processors handle interrupts precisely, they typically begin by flushing the pipeline to make the CPU available to execute handler instructions. In doing so, the CPU ends up flushing many instructions that have been brought in to the reorder buffer. In par- ticular, many of these instructions have reached a very deep stage in the pipeline - representing significant work that is wasted. In addition, an overhead of several cycles can be expected in re-fetching and re-executing these instructions. This paper concentrates on improving the performance of precisely handling software managed translation lookaside buffer (TLB) interrupts, one of the most frequently occurring interrupts. This paper presents a novel method of in-lining the interrupt handler within the reorder buffer. Since the first level interrupt-handlers of TLBs are usually small, they could potentially fit in the reorder buffer along with the user-level code already there. In doing so, the instructions that would otherwise be flushed from the pipe need not be re-fetched and re-executed. Additionally, it allows for instructions independent of the exceptional instruction to continue to execute in parallel with the handler code. We simulate two different schemes of in-lining the interrupt on a pro- cessor with a 4-way out-of-order core similar to the Alpha 21264.
    [Show full text]
  • Complex Pipelining: Out-Of-Order Execution & Register Renaming
    1 Complex Pipelining: Out-of-Order Execution & Register Renaming Arvind Computer Science and Artificial Intelligence Laboratory M.I.T. Based on the material prepared by Krste Asanovic and Arvind 6.823 L12-2 Arvind In-Order Issue Pipeline ALU Mem IF ID Issue WB Fadd GPR’s FPR’s Fmul Fdiv October 24, 2005 6.823 L12-3 Arvind Scoreboard for In-order Issues Busy[FU#] : a bit-vector to indicate FU’s availability. (FU = Int, Add, Mult, Div) These bits are hardwired to FU's. WP[reg#] : a bit-vector to record the registers for which writes are pending. These bits are set to true by the Issue stage and set to false by the WB stage Issue checks the instruction (opcode dest src1 src2) against the scoreboard (Busy & WP) to dispatch FU available? Busy[FU#] RAW? WP[src1] or WP[src2] WAR? cannot arise WAW? WP[dest] October 24, 2005 6.823 L12-4 Arvind In-Order Issue Limitations: an example latency 1 2 1 LD F2, 34(R2) 1 2 LD F4, 45(R3) long 4 3 3 MULTD F6, F4, F2 3 4 SUBD F8, F2, F2 1 5 5 DIVD F4, F2, F8 4 6 ADDD F10, F6, F4 1 6 In-order: 1 (2,1) . 2 3 4 4 3 5 . 5 6 6 In-order restriction prevents instruction 4 from being dispatched October 24, 2005 6.823 L12-5 Arvind Out-of-Order Issue ALU Mem IF ID Issue WB Fadd Fmul • Issue stage buffer holds multiple instructions waiting to issue. • Decode adds next instruction to buffer if there is space and the instruction does not cause a WAR or WAW hazard.
    [Show full text]