tagged.hh (10623:b9646f4546ad) tagged.hh (11439:d0368996f1e0)
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;

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

45 protected:
46 int degree;
47
48 public:
49 TaggedPrefetcher(const TaggedPrefetcherParams *p);
50
51 ~TaggedPrefetcher() {}
52
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;

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

45 protected:
46 int degree;
47
48 public:
49 TaggedPrefetcher(const TaggedPrefetcherParams *p);
50
51 ~TaggedPrefetcher() {}
52
53 void calculatePrefetch(const PacketPtr &pkt, std::vector<Addr> &addresses);
53 void calculatePrefetch(const PacketPtr &pkt,
54 std::vector<AddrPriority> &addresses);
54};
55
56#endif // __MEM_CACHE_PREFETCH_TAGGED_HH__
55};
56
57#endif // __MEM_CACHE_PREFETCH_TAGGED_HH__