Go to the documentation of this file.
46 #ifndef __MEM_CACHE_CACHE_BLK_HH__
47 #define __MEM_CACHE_CACHE_BLK_HH__
123 Addr req_low = req->getPaddr();
124 Addr req_high = req_low + req->getSize() -1;
125 return (
contextId == req->contextId()) &&
132 Addr req_low = req->getPaddr();
133 Addr req_high = req_low + req->getSize() - 1;
173 assert(other.isValid());
175 insert(other.getTag(), other.isSecure());
177 if (other.wasPrefetched()) {
185 std::swap(
lockList, other.lockList);
315 void insert(
const Addr tag,
const bool is_secure,
316 const int src_requestor_ID,
const uint32_t task_ID);
328 if (
l->intersects(pkt->
req))
345 if (
l->intersects(req) &&
l->contextId != req->contextId()) {
390 case 0b111:
s =
'M';
break;
391 case 0b011:
s =
'O';
break;
392 case 0b101:
s =
'E';
break;
393 case 0b001:
s =
'S';
break;
394 case 0b000:
s =
'I';
break;
395 default:
s =
'T';
break;
397 return csprintf(
"state: %x (%c) writable: %d readable: %d "
420 bool success =
false;
423 while (!success &&
l !=
lockList.end()) {
424 if (
l->matches(pkt->
req)) {
435 req->setExtraData(success ? 1 : 0);
510 data =
new uint8_t[size];
555 void print(std::ostream &o,
int verbosity = 0,
556 const std::string &prefix =
"")
const;
559 #endif //__MEM_CACHE_CACHE_BLK_HH__
std::string print() const override
Prints relevant information about this entry.
bool intersects(const RequestPtr &req) const
virtual void insert(const Addr tag, const bool is_secure)
Insert the block by assigning it a tag and marking it valid.
void clearLoadLocks(const RequestPtr &req)
Clear the any load lock that intersect the request, and is from a different context.
void setRefCount(const unsigned count)
Set the number of references to this block since insertion.
void clearCoherenceBits(unsigned bits)
Clear the corresponding coherence bits.
Tick getWhenReady() const
Get tick at which block's data will be available for access.
Copyright (c) 2020 Inria All rights reserved.
void clearPrefetched()
Clear the prefetching bit.
bool matches(const RequestPtr &req) const
@ invldRequestorId
Invalid requestor id for assertion checking only.
int ContextID
Globally unique thread context ID.
unsigned coherence
The current coherence status of this block.
uint64_t Tick
Tick count type.
virtual ~CacheBlkPrintWrapper()
std::shared_ptr< Request > RequestPtr
RequestPtr req
A pointer to the original request.
Lock(const RequestPtr &req)
uint32_t getSrcRequestorId() const
Get the requestor id associated to this block.
void insert(const Addr addr, const bool is_secure) override
Insert the block by assigning it a tag and marking it valid.
std::list< Lock > lockList
List of thread contexts that have performed a load-locked (LL) on the block since the last store.
virtual void invalidate() override
Invalidate the block and clear all state.
unsigned _refCount
Number of references to this block since it was brought in.
virtual CacheBlk & operator=(CacheBlk &&other)
Move assignment operator.
void setTickInserted()
Set the current tick as this block's insertion tick.
std::string print() const override
Pretty-print tag, set and way, and interpret state bits to readable form including mapping to a MOESI...
virtual bool isValid() const
Checks if the entry is valid.
Abstract base class for objects which support being printed to a stream for debugging.
bool _prefetched
Whether this block is an unaccessed hardware prefetch.
Simple class to provide virtual print() method on cache blocks without allocating a vtable pointer fo...
bool checkWrite(PacketPtr pkt)
Handle interaction of load-locked operations and stores.
TempCacheBlk(unsigned size)
Creates a temporary cache block, with its own storage.
uint32_t getTaskId() const
Get the task id associated to this block.
@ WritableBit
write permission
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void setPrefetched()
Marks this blocks as a recently prefetched block.
bool wasPrefetched() const
Check if this block was the result of a hardware prefetch, yet to be touched.
@ AllBits
Helper enum value that includes all other bits.
Addr _addr
Copy of the block's address, used to regenerate tempBlock's address.
bool isSet(unsigned bits) const
Checks the given coherence bits are set.
void setCoherenceBits(unsigned bits)
Sets the corresponding coherence bits.
void setWhenReady(const Tick tick)
Set tick at which block's data will be available for access.
Tick getAge() const
Get the block's age, that is, the number of ticks since its insertion.
void print(std::ostream &o, int verbosity=0, const std::string &prefix="") const
void setSrcRequestorId(const uint32_t id)
Set the source requestor id.
CoherenceBits
Cache block's enum listing the supported coherence bits.
uint8_t * data
Contains a copy of the data in this block for easy access.
void insert(const Addr tag, const bool is_secure, const int src_requestor_ID, const uint32_t task_ID)
Set member variables when a block insertion occurs.
virtual void invalidate()
Invalidate the block.
void increaseRefCount()
Get the number of references to this block since insertion.
@ DirtyBit
dirty (modified)
TempCacheBlk & operator=(const TempCacheBlk &)=delete
void trackLoadLocked(PacketPtr pkt)
Track the fact that a local locked was issued to the block.
Tick whenReady
Which curTick() will this block be accessible.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void setTaskId(const uint32_t task_id)
Set the task id value.
uint32_t _taskId
Task Id associated with this block.
unsigned getRefCount() const
Get the number of references to this block since insertion.
Tick _tickInserted
Tick on which the block was inserted in the cache.
CacheBlk & operator=(const CacheBlk &)=delete
CacheBlkPrintWrapper(CacheBlk *_blk)
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
void invalidate() override
Invalidate the block and clear all state.
Tick curTick()
The universal simulation clock.
Special instance of CacheBlk for use with tempBlk that deals with its block address regeneration.
int _srcRequestorId
holds the source requestor ID for this block.
@ ReadableBit
Read permission.
std::string csprintf(const char *format, const Args &...args)
Represents that the indicated thread context has a "lock" on the block, in the LL/SC sense.
Addr getAddr() const
Get block's address.
Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17