Prefetcher.py revision 10623
110623Smitch.hayenga@arm.com# Copyright (c) 2012, 2014 ARM Limited
29288Sandreas.hansson@arm.com# All rights reserved.
39288Sandreas.hansson@arm.com#
49288Sandreas.hansson@arm.com# The license below extends only to copyright in the software and shall
59288Sandreas.hansson@arm.com# not be construed as granting a license to any other intellectual
69288Sandreas.hansson@arm.com# property including but not limited to intellectual property relating
79288Sandreas.hansson@arm.com# to a hardware implementation of the functionality of the software
89288Sandreas.hansson@arm.com# licensed hereunder.  You may use the software subject to the license
99288Sandreas.hansson@arm.com# terms below provided that you ensure that this notice is replicated
109288Sandreas.hansson@arm.com# unmodified and in its entirety in all distributions of the software,
119288Sandreas.hansson@arm.com# modified or unmodified, in source code or in binary form.
129288Sandreas.hansson@arm.com#
139288Sandreas.hansson@arm.com# Copyright (c) 2005 The Regents of The University of Michigan
149288Sandreas.hansson@arm.com# All rights reserved.
159288Sandreas.hansson@arm.com#
169288Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
179288Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
189288Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
199288Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
209288Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
219288Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
229288Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
239288Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
249288Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from
259288Sandreas.hansson@arm.com# this software without specific prior written permission.
269288Sandreas.hansson@arm.com#
279288Sandreas.hansson@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
289288Sandreas.hansson@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
299288Sandreas.hansson@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
309288Sandreas.hansson@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
319288Sandreas.hansson@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
329288Sandreas.hansson@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
339288Sandreas.hansson@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
349288Sandreas.hansson@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
359288Sandreas.hansson@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
369288Sandreas.hansson@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
379288Sandreas.hansson@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
389288Sandreas.hansson@arm.com#
399288Sandreas.hansson@arm.com# Authors: Ron Dreslinski
4010623Smitch.hayenga@arm.com#          Mitch Hayenga
419288Sandreas.hansson@arm.com
429288Sandreas.hansson@arm.comfrom ClockedObject import ClockedObject
438831Smrinmoy.ghosh@arm.comfrom m5.params import *
448832SAli.Saidi@ARM.comfrom m5.proxy import *
458832SAli.Saidi@ARM.com
469288Sandreas.hansson@arm.comclass BasePrefetcher(ClockedObject):
478831Smrinmoy.ghosh@arm.com    type = 'BasePrefetcher'
488831Smrinmoy.ghosh@arm.com    abstract = True
499338SAndreas.Sandberg@arm.com    cxx_header = "mem/cache/prefetch/base.hh"
5010466Sandreas.hansson@arm.com    sys = Param.System(Parent.any, "System this prefetcher belongs to")
518831Smrinmoy.ghosh@arm.com
5210623Smitch.hayenga@arm.com    on_miss = Param.Bool(False, "Only notify prefetcher on misses")
5310623Smitch.hayenga@arm.com    on_read = Param.Bool(True, "Notify prefetcher on reads")
5410623Smitch.hayenga@arm.com    on_write = Param.Bool(True, "Notify prefetcher on writes")
5510623Smitch.hayenga@arm.com    on_data  = Param.Bool(True, "Notify prefetcher on data accesses")
5610623Smitch.hayenga@arm.com    on_inst  = Param.Bool(True, "Notify prefetcher on instruction accesses")
5710623Smitch.hayenga@arm.com
5810623Smitch.hayenga@arm.comclass QueuedPrefetcher(BasePrefetcher):
5910623Smitch.hayenga@arm.com    type = "QueuedPrefetcher"
6010623Smitch.hayenga@arm.com    abstract = True
6110623Smitch.hayenga@arm.com    cxx_class = "QueuedPrefetcher"
6210623Smitch.hayenga@arm.com    cxx_header = "mem/cache/prefetch/queued.hh"
6310623Smitch.hayenga@arm.com    latency = Param.Int(1, "Latency for generated prefetches")
6410623Smitch.hayenga@arm.com    queue_size = Param.Int(32, "Maximum number of queued prefetches")
6510623Smitch.hayenga@arm.com    queue_squash = Param.Bool(True, "Squash queued prefetch on demand access")
6610623Smitch.hayenga@arm.com    queue_filter = Param.Bool(True, "Don't queue redundant prefetches")
6710623Smitch.hayenga@arm.com    cache_snoop = Param.Bool(False, "Snoop cache to eliminate redundant request")
6810623Smitch.hayenga@arm.com
6910623Smitch.hayenga@arm.com    tag_prefetch = Param.Bool(True, "Tag prefetch with PC of generating access")
7010623Smitch.hayenga@arm.com
7110623Smitch.hayenga@arm.comclass StridePrefetcher(QueuedPrefetcher):
728831Smrinmoy.ghosh@arm.com    type = 'StridePrefetcher'
738831Smrinmoy.ghosh@arm.com    cxx_class = 'StridePrefetcher'
749338SAndreas.Sandberg@arm.com    cxx_header = "mem/cache/prefetch/stride.hh"
758831Smrinmoy.ghosh@arm.com
7610623Smitch.hayenga@arm.com    max_conf = Param.Int(7, "Maximum confidence level")
7710623Smitch.hayenga@arm.com    thresh_conf = Param.Int(4, "Threshold confidence level")
7810623Smitch.hayenga@arm.com    min_conf = Param.Int(0, "Minimum confidence level")
7910623Smitch.hayenga@arm.com    start_conf = Param.Int(4, "Starting confidence for new entries")
8010623Smitch.hayenga@arm.com
8110623Smitch.hayenga@arm.com    table_sets = Param.Int(16, "Number of sets in PC lookup table")
8210623Smitch.hayenga@arm.com    table_assoc = Param.Int(4, "Associativity of PC lookup table")
8310623Smitch.hayenga@arm.com    use_master_id = Param.Bool(True, "Use master id based history")
8410623Smitch.hayenga@arm.com
8510623Smitch.hayenga@arm.com    degree = Param.Int(4, "Number of prefetches to generate")
8610623Smitch.hayenga@arm.com
8710623Smitch.hayenga@arm.comclass TaggedPrefetcher(QueuedPrefetcher):
888831Smrinmoy.ghosh@arm.com    type = 'TaggedPrefetcher'
898831Smrinmoy.ghosh@arm.com    cxx_class = 'TaggedPrefetcher'
909338SAndreas.Sandberg@arm.com    cxx_header = "mem/cache/prefetch/tagged.hh"
918831Smrinmoy.ghosh@arm.com
9210623Smitch.hayenga@arm.com    degree = Param.Int(2, "Number of prefetches to generate")
93