Go to the documentation of this file.
55 #include "debug/MSHR.hh"
64 downstreamPending(false),
65 pendingModified(false),
66 postInvalidate(false), postDowngrade(false),
67 wasWholeLineWrite(false), isForward(false),
68 targets(
name +
".targets"),
69 deferredTargets(
name +
".deferredTargets")
75 needsWritable(false), hasUpgrade(false),
76 allocOnFill(false), hasFromCache(false)
103 updateWriteFlags(pkt);
112 for (
auto&
t: *
this) {
113 updateFlags(
t.pkt,
t.source,
t.allocOnFill);
127 if (canMergeWrites) {
131 canMergeWrites =
false;
141 const auto &req_flags = pkt->
req->getFlags();
142 bool compat_write = !req_flags.isSet(no_merge_flags);
149 bool first_write = empty();
150 if (first_write || compat_write) {
152 auto begin = writesBitmap.begin() +
offset;
158 canMergeWrites &= compat_write;
167 updateFlags(pkt, source, alloc_on_fill);
173 if (mshr !=
nullptr) {
182 emplace_back(pkt,
readyTime,
order, source, markPending, alloc_on_fill);
196 DPRINTF(
MSHR,
"Replacing UpgradeReq with ReadExReq\n");
199 DPRINTF(
MSHR,
"Replacing SCUpgradeReq with SCUpgradeFailReq\n");
202 DPRINTF(
MSHR,
"Replacing StoreCondReq with StoreCondFailReq\n");
226 for (
auto&
t : *
this) {
236 MSHR::TargetList::iterator end)
238 for (
auto t = begin;
t != end;
t++) {
239 if (
t->markedPending) {
246 MSHR *mshr =
t->pkt->findNextSenderState<
MSHR>();
247 if (mshr !=
nullptr) {
250 t->markedPending =
false;
265 for (
auto&
t : *
this) {
277 const std::string &prefix)
const
279 for (
auto&
t : *
this) {
289 s =
"FromPrefetcher";
296 t.pkt->print(
os, verbosity,
"");
304 Tick when_ready,
Counter _order,
bool alloc_on_fill)
325 targets.
add(target, when_ready, _order, source,
true, alloc_on_fill);
398 if (pkt->
req->isCacheMaintenance() ||
399 tgt_pkt->
req->isCacheMaintenance() ||
431 !pkt->
req->isCacheMaintenance(),
432 "%s got snoop %s where needsWritable, "
433 "does not match isInvalidate",
name(), pkt->
print());
498 new Packet(std::make_shared<Request>(*pkt->
req), pkt->
cmd,
560 ready_targets.push_back(*it);
567 ready_targets.push_back(*it);
573 std::swap(ready_targets,
targets);
577 return ready_targets;
594 return t.pkt->req->isCacheMaintenance();
656 return !
t.pkt->req->isCacheInvalidate() &&
657 !
t.pkt->needsWritable();
669 !def_tgt_pkt->
req->isCacheInvalidate()) {
682 return !
t.pkt->req->isCacheInvalidate();
712 MSHR::print(std::ostream &
os,
int verbosity,
const std::string &prefix)
const
714 ccprintf(
os,
"%s[%#llx:%#llx](%s) %s %s %s state: %s %s %s %s %s %s\n",
732 ccprintf(
os,
"%s Deferred Targets:\n", prefix);
740 std::ostringstream str;
Tick curTick()
The universal simulation clock.
Miss Status and handling Register.
void replaceUpgrades()
Convert upgrades to the equivalent request if the cache line they refer to would have been invalid (U...
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
void print(std::ostream &os, int verbosity, const std::string &prefix) const
void updateWriteFlags(PacketPtr pkt)
Add the specified packet in the TargetList.
Addr getOffset(unsigned int blk_size) const
bool _isUncacheable
True if the entry is uncacheable.
T * findNextSenderState() const
Go through the sender state stack and return the first instance that is of type T (as determined by a...
TargetList(const std::string &name=".unnamedTargetList")
@ UNCACHEABLE
The request is to an uncacheable address.
RequestPtr req
A pointer to the original request.
bool isForward
True if the entry is just a simple forward from an upper level.
void promoteIf(const std::function< bool(Target &)> &pred)
Promotes deferred targets that satisfy a predicate.
bool pendingModified
Here we use one flag to track both if:
void add(PacketPtr pkt, Tick readyTime, Counter order, Target::Source source, bool markPending, bool alloc_on_fill)
Add the specified packet in the TargetList.
bool matchBlockAddr(const Addr addr, const bool is_secure) const override
Check if entry corresponds to the one being looked for.
bool hasPostInvalidate() const
void setCacheResponding()
Snoop flags.
bool promoteDeferredTargets()
@ MEM_SWAP
This request is for a memory swap.
void promoteWritable()
Promotes deferred targets that do not require writable.
bool postInvalidate
Did we snoop an invalidate while waiting for data?
bool postDowngrade
Did we snoop a read while waiting for data?
void markInService(bool pending_modified_resp)
bool sendPacket(BaseCache &cache) override
Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entr...
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
Addr blkAddr
Block aligned address.
void clearDownstreamPending()
Counter order
Order number assigned to disambiguate writes and misses.
void ccprintf(cp::Print &print)
Tick readyTime
Tick when ready to issue.
void populateFlags()
Goes through the list of targets and uses them to populate the flags of this TargetList.
Interface for things with names.
bool needsWritable() const
void allocateTarget(PacketPtr target, Tick when, Counter order, bool alloc_on_fill)
Add a request to the list of targets.
@ SECURE
The request targets the secure memory space.
virtual std::string name() const
bool needsWritable() const
The pending* and post* flags are only valid if inService is true.
void print(std::ostream &o, int verbosity=0, const std::string &prefix="") const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
bool matchBlockAddr(const Addr addr, const bool is_secure, const int blk_size) const
Check if packet corresponds to a given block-aligned address and address space.
virtual bool sendMSHRQueuePacket(MSHR *mshr)
Take an MSHR, turn it into a suitable downstream packet, and send it out.
virtual bool matchBlockAddr(const Addr addr, const bool is_secure) const =0
Check if entry corresponds to the one being looked for.
bool isPendingModified() const
ProbePointArg< PacketInfo > Packet
Packet probe point.
uint64_t Tick
Tick count type.
bool isSecure
True if the entry targets the secure memory space.
void init(Addr blk_addr, Addr blk_size)
Reset state.
void updateFlags(PacketPtr pkt, Target::Source source, bool alloc_on_fill)
Use the provided packet and the source to update the flags of this TargetList.
std::string print() const
A no-args wrapper of print(std::ostream...) meant to be invoked from DPRINTFs avoiding string overhea...
bool isWholeLineWrite() const
Check if this MSHR contains only compatible writes, and if they span the entire cache line.
void setResponderHadWritable()
On responding to a snoop request (which only happens for Modified or Owned lines),...
MemCmd cmd
The command field of the packet.
bool downstreamPending
Flag set by downstream caches.
bool hasFromCache() const
Determine if there are non-deferred requests from other caches.
bool needsResponse() const
bool wasWholeLineWrite
Track if we sent this as a whole line write or not.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
TargetList deferredTargets
const std::string & name()
bool trySatisfyFunctional(PacketPtr pkt)
bool conflictAddr(const QueueEntry *entry) const override
Check if given entry's packets conflict with this' entries packets.
TargetList targets
List of all requests that match the address.
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag,...
unsigned blkSize
Block size of the cache.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void allocate()
Allocate memory for the packet.
@ LLSC
The request is a Load locked/store conditional.
bool trySatisfyFunctional(PacketPtr pkt)
bool handleSnoop(PacketPtr target, Counter order)
double Counter
All counters are of 64-bit values.
void clearDownstreamPending()
void promoteReadable()
Promotes deferred targets that do not require writable.
A queue entry base class, to be used by both the MSHRs and write-queue entries.
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.
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
static void replaceUpgrade(PacketPtr pkt)
bool hasTargets() const
Returns true if there are targets left.
bool isReset() const
Tests if the flags of this TargetList have their default values.
TargetList extractServiceableTargets(PacketPtr pkt)
Extracts the subset of the targets that can be serviced given a received response.
void deallocate()
Mark this MSHR as free.
bool isExpressSnoop() const
@ PRIVILEGED
This request is made in privileged mode.
MSHR(const std::string &name)
A simple constructor.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool hasPostDowngrade() const
bool inService
True if the entry has been sent downstream.
bool isInvalidate() const
Generated on Tue Sep 7 2021 14:53:47 for gem5 by doxygen 1.8.17