tournament.hh (13959:ea907b02c800) | tournament.hh (13960:e1ab93677110) |
---|---|
1/* 2 * Copyright (c) 2011, 2014 ARM Limited 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software --- 33 unchanged lines hidden (view full) --- 42 * Nilay Vaish 43 */ 44 45#ifndef __CPU_PRED_TOURNAMENT_PRED_HH__ 46#define __CPU_PRED_TOURNAMENT_PRED_HH__ 47 48#include <vector> 49 | 1/* 2 * Copyright (c) 2011, 2014 ARM Limited 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software --- 33 unchanged lines hidden (view full) --- 42 * Nilay Vaish 43 */ 44 45#ifndef __CPU_PRED_TOURNAMENT_PRED_HH__ 46#define __CPU_PRED_TOURNAMENT_PRED_HH__ 47 48#include <vector> 49 |
50#include "base/sat_counter.hh" |
|
50#include "base/types.hh" 51#include "cpu/pred/bpred_unit.hh" | 51#include "base/types.hh" 52#include "cpu/pred/bpred_unit.hh" |
52#include "cpu/pred/sat_counter.hh" | |
53#include "params/TournamentBP.hh" 54 55/** 56 * Implements a tournament branch predictor, hopefully identical to the one 57 * used in the 21264. It has a local predictor, which uses a local history 58 * table to index into a table of counters, and a global predictor, which 59 * uses a global history to index into a table of counters. A choice 60 * predictor chooses between the two. Both the global history register --- 185 unchanged lines hidden --- | 53#include "params/TournamentBP.hh" 54 55/** 56 * Implements a tournament branch predictor, hopefully identical to the one 57 * used in the 21264. It has a local predictor, which uses a local history 58 * table to index into a table of counters, and a global predictor, which 59 * uses a global history to index into a table of counters. A choice 60 * predictor chooses between the two. Both the global history register --- 185 unchanged lines hidden --- |