stride.cc (11793:ef606668d247) stride.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2012-2013, 2015 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

--- 35 unchanged lines hidden (view full) ---

44/**
45 * @file
46 * Stride Prefetcher template instantiations.
47 */
48
49#include "mem/cache/prefetch/stride.hh"
50
51#include "base/random.hh"
1/*
2 * Copyright (c) 2012-2013, 2015 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

--- 35 unchanged lines hidden (view full) ---

44/**
45 * @file
46 * Stride Prefetcher template instantiations.
47 */
48
49#include "mem/cache/prefetch/stride.hh"
50
51#include "base/random.hh"
52#include "base/trace.hh"
52#include "debug/HWPrefetch.hh"
53
54StridePrefetcher::StridePrefetcher(const StridePrefetcherParams *p)
55 : QueuedPrefetcher(p),
56 maxConf(p->max_conf),
57 threshConf(p->thresh_conf),
58 minConf(p->min_conf),
59 startConf(p->start_conf),

--- 161 unchanged lines hidden ---
53#include "debug/HWPrefetch.hh"
54
55StridePrefetcher::StridePrefetcher(const StridePrefetcherParams *p)
56 : QueuedPrefetcher(p),
57 maxConf(p->max_conf),
58 threshConf(p->thresh_conf),
59 minConf(p->min_conf),
60 startConf(p->start_conf),

--- 161 unchanged lines hidden ---