46 #ifndef __MEM_CACHE_MSHR_HH__ 47 #define __MEM_CACHE_MSHR_HH__ 75 template<
typename Entry>
156 Source _source,
bool _markedPending,
bool alloc_on_fill)
158 markedPending(_markedPending), allocOnFill(alloc_on_fill)
197 writesBitmap.resize(blk_size);
203 canMergeWrites =
true;
204 std::fill(writesBitmap.begin(), writesBitmap.end(),
false);
206 needsWritable =
false;
209 hasFromCache =
false;
218 void populateFlags();
236 return !needsWritable && !hasUpgrade && !allocOnFill &&
237 !hasFromCache && canMergeWrites;
259 void replaceUpgrades();
264 void print(std::ostream &
os,
int verbosity,
265 const std::string &prefix)
const;
276 return std::all_of(writesBitmap.begin(), writesBitmap.end(),
277 [](
bool i) {
return i; });
396 Tick when_ready,
Counter _order,
bool alloc_on_fill);
423 {
return targets.size() + deferredTargets.size(); }
452 return &targets.front();
501 const std::string &prefix =
"")
const override;
508 std::string
print()
const;
515 #endif // __MEM_CACHE_MSHR_HH__ Iterator readyIter
Pointer to this MSHR on the ready list.
bool needsWritable() const
The pending* and post* flags are only valid if inService is true.
bool hasPostInvalidate() const
bool inService
True if the entry has been sent downstream.
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
A Class for maintaining a list of pending and allocated memory requests.
std::list< MSHR * > List
A list of MSHRs.
bool isWholeLineWrite() const
Check if this MSHR contains only compatible writes, and if they span the entire cache line...
bool trySatisfyFunctional(PacketPtr pkt)
const Source source
Request from cpu, memory, or prefetcher?
int getNumTargets() const
Returns the current number of allocated targets.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
bool hasPostDowngrade() const
bool allocOnFill
Set when the response should allocate on fill.
bool isPendingModified() const
Addr blkSize
Size of the cache block.
void promoteWritable()
Promotes deferred targets that do not require writable.
TargetList deferredTargets
A high-level queue interface, to be used by both the MSHR queue and the write buffer.
List::iterator Iterator
MSHR list iterator.
bool postInvalidate
Did we snoop an invalidate while waiting for data?
Target(PacketPtr _pkt, Tick _readyTime, Counter _order, Source _source, bool _markedPending, bool alloc_on_fill)
const bool allocOnFill
Should the response servicing this target list allocate in the cache?
void popTarget()
Pop first target.
Tick curTick()
The current simulated tick.
bool canMergeWrites
Indicates whether we can merge incoming write requests.
bool isReset() const
Tests if the flags of this TargetList have their default values.
void allocateTarget(PacketPtr target, Tick when, Counter order, bool alloc_on_fill)
Add a request to the list of targets.
void markInService(bool pending_modified_resp)
void init(Addr blk_addr, Addr blk_size)
Reset state.
uint64_t Tick
Tick count type.
Miss Status and handling Register.
QueueEntry::Target * getTarget() override
Returns a reference to the first target.
bool isWholeLineWrite() const
Check if this list contains writes that cover an entire cache line.
std::vector< char > writesBitmap
Track which bytes are written by requests in this target list.
TargetList targets
List of all requests that match the address.
bool conflictAddr(const QueueEntry *entry) const override
Check if given entry's packets conflict with this' entries packets.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool markedPending
We use this flag to track whether we have cleared the downstreamPending flag for the MSHR of the cach...
const Tick readyTime
Time when request is ready to be serviced.
void promoteIf(const std::function< bool(Target &)> &pred)
Promotes deferred targets that satisfy a predicate.
int64_t Counter
Statistics counter type.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Abstract base class for objects which support being printed to a stream for debugging.
A queue entry is holding packets that will be serviced as soon as resources are available.
A queue entry base class, to be used by both the MSHRs and write-queue entries.
bool wasWholeLineWrite
Track if we sent this as a whole line write or not.
void clearDownstreamPending()
Addr blkAddr
Block aligned address.
Declaration of the Packet class.
Addr blkAddr
Address of the cache block for this list of targets.
bool matchBlockAddr(const Addr addr, const bool is_secure) const override
Check if entry corresponds to the one being looked for.
bool handleSnoop(PacketPtr target, Counter order)
TargetList extractServiceableTargets(PacketPtr pkt)
Extracts the subset of the targets that can be serviced given a received response.
bool isForward
True if the entry is just a simple forward from an upper level.
void promoteReadable()
Promotes deferred targets that do not require writable.
MSHR()
A simple constructor.
bool promoteDeferredTargets()
bool pendingModified
Here we use one flag to track both if:
const PacketPtr pkt
Pending request packet.
bool hasFromCache
Determine whether there was at least one non-snooping target coming from another cache.
bool hasTargets() const
Returns true if there are targets left.
const Counter order
Global order (for memory consistency mgmt)
bool sendPacket(BaseCache &cache) override
Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entr...
void deallocate()
Mark this MSHR as free.
Iterator allocIter
Pointer to this MSHR on the allocated list.
void delay(Tick delay_ticks)
Adds a delay relative to the current tick to the current MSHR.
void allocate(Addr blk_addr, unsigned blk_size, PacketPtr pkt, Tick when_ready, Counter _order, bool alloc_on_fill)
Allocate a miss to this MSHR.
unsigned blkSize
Block size of the cache.
bool downstreamPending
Flag set by downstream caches.
bool hasFromCache() const
Determine if there are non-deferred requests from other caches.
bool postDowngrade
Did we snoop a read while waiting for data?