tagged.cc (11439:d0368996f1e0) tagged.cc (12727:56c23b54bcb1)
1/*
2 * Copyright (c) 2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

30
31/**
32 * @file
33 * Describes a tagged prefetcher based on template policies.
34 */
35
36#include "mem/cache/prefetch/tagged.hh"
37
1/*
2 * Copyright (c) 2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

30
31/**
32 * @file
33 * Describes a tagged prefetcher based on template policies.
34 */
35
36#include "mem/cache/prefetch/tagged.hh"
37
38#include "params/TaggedPrefetcher.hh"
39
38TaggedPrefetcher::TaggedPrefetcher(const TaggedPrefetcherParams *p)
39 : QueuedPrefetcher(p), degree(p->degree)
40{
41
42}
43
44void
45TaggedPrefetcher::calculatePrefetch(const PacketPtr &pkt,

--- 21 unchanged lines hidden ---
40TaggedPrefetcher::TaggedPrefetcher(const TaggedPrefetcherParams *p)
41 : QueuedPrefetcher(p), degree(p->degree)
42{
43
44}
45
46void
47TaggedPrefetcher::calculatePrefetch(const PacketPtr &pkt,

--- 21 unchanged lines hidden ---