tournament.hh revision 9360
11689SN/A/*
28842Smrinmoy.ghosh@arm.com * Copyright (c) 2011 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
411689SN/A */
421689SN/A
432292SN/A#ifndef __CPU_O3_TOURNAMENT_PRED_HH__
442292SN/A#define __CPU_O3_TOURNAMENT_PRED_HH__
451062SN/A
466216SN/A#include <vector>
476216SN/A
486216SN/A#include "base/types.hh"
491717SN/A#include "cpu/o3/sat_counter.hh"
501062SN/A
512345SN/A/**
522345SN/A * Implements a tournament branch predictor, hopefully identical to the one
532345SN/A * used in the 21264.  It has a local predictor, which uses a local history
542345SN/A * table to index into a table of counters, and a global predictor, which
552345SN/A * uses a global history to index into a table of counters.  A choice
562345SN/A * predictor chooses between the two.  Only the global history register
572345SN/A * is speculatively updated, the rest are updated upon branches committing
582345SN/A * or misspeculating.
592345SN/A */
601062SN/Aclass TournamentBP
611062SN/A{
621062SN/A  public:
631062SN/A    /**
641062SN/A     * Default branch predictor constructor.
651062SN/A     */
669360SE.Tomusk@sms.ed.ac.uk    TournamentBP(unsigned localCtrBits,
672292SN/A                 unsigned localHistoryTableSize,
682292SN/A                 unsigned localHistoryBits,
692292SN/A                 unsigned globalPredictorSize,
702292SN/A                 unsigned globalHistoryBits,
712292SN/A                 unsigned globalCtrBits,
722292SN/A                 unsigned choicePredictorSize,
732292SN/A                 unsigned choiceCtrBits,
741062SN/A                 unsigned instShiftAmt);
751062SN/A
761062SN/A    /**
771062SN/A     * Looks up the given address in the branch predictor and returns
782345SN/A     * a true/false value as to whether it is taken.  Also creates a
792345SN/A     * BPHistory object to store any state it will need on squash/update.
801062SN/A     * @param branch_addr The address of the branch to look up.
812345SN/A     * @param bp_history Pointer that will be set to the BPHistory object.
821062SN/A     * @return Whether or not the branch is taken.
831062SN/A     */
842345SN/A    bool lookup(Addr &branch_addr, void * &bp_history);
852345SN/A
862345SN/A    /**
872345SN/A     * Records that there was an unconditional branch, and modifies
882345SN/A     * the bp history to point to an object that has the previous
892345SN/A     * global history stored in it.
902345SN/A     * @param bp_history Pointer that will be set to the BPHistory object.
912345SN/A     */
922345SN/A    void uncondBr(void * &bp_history);
938842Smrinmoy.ghosh@arm.com    /**
948842Smrinmoy.ghosh@arm.com     * Updates the branch predictor to Not Taken if a BTB entry is
958842Smrinmoy.ghosh@arm.com     * invalid or not found.
968842Smrinmoy.ghosh@arm.com     * @param branch_addr The address of the branch to look up.
978842Smrinmoy.ghosh@arm.com     * @param bp_history Pointer to any bp history state.
988842Smrinmoy.ghosh@arm.com     * @return Whether or not the branch is taken.
998842Smrinmoy.ghosh@arm.com     */
1008842Smrinmoy.ghosh@arm.com    void BTBUpdate(Addr &branch_addr, void * &bp_history);
1011062SN/A    /**
1021062SN/A     * Updates the branch predictor with the actual result of a branch.
1031062SN/A     * @param branch_addr The address of the branch to update.
1041062SN/A     * @param taken Whether or not the branch was taken.
1052345SN/A     * @param bp_history Pointer to the BPHistory object that was created
1062345SN/A     * when the branch was predicted.
1078842Smrinmoy.ghosh@arm.com     * @param squashed is set when this function is called during a squash
1088842Smrinmoy.ghosh@arm.com     * operation.
1091062SN/A     */
1108842Smrinmoy.ghosh@arm.com    void update(Addr &branch_addr, bool taken, void *bp_history, bool squashed);
1111062SN/A
1122345SN/A    /**
1132345SN/A     * Restores the global branch history on a squash.
1142345SN/A     * @param bp_history Pointer to the BPHistory object that has the
1152345SN/A     * previous global branch history in it.
1162345SN/A     */
1172345SN/A    void squash(void *bp_history);
1182345SN/A
1192345SN/A    /** Returns the global history. */
1201684SN/A    inline unsigned readGlobalHist() { return globalHistory; }
1211062SN/A
1221062SN/A  private:
1232345SN/A    /**
1242345SN/A     * Returns if the branch should be taken or not, given a counter
1252345SN/A     * value.
1262345SN/A     * @param count The counter value.
1272345SN/A     */
1281062SN/A    inline bool getPrediction(uint8_t &count);
1291062SN/A
1302345SN/A    /**
1312345SN/A     * Returns the local history index, given a branch address.
1322345SN/A     * @param branch_addr The branch's PC address.
1332345SN/A     */
1341062SN/A    inline unsigned calcLocHistIdx(Addr &branch_addr);
1351062SN/A
1362345SN/A    /** Updates global history as taken. */
1372345SN/A    inline void updateGlobalHistTaken();
1381062SN/A
1392345SN/A    /** Updates global history as not taken. */
1402345SN/A    inline void updateGlobalHistNotTaken();
1412345SN/A
1422345SN/A    /**
1432345SN/A     * Updates local histories as taken.
1442345SN/A     * @param local_history_idx The local history table entry that
1452345SN/A     * will be updated.
1462345SN/A     */
1472345SN/A    inline void updateLocalHistTaken(unsigned local_history_idx);
1482345SN/A
1492345SN/A    /**
1502345SN/A     * Updates local histories as not taken.
1512345SN/A     * @param local_history_idx The local history table entry that
1522345SN/A     * will be updated.
1532345SN/A     */
1542345SN/A    inline void updateLocalHistNotTaken(unsigned local_history_idx);
1552345SN/A
1562345SN/A    /**
1572345SN/A     * The branch history information that is created upon predicting
1582345SN/A     * a branch.  It will be passed back upon updating and squashing,
1592345SN/A     * when the BP can use this information to update/restore its
1602345SN/A     * state properly.
1612345SN/A     */
1622345SN/A    struct BPHistory {
1632345SN/A#ifdef DEBUG
1642345SN/A        BPHistory()
1652345SN/A        { newCount++; }
1662345SN/A        ~BPHistory()
1672345SN/A        { newCount--; }
1682345SN/A
1692345SN/A        static int newCount;
1702345SN/A#endif
1712345SN/A        unsigned globalHistory;
1728842Smrinmoy.ghosh@arm.com        unsigned localHistory;
1732345SN/A        bool localPredTaken;
1742345SN/A        bool globalPredTaken;
1752345SN/A        bool globalUsed;
1762345SN/A    };
1771062SN/A
1788842Smrinmoy.ghosh@arm.com    /** Flag for invalid predictor index */
1798842Smrinmoy.ghosh@arm.com    static const int invalidPredictorIndex = -1;
1801062SN/A    /** Local counters. */
1812292SN/A    std::vector<SatCounter> localCtrs;
1821062SN/A
1839360SE.Tomusk@sms.ed.ac.uk    /** Number of counters in the local predictor. */
1841684SN/A    unsigned localPredictorSize;
1851062SN/A
1869360SE.Tomusk@sms.ed.ac.uk    /** Mask to truncate values stored in the local history table. */
1872356SN/A    unsigned localPredictorMask;
1882356SN/A
1891062SN/A    /** Number of bits of the local predictor's counters. */
1901684SN/A    unsigned localCtrBits;
1911062SN/A
1921062SN/A    /** Array of local history table entries. */
1932292SN/A    std::vector<unsigned> localHistoryTable;
1941062SN/A
1959360SE.Tomusk@sms.ed.ac.uk    /** Number of entries in the local history table. */
1961684SN/A    unsigned localHistoryTableSize;
1971062SN/A
1989360SE.Tomusk@sms.ed.ac.uk    /** Number of bits for each entry of the local history table. */
1991684SN/A    unsigned localHistoryBits;
2001062SN/A
2011062SN/A    /** Array of counters that make up the global predictor. */
2022292SN/A    std::vector<SatCounter> globalCtrs;
2031062SN/A
2049360SE.Tomusk@sms.ed.ac.uk    /** Number of entries in the global predictor. */
2051684SN/A    unsigned globalPredictorSize;
2061062SN/A
2071062SN/A    /** Number of bits of the global predictor's counters. */
2081684SN/A    unsigned globalCtrBits;
2091062SN/A
2109360SE.Tomusk@sms.ed.ac.uk    /** Global history register. Contains as much history as specified by
2119360SE.Tomusk@sms.ed.ac.uk     *  globalHistoryBits. Actual number of bits used is determined by
2129360SE.Tomusk@sms.ed.ac.uk     *  globalHistoryMask and choiceHistoryMask. */
2131684SN/A    unsigned globalHistory;
2141062SN/A
2159360SE.Tomusk@sms.ed.ac.uk    /** Number of bits for the global history. Determines maximum number of
2169360SE.Tomusk@sms.ed.ac.uk        entries in global and choice predictor tables. */
2171684SN/A    unsigned globalHistoryBits;
2181062SN/A
2199360SE.Tomusk@sms.ed.ac.uk    /** Mask to apply to globalHistory to access global history table.
2209360SE.Tomusk@sms.ed.ac.uk     *  Based on globalPredictorSize.*/
2211062SN/A    unsigned globalHistoryMask;
2221062SN/A
2239360SE.Tomusk@sms.ed.ac.uk    /** Mask to apply to globalHistory to access choice history table.
2249360SE.Tomusk@sms.ed.ac.uk     *  Based on choicePredictorSize.*/
2259360SE.Tomusk@sms.ed.ac.uk    unsigned choiceHistoryMask;
2269360SE.Tomusk@sms.ed.ac.uk
2279360SE.Tomusk@sms.ed.ac.uk    /** Mask to control how much history is stored. All of it might not be
2289360SE.Tomusk@sms.ed.ac.uk     *  used. */
2299360SE.Tomusk@sms.ed.ac.uk    unsigned historyRegisterMask;
2309360SE.Tomusk@sms.ed.ac.uk
2311062SN/A    /** Array of counters that make up the choice predictor. */
2322292SN/A    std::vector<SatCounter> choiceCtrs;
2331062SN/A
2349360SE.Tomusk@sms.ed.ac.uk    /** Number of entries in the choice predictor. */
2351684SN/A    unsigned choicePredictorSize;
2361062SN/A
2379360SE.Tomusk@sms.ed.ac.uk    /** Number of bits in the choice predictor's counters. */
2381684SN/A    unsigned choiceCtrBits;
2391062SN/A
2401062SN/A    /** Number of bits to shift the instruction over to get rid of the word
2411062SN/A     *  offset.
2421062SN/A     */
2431062SN/A    unsigned instShiftAmt;
2441062SN/A
2459360SE.Tomusk@sms.ed.ac.uk    /** Thresholds for the counter value; above the threshold is taken,
2461062SN/A     *  equal to or below the threshold is not taken.
2471062SN/A     */
2489360SE.Tomusk@sms.ed.ac.uk    unsigned localThreshold;
2499360SE.Tomusk@sms.ed.ac.uk    unsigned globalThreshold;
2509360SE.Tomusk@sms.ed.ac.uk    unsigned choiceThreshold;
2511062SN/A};
2521062SN/A
2532292SN/A#endif // __CPU_O3_TOURNAMENT_PRED_HH__
254