Deleted Added
sdiff udiff text old ( 5875:d82be3235ab4 ) new ( 6122:9af6fb59752f )
full compact
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);
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,
99 const std::string &_label,
100 std::vector<Range<Addr> > filterRanges);
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 ---