tagged.hh (12727:56c23b54bcb1) tagged.hh (13422:4ec52da74cd5)
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;

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

39#include "mem/cache/prefetch/queued.hh"
40#include "mem/packet.hh"
41
42struct TaggedPrefetcherParams;
43
44class TaggedPrefetcher : public QueuedPrefetcher
45{
46 protected:
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;

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

39#include "mem/cache/prefetch/queued.hh"
40#include "mem/packet.hh"
41
42struct TaggedPrefetcherParams;
43
44class TaggedPrefetcher : public QueuedPrefetcher
45{
46 protected:
47 int degree;
47 const int degree;
48
49 public:
50 TaggedPrefetcher(const TaggedPrefetcherParams *p);
51
52 ~TaggedPrefetcher() {}
53
54 void calculatePrefetch(const PacketPtr &pkt,
48
49 public:
50 TaggedPrefetcher(const TaggedPrefetcherParams *p);
51
52 ~TaggedPrefetcher() {}
53
54 void calculatePrefetch(const PacketPtr &pkt,
55 std::vector &addresses);
55 std::vector<AddrPriority> &addresses) override;
56};
57
58#endif // __MEM_CACHE_PREFETCH_TAGGED_HH__
56};
57
58#endif // __MEM_CACHE_PREFETCH_TAGGED_HH__