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);
570 ready_targets.push_back(*it);
579 ready_targets.push_back(*it);
592 return ready_targets;
609 return t.pkt->req->isCacheMaintenance();
671 return !
t.pkt->req->isCacheInvalidate() &&
672 !
t.pkt->needsWritable();
687 !def_tgt_pkt->
req->isCacheInvalidate()) {
700 return !
t.pkt->req->isCacheInvalidate();
730 MSHR::print(std::ostream &
os,
int verbosity,
const std::string &prefix)
const
732 ccprintf(
os,
"%s[%#llx:%#llx](%s) %s %s %s state: %s %s %s %s %s %s\n",
750 ccprintf(
os,
"%s Deferred Targets:\n", prefix);
758 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...
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")
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.
@ SECURE
The request targets the secure memory space.
bool hasPostInvalidate() const
void setCacheResponding()
Snoop flags.
@ LOCKED_RMW
This request will lock or unlock the accessed memory.
bool promoteDeferredTargets()
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)
void updateLockedRMWReadTarget(PacketPtr pkt)
Replaces the matching packet in the Targets list with a dummy packet to ensure the MSHR remains alloc...
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.
@ UNCACHEABLE
The request is to an uncacheable address.
bool needsWritable() const
void allocateTarget(PacketPtr target, Tick when, Counter order, bool alloc_on_fill)
Add a request to the list of targets.
@ MEM_SWAP
This request is for a memory swap.
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.
std::shared_ptr< Request > RequestPtr
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.
@ LLSC
The request is a Load locked/store conditional.
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.
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
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...
@ PRIVILEGED
This request is made in privileged mode.
void allocate()
Allocate memory for the packet.
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
bool hasLockedRMWReadTarget()
Determine if there are any LockedRMWReads in the Targets list.
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 Wed Jul 13 2022 10:39:23 for gem5 by doxygen 1.8.17