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