tournament.hh revision 11098
11689SN/A/* 210330Smitch.hayenga@arm.com * Copyright (c) 2011, 2014 ARM Limited 38842Smrinmoy.ghosh@arm.com * All rights reserved 48842Smrinmoy.ghosh@arm.com * 58842Smrinmoy.ghosh@arm.com * The license below extends only to copyright in the software and shall 68842Smrinmoy.ghosh@arm.com * not be construed as granting a license to any other intellectual 78842Smrinmoy.ghosh@arm.com * property including but not limited to intellectual property relating 88842Smrinmoy.ghosh@arm.com * to a hardware implementation of the functionality of the software 98842Smrinmoy.ghosh@arm.com * licensed hereunder. You may use the software subject to the license 108842Smrinmoy.ghosh@arm.com * terms below provided that you ensure that this notice is replicated 118842Smrinmoy.ghosh@arm.com * unmodified and in its entirety in all distributions of the software, 128842Smrinmoy.ghosh@arm.com * modified or unmodified, in source code or in binary form. 138842Smrinmoy.ghosh@arm.com * 142345SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan 151689SN/A * All rights reserved. 161689SN/A * 171689SN/A * Redistribution and use in source and binary forms, with or without 181689SN/A * modification, are permitted provided that the following conditions are 191689SN/A * met: redistributions of source code must retain the above copyright 201689SN/A * notice, this list of conditions and the following disclaimer; 211689SN/A * redistributions in binary form must reproduce the above copyright 221689SN/A * notice, this list of conditions and the following disclaimer in the 231689SN/A * documentation and/or other materials provided with the distribution; 241689SN/A * neither the name of the copyright holders nor the names of its 251689SN/A * contributors may be used to endorse or promote products derived from 261689SN/A * this software without specific prior written permission. 271689SN/A * 281689SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 291689SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 301689SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 311689SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 321689SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 331689SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 341689SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 351689SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 361689SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 371689SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 381689SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 392665SN/A * 402665SN/A * Authors: Kevin Lim 419480Snilay@cs.wisc.edu * Timothy M. Jones 429480Snilay@cs.wisc.edu * Nilay Vaish 431689SN/A */ 441689SN/A 459480Snilay@cs.wisc.edu#ifndef __CPU_PRED_TOURNAMENT_PRED_HH__ 469480Snilay@cs.wisc.edu#define __CPU_PRED_TOURNAMENT_PRED_HH__ 471062SN/A 486216SN/A#include <vector> 496216SN/A 506216SN/A#include "base/types.hh" 519480Snilay@cs.wisc.edu#include "cpu/pred/bpred_unit.hh" 529480Snilay@cs.wisc.edu#include "cpu/pred/sat_counter.hh" 5310785Sgope@wisc.edu#include "params/TournamentBP.hh" 541062SN/A 552345SN/A/** 562345SN/A * Implements a tournament branch predictor, hopefully identical to the one 572345SN/A * used in the 21264. It has a local predictor, which uses a local history 582345SN/A * table to index into a table of counters, and a global predictor, which 592345SN/A * uses a global history to index into a table of counters. A choice 602345SN/A * predictor chooses between the two. Only the global history register 612345SN/A * is speculatively updated, the rest are updated upon branches committing 622345SN/A * or misspeculating. 632345SN/A */ 649480Snilay@cs.wisc.educlass TournamentBP : public BPredUnit 651062SN/A{ 661062SN/A public: 671062SN/A /** 681062SN/A * Default branch predictor constructor. 691062SN/A */ 7010785Sgope@wisc.edu TournamentBP(const TournamentBPParams *params); 711062SN/A 721062SN/A /** 731062SN/A * Looks up the given address in the branch predictor and returns 742345SN/A * a true/false value as to whether it is taken. Also creates a 752345SN/A * BPHistory object to store any state it will need on squash/update. 761062SN/A * @param branch_addr The address of the branch to look up. 772345SN/A * @param bp_history Pointer that will be set to the BPHistory object. 781062SN/A * @return Whether or not the branch is taken. 791062SN/A */ 809480Snilay@cs.wisc.edu bool lookup(Addr branch_addr, void * &bp_history); 812345SN/A 822345SN/A /** 832345SN/A * Records that there was an unconditional branch, and modifies 842345SN/A * the bp history to point to an object that has the previous 852345SN/A * global history stored in it. 862345SN/A * @param bp_history Pointer that will be set to the BPHistory object. 872345SN/A */ 8810785Sgope@wisc.edu void uncondBranch(Addr pc, void * &bp_history); 898842Smrinmoy.ghosh@arm.com /** 908842Smrinmoy.ghosh@arm.com * Updates the branch predictor to Not Taken if a BTB entry is 918842Smrinmoy.ghosh@arm.com * invalid or not found. 928842Smrinmoy.ghosh@arm.com * @param branch_addr The address of the branch to look up. 938842Smrinmoy.ghosh@arm.com * @param bp_history Pointer to any bp history state. 948842Smrinmoy.ghosh@arm.com * @return Whether or not the branch is taken. 958842Smrinmoy.ghosh@arm.com */ 969480Snilay@cs.wisc.edu void btbUpdate(Addr branch_addr, void * &bp_history); 971062SN/A /** 981062SN/A * Updates the branch predictor with the actual result of a branch. 991062SN/A * @param branch_addr The address of the branch to update. 1001062SN/A * @param taken Whether or not the branch was taken. 1012345SN/A * @param bp_history Pointer to the BPHistory object that was created 1022345SN/A * when the branch was predicted. 1038842Smrinmoy.ghosh@arm.com * @param squashed is set when this function is called during a squash 1048842Smrinmoy.ghosh@arm.com * operation. 1051062SN/A */ 1069480Snilay@cs.wisc.edu void update(Addr branch_addr, bool taken, void *bp_history, bool squashed); 1071062SN/A 10810330Smitch.hayenga@arm.com void retireSquashed(void *bp_history); 10910330Smitch.hayenga@arm.com 1102345SN/A /** 1112345SN/A * Restores the global branch history on a squash. 1122345SN/A * @param bp_history Pointer to the BPHistory object that has the 1132345SN/A * previous global branch history in it. 1142345SN/A */ 1152345SN/A void squash(void *bp_history); 1162345SN/A 1172345SN/A /** Returns the global history. */ 1181684SN/A inline unsigned readGlobalHist() { return globalHistory; } 1191062SN/A 1201062SN/A private: 1212345SN/A /** 1222345SN/A * Returns if the branch should be taken or not, given a counter 1232345SN/A * value. 1242345SN/A * @param count The counter value. 1252345SN/A */ 1261062SN/A inline bool getPrediction(uint8_t &count); 1271062SN/A 1282345SN/A /** 1292345SN/A * Returns the local history index, given a branch address. 1302345SN/A * @param branch_addr The branch's PC address. 1312345SN/A */ 1321062SN/A inline unsigned calcLocHistIdx(Addr &branch_addr); 1331062SN/A 1342345SN/A /** Updates global history as taken. */ 1352345SN/A inline void updateGlobalHistTaken(); 1361062SN/A 1372345SN/A /** Updates global history as not taken. */ 1382345SN/A inline void updateGlobalHistNotTaken(); 1392345SN/A 1402345SN/A /** 1412345SN/A * Updates local histories as taken. 1422345SN/A * @param local_history_idx The local history table entry that 1432345SN/A * will be updated. 1442345SN/A */ 1452345SN/A inline void updateLocalHistTaken(unsigned local_history_idx); 1462345SN/A 1472345SN/A /** 1482345SN/A * Updates local histories as not taken. 1492345SN/A * @param local_history_idx The local history table entry that 1502345SN/A * will be updated. 1512345SN/A */ 1522345SN/A inline void updateLocalHistNotTaken(unsigned local_history_idx); 1532345SN/A 1542345SN/A /** 1552345SN/A * The branch history information that is created upon predicting 1562345SN/A * a branch. It will be passed back upon updating and squashing, 1572345SN/A * when the BP can use this information to update/restore its 1582345SN/A * state properly. 1592345SN/A */ 1602345SN/A struct BPHistory { 1612345SN/A#ifdef DEBUG 1622345SN/A BPHistory() 1632345SN/A { newCount++; } 1642345SN/A ~BPHistory() 1652345SN/A { newCount--; } 1662345SN/A 1672345SN/A static int newCount; 1682345SN/A#endif 1692345SN/A unsigned globalHistory; 17011098Slukefahr@umich.edu unsigned localHistoryIdx; 1718842Smrinmoy.ghosh@arm.com unsigned localHistory; 1722345SN/A bool localPredTaken; 1732345SN/A bool globalPredTaken; 1742345SN/A bool globalUsed; 1752345SN/A }; 1761062SN/A 1778842Smrinmoy.ghosh@arm.com /** Flag for invalid predictor index */ 1788842Smrinmoy.ghosh@arm.com static const int invalidPredictorIndex = -1; 1791062SN/A /** Local counters. */ 1802292SN/A std::vector<SatCounter> localCtrs; 1811062SN/A 1829360SE.Tomusk@sms.ed.ac.uk /** Number of counters in the local predictor. */ 1831684SN/A unsigned localPredictorSize; 1841062SN/A 1859360SE.Tomusk@sms.ed.ac.uk /** Mask to truncate values stored in the local history table. */ 1862356SN/A unsigned localPredictorMask; 1872356SN/A 1881062SN/A /** Number of bits of the local predictor's counters. */ 1891684SN/A unsigned localCtrBits; 1901062SN/A 1911062SN/A /** Array of local history table entries. */ 1922292SN/A std::vector<unsigned> localHistoryTable; 1931062SN/A 1949360SE.Tomusk@sms.ed.ac.uk /** Number of entries in the local history table. */ 1951684SN/A unsigned localHistoryTableSize; 1961062SN/A 1979360SE.Tomusk@sms.ed.ac.uk /** Number of bits for each entry of the local history table. */ 1981684SN/A unsigned localHistoryBits; 1991062SN/A 2001062SN/A /** Array of counters that make up the global predictor. */ 2012292SN/A std::vector<SatCounter> globalCtrs; 2021062SN/A 2039360SE.Tomusk@sms.ed.ac.uk /** Number of entries in the global predictor. */ 2041684SN/A unsigned globalPredictorSize; 2051062SN/A 2061062SN/A /** Number of bits of the global predictor's counters. */ 2071684SN/A unsigned globalCtrBits; 2081062SN/A 2099360SE.Tomusk@sms.ed.ac.uk /** Global history register. Contains as much history as specified by 2109360SE.Tomusk@sms.ed.ac.uk * globalHistoryBits. Actual number of bits used is determined by 2119360SE.Tomusk@sms.ed.ac.uk * globalHistoryMask and choiceHistoryMask. */ 2121684SN/A unsigned globalHistory; 2131062SN/A 2149360SE.Tomusk@sms.ed.ac.uk /** Number of bits for the global history. Determines maximum number of 2159360SE.Tomusk@sms.ed.ac.uk entries in global and choice predictor tables. */ 2161684SN/A unsigned globalHistoryBits; 2171062SN/A 2189360SE.Tomusk@sms.ed.ac.uk /** Mask to apply to globalHistory to access global history table. 2199360SE.Tomusk@sms.ed.ac.uk * Based on globalPredictorSize.*/ 2201062SN/A unsigned globalHistoryMask; 2211062SN/A 2229360SE.Tomusk@sms.ed.ac.uk /** Mask to apply to globalHistory to access choice history table. 2239360SE.Tomusk@sms.ed.ac.uk * Based on choicePredictorSize.*/ 2249360SE.Tomusk@sms.ed.ac.uk unsigned choiceHistoryMask; 2259360SE.Tomusk@sms.ed.ac.uk 2269360SE.Tomusk@sms.ed.ac.uk /** Mask to control how much history is stored. All of it might not be 2279360SE.Tomusk@sms.ed.ac.uk * used. */ 2289360SE.Tomusk@sms.ed.ac.uk unsigned historyRegisterMask; 2299360SE.Tomusk@sms.ed.ac.uk 2301062SN/A /** Array of counters that make up the choice predictor. */ 2312292SN/A std::vector<SatCounter> choiceCtrs; 2321062SN/A 2339360SE.Tomusk@sms.ed.ac.uk /** Number of entries in the choice predictor. */ 2341684SN/A unsigned choicePredictorSize; 2351062SN/A 2369360SE.Tomusk@sms.ed.ac.uk /** Number of bits in the choice predictor's counters. */ 2371684SN/A unsigned choiceCtrBits; 2381062SN/A 2399360SE.Tomusk@sms.ed.ac.uk /** Thresholds for the counter value; above the threshold is taken, 2401062SN/A * equal to or below the threshold is not taken. 2411062SN/A */ 2429360SE.Tomusk@sms.ed.ac.uk unsigned localThreshold; 2439360SE.Tomusk@sms.ed.ac.uk unsigned globalThreshold; 2449360SE.Tomusk@sms.ed.ac.uk unsigned choiceThreshold; 2451062SN/A}; 2461062SN/A 2479480Snilay@cs.wisc.edu#endif // __CPU_PRED_TOURNAMENT_PRED_HH__ 248