Branch Prediction Slides

Branch Prediction Slides

­1 This Set ­1 Material from Section 4.3 This set under construction. Outline • Branch Prediction Overview • Bimodal (One-Level) Predictor • Correlating (Two-Level) Predictors: local, global, gshare • Other topics to be added. • Sample Problems ­1 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­1 2 ­2 Practice Problems Use problems below to practice material in this set. Some solutions are detailed and are useful for understanding material. Analysis Problems 2017 fep3a: TNTTnnn TnTTtttt bimodal, var pattern len. local. Hist sz. GHR. 2016 fep3a: B2: TNTNTNT N (nn or tt) bimodal. local. min LH 2013 fep3: B1: TNTTTN, B2: TNTrTN, B3: T.. bimodal, local. PHT colli. GHR 2014 fep3: TTTNN, B2: rrrqqq (grps of 3) bimodal. local GHR val 2015 fep3: NTTNNN, B2: T2,4,6NNNN, B3: T.. bimodal, local, min GHR siz 2 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­2 3 ­3 Branch Predictor Variations, and Hardware 2016 fep3 (b) Post-loop branch on global predictor variations. 2017 fep3 (b): Convert illustrated bimodal into local predictor. 2013 fep3b: Draw a digram of local predictor. 3 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­3 4 Branch and Target Prediction ­4 Motivation Branches occur frequently in code. At best, one cycle of branch delay; more with dependencies. Therefore, impact on CPI is large. Techniques Branch Direction Prediction: Predict outcome of branch. (Taken or not taken.) Branch Target Prediction: Predict branch or other CTI’s target address. Note: CTI or Control Transfer Instruction, is any instruction that causes execution to go somewhere else, such as a branch, jump, or trap. 4 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­4 5 Branch Direction Prediction ­5 Methods Covered Simple, One-Level, Predictor bimodal, a.k.a. One-level predictor Commonly used in simpler CPUs. Correlating (Two-Level) Predictors Local History, a.k.a. PAg. Global History, a.k.a. GAg. gshare. Commonly used in general purpose CPUs. 5 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­5 6 Branch Prediction Idea ­6 Idea: Predict using past behavior. Example: LOOP: lw r1, 0(r2) # Load random number, either 0 or 1. addi r2, r2, 4 slt r6, r2, r7 beq r1, r0 SKIP # T N N T N T T T N # Random, no pattern. nop addi r3, r3, 1 SKIP: bne r6, r0 LOOP #TTT ... T N T T T # 99 T’s, 1 N, 99 T’s, ... nop Second branch, bne, taken 99 out of 100 executions. Pattern for bne:TTT ... TNTTT First branch shows no pattern. 6 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­6 7 Prediction Accuracy ­7 SPEC89 benchmarks on IBM POWER (predecessor to PowerPC). 1% nasa7 0% 0% matrix300 0% 1% tomcatv 0% 5% doduc 5% 9% spice 9% SPEC89 benchmarks nasa7 1% 9% fpppp 9% matrix300 0% 12% tomcatv 1% gcc 11% doduc 5% 5% espresso SPEC89 spice 9% 5% benchmarks fpppp 9% 18% eqntott 18% gcc 12% espresso 5% 10% li 10% eqntott 18% 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% li 10% Frequency of mispredictions 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 4096 entries: Unlimited entries: Frequency of mispredictions 2 bits per entry 2 bits per entry 7 FIGURE 4.14 Prediction accuracy of a 4096-entry two-bit LSUprediction EE 4720 Lecturebuffer Transparency.for the Formatted 13:42, 12 AprilFIGURE 2019 fr4.15om lsli12-TeXize. Prediction accuracy of a 4096-entry two-bit prediction buffer versus an ­7 SPEC89 benchmarks. infinite buffer for the SPEC89 benchmarks. 8 Branch Prediction Terminology ­8 Outcome: [of a branch instruction execution]. Whether the branch is taken or not taken. T: A taken branch. Used in diagrams to show branch outcomes. N: A branch that is not taken. Used in diagrams to show branch outcomes. Prediction: The outcome of a branch predicted by a branch predictor. 8 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­8 9 Branch Prediction Terminology ­9 Resolve: [a branch]. To determine whether a branch is taken and if so, to which address. In our 5-stage MIPS this is done in ID. Misprediction: An incorrectly predicted branch. Prediction Accuracy: [of a branch prediction scheme]. The number of correct predictions divided by the number of predictions. 9 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­9 10 Branch Prediction Terminology (Continued) ­10 Speculative Execution: The execution of instructions which may not be on the correct program path (due to a predicted CTI) or which may not be correct for other reasons (such as load/store dependence prediction [a topic that is usually not covered in this class]). Misprediction Recovery: Undoing the effect of speculatively executed instructions ... ... and re-starting instruction fetch at the correct address. 10 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­10 11 ­11 Hardware Overview CTI Info used Predictor to train 0:0 predictor. dcd CTI type Predicted NPC Predicted Branch outcome (T/N) NPC Correct 29:26 msb computed by ALU. lsb 25:0 pinfo pinfo 29:0 CTIt CTIt pinfo + T T 15:0 NPC NPC ALU 25:21 +1 Addr Data rsv Mem 20:16 ALU Port Addr Data rtv Addr Addr D In D D MD PC rtv In Out 2'b0 15:0 format IMM 30 2 immed msb lsb IFAddr ID EXME WB Mem Decode Port dest. reg dst dst dst Data IR Out 11 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­11 12 Bimodal Branch Predictor ­12 Bimodal Branch Predictor: A branch direction predictor that associates a 2-bit counter (just a 2-bit unsigned integer) with each branch. The counter is incremented when the branch is taken and decremented when the branch is not taken. The branch is predicted taken if the counter value is 2 or 3. Example of 2-Bit Counter Used for Four-Iteration Loop In diagram below initial counter value assumed to be zero. #Counter: 01232 3332 3332 3332 beq r1, r2,TARG TTTN TTTN TTTN TTTN # Prediction n n t t t t t t t t t t t t t t # Outcome: x x x x x x 3 Prediction Accuracy: 4 , based on repeating pattern. 12 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­12 13 ­13 Bimodal Branch Predictor Characteristics: Low cost. Used in many 20th century processors. 13 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­13 14 Bimodal Branch Predictor ­14 Bimodal Branch Predictor Idea: maintain a branch history for each branch instruction. To control logic To PC Mux IF ID Branch History: PC Information about past behavior of the branch. Predicted Is Branch Predicted Direction (N or T) Predicted Target PC BHT 15:2 Branch histories stored in a branch history table (BHT). a d Is Branch we Target a d in Often, branch history is sort of number of times branch taken... 15:2 2-bit Is Branch 1:1 ... minus number of times not taken. counter with instruction, Travels Target 2 used where branch resolved. Other types of history possible. Branch history read to make a prediction. Predictor Prediction Hardware Shown in Black (resolve) Post-resolve 2-b counter. Branch history updated when branch outcome known. PC -1 Predictor Update Hardware (resolve) Shown in Green +1 where branch resolved). From ME (or stage Outcome (1=T, 0=N) 2 Pre-resolve 2-b counter Target PC (resolve) Is Branch (1, branch; 0, anything else.) 14 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­14 15 Branch History Counter ­15 Branch History Counter and Two-Bit Counter If a counter used, branch history incremented when branch taken... ... and decremented when branch not taken. Symbol n denotes number of bits for branch history. To save space and for performance reasons ... ... branch history limited to a few bits, usually n = 2. Branch history updated using a saturating counter. A saturating counter is an arithmetic unit that can add or subtract one ... ... in which x +1 → x +1 for x ∈ [0, 2n − 2] ... ... x − 1 → x − 1 for x ∈ [1, 2n − 1] ... ... (2n − 1)+1 → 2n − 1 ... ... and 0 − 1 → 0. For an n-bit counter, predict taken if counter ≥ 2n−1. 15 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­15 16 Branch History (2-Bit) Counter Example ­16 Example of 2-Bit Counter Used for Four-Iteration Loop In diagram below initial counter value assumed to be zero. #Counter: 01232 3332 3332 3332 beq r1, r2,TARG TTTN TTTN TTTN TTTN # Prediction n n t t t t t t t t t t t t t t # Outcome: x x x x x x 3 Prediction Accuracy: 4 , based on repeating pattern. 16 LSU EE 4720 Lecture Transparency. Formatted 13:42, 12 April 2019 from lsli12-TeXize. ­16 17 One-Level Branch Predictor Hardware ­17 To control logic To PC Mux Bimodal aka One-Level Branch Predictor Hardware PC IF ID Illustrated for 5-stage MIPS implementation ... Predicted Is Branch Predicted Direction (N or T) Predicted Target PC BHT 15:2 ... even though prediction not very useful. a d Is Branch we Target a d in Branch Prediction Steps 15:2 2-bit Is Branch 1:1 counter with instruction, Travels 1: Predict.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    27 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us