cache.hh (5875:d82be3235ab4) cache.hh (6122:9af6fb59752f)
1/*
2 * Copyright (c) 2002-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;

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

66
67 protected:
68
69 class CpuSidePort : public CachePort
70 {
71 public:
72 CpuSidePort(const std::string &_name,
73 Cache<TagStore> *_cache,
1/*
2 * Copyright (c) 2002-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;

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

66
67 protected:
68
69 class CpuSidePort : public CachePort
70 {
71 public:
72 CpuSidePort(const std::string &_name,
73 Cache<TagStore> *_cache,
74 const std::string &_label,
75 std::vector<Range<Addr> > filterRanges);
74 const std::string &_label);
76
77 // BaseCache::CachePort just has a BaseCache *; this function
78 // lets us get back the type info we lost when we stored the
79 // cache pointer there.
80 Cache<TagStore> *myCache() {
81 return static_cast<Cache<TagStore> *>(cache);
82 }
83

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

91 virtual void recvFunctional(PacketPtr pkt);
92 };
93
94 class MemSidePort : public CachePort
95 {
96 public:
97 MemSidePort(const std::string &_name,
98 Cache<TagStore> *_cache,
75
76 // BaseCache::CachePort just has a BaseCache *; this function
77 // lets us get back the type info we lost when we stored the
78 // cache pointer there.
79 Cache<TagStore> *myCache() {
80 return static_cast<Cache<TagStore> *>(cache);
81 }
82

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

90 virtual void recvFunctional(PacketPtr pkt);
91 };
92
93 class MemSidePort : public CachePort
94 {
95 public:
96 MemSidePort(const std::string &_name,
97 Cache<TagStore> *_cache,
99 const std::string &_label,
100 std::vector<Range<Addr> > filterRanges);
98 const std::string &_label);
101
102 // BaseCache::CachePort just has a BaseCache *; this function
103 // lets us get back the type info we lost when we stored the
104 // cache pointer there.
105 Cache<TagStore> *myCache() {
106 return static_cast<Cache<TagStore> *>(cache);
107 }
108

--- 223 unchanged lines hidden ---
99
100 // BaseCache::CachePort just has a BaseCache *; this function
101 // lets us get back the type info we lost when we stored the
102 // cache pointer there.
103 Cache<TagStore> *myCache() {
104 return static_cast<Cache<TagStore> *>(cache);
105 }
106

--- 223 unchanged lines hidden ---