stride.cc (11439:d0368996f1e0) stride.cc (11793:ef606668d247)
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

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

41 * Steve Reinhardt
42 */
43
44/**
45 * @file
46 * Stride Prefetcher template instantiations.
47 */
48
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

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

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

--- 160 unchanged lines hidden ---
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),
60 pcTableAssoc(p->table_assoc),

--- 160 unchanged lines hidden ---