stride.hh revision 8831
12810SN/A/*
22810SN/A * Copyright (c) 2005 The Regents of The University of Michigan
32810SN/A * All rights reserved.
42810SN/A *
52810SN/A * Redistribution and use in source and binary forms, with or without
62810SN/A * modification, are permitted provided that the following conditions are
72810SN/A * met: redistributions of source code must retain the above copyright
82810SN/A * notice, this list of conditions and the following disclaimer;
92810SN/A * redistributions in binary form must reproduce the above copyright
102810SN/A * notice, this list of conditions and the following disclaimer in the
112810SN/A * documentation and/or other materials provided with the distribution;
122810SN/A * neither the name of the copyright holders nor the names of its
132810SN/A * contributors may be used to endorse or promote products derived from
142810SN/A * this software without specific prior written permission.
152810SN/A *
162810SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172810SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182810SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192810SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202810SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212810SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222810SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232810SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242810SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252810SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262810SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272810SN/A *
282810SN/A * Authors: Ron Dreslinski
292810SN/A */
302810SN/A
312810SN/A/**
322810SN/A * @file
333861SN/A * Describes a strided prefetcher.
342810SN/A */
352810SN/A
362810SN/A#ifndef __MEM_CACHE_PREFETCH_STRIDE_PREFETCHER_HH__
372810SN/A#define __MEM_CACHE_PREFETCH_STRIDE_PREFETCHER_HH__
382810SN/A
398229Snate@binkert.org#include <climits>
408229Snate@binkert.org
415338Sstever@gmail.com#include "mem/cache/prefetch/base.hh"
428831Smrinmoy.ghosh@arm.com#include "params/StridePrefetcher.hh"
432810SN/A
443861SN/Aclass StridePrefetcher : public BasePrefetcher
452810SN/A{
462810SN/A  protected:
472810SN/A
485875Ssteve.reinhardt@amd.com    static const int Max_Contexts = 64;
495875Ssteve.reinhardt@amd.com
505875Ssteve.reinhardt@amd.com    // These constants need to be changed with the type of the
515875Ssteve.reinhardt@amd.com    // 'confidence' field below.
525875Ssteve.reinhardt@amd.com    static const int Max_Conf = INT_MAX;
535875Ssteve.reinhardt@amd.com    static const int Min_Conf = INT_MIN;
545875Ssteve.reinhardt@amd.com
555875Ssteve.reinhardt@amd.com    class StrideEntry
562810SN/A    {
572810SN/A      public:
585875Ssteve.reinhardt@amd.com        Addr instAddr;
595875Ssteve.reinhardt@amd.com        Addr missAddr;
602810SN/A        int stride;
615875Ssteve.reinhardt@amd.com        int confidence;
625875Ssteve.reinhardt@amd.com    };
632810SN/A
645875Ssteve.reinhardt@amd.com    Addr *lastMissAddr[Max_Contexts];
652810SN/A
665875Ssteve.reinhardt@amd.com    std::list<StrideEntry*> table[Max_Contexts];
672810SN/A
682810SN/A  public:
692810SN/A
708831Smrinmoy.ghosh@arm.com    StridePrefetcher(const Params *p)
718831Smrinmoy.ghosh@arm.com        : BasePrefetcher(p)
722810SN/A    {
732810SN/A    }
742810SN/A
752810SN/A    ~StridePrefetcher() {}
762810SN/A
773349SN/A    void calculatePrefetch(PacketPtr &pkt, std::list<Addr> &addresses,
783861SN/A                           std::list<Tick> &delays);
792810SN/A};
802810SN/A
812810SN/A#endif // __MEM_CACHE_PREFETCH_STRIDE_PREFETCHER_HH__
82