gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Public Member Functions | Protected Attributes | List of all members
SectorSubBlk Class Reference

A sector is composed of sub-blocks, and each sub-block has information regarding its sector and a pointer to its sector tag. More...

#include <sector_blk.hh>

Inheritance diagram for SectorSubBlk:
CacheBlk TaggedEntry ReplaceableEntry CompressionBlk

Public Member Functions

 SectorSubBlk ()
 
 SectorSubBlk (const SectorSubBlk &)=delete
 
SectorSubBlkoperator= (const SectorSubBlk &)=delete
 
 SectorSubBlk (SectorSubBlk &&)=delete
 
SectorSubBlkoperator= (SectorSubBlk &&other)=default
 Move assignment operator. More...
 
 ~SectorSubBlk ()=default
 
void setSectorBlock (SectorBlk *sector_blk)
 Set sector block associated to this block. More...
 
SectorBlkgetSectorBlock () const
 Get sector block associated to this block. More...
 
void setSectorOffset (const int sector_offset)
 Set offset of this sub-block within the sector. More...
 
int getSectorOffset () const
 Get offset of this sub-block within the sector. More...
 
Addr getTag () const override
 Get tag associated to this block. More...
 
void setValid () override
 Set valid bit and inform sector block. More...
 
void insert (const Addr tag, const bool is_secure) override
 Insert the block by assigning it a tag and marking it valid. More...
 
void invalidate () override
 Invalidate the block and inform sector block. More...
 
std::string print () const override
 Pretty-print sector offset and other CacheBlk information. More...
 
- Public Member Functions inherited from CacheBlk
 CacheBlk ()
 
 CacheBlk (const CacheBlk &)=delete
 
CacheBlkoperator= (const CacheBlk &)=delete
 
 CacheBlk (const CacheBlk &&)=delete
 
virtual CacheBlkoperator= (CacheBlk &&other)
 Move assignment operator. More...
 
virtual ~CacheBlk ()
 
void setCoherenceBits (unsigned bits)
 Sets the corresponding coherence bits. More...
 
void clearCoherenceBits (unsigned bits)
 Clear the corresponding coherence bits. More...
 
bool isSet (unsigned bits) const
 Checks the given coherence bits are set. More...
 
bool wasPrefetched () const
 Check if this block was the result of a hardware prefetch, yet to be touched. More...
 
void clearPrefetched ()
 Clear the prefetching bit. More...
 
void setPrefetched ()
 Marks this blocks as a recently prefetched block. More...
 
Tick getWhenReady () const
 Get tick at which block's data will be available for access. More...
 
void setWhenReady (const Tick tick)
 Set tick at which block's data will be available for access. More...
 
uint32_t getTaskId () const
 Get the task id associated to this block. More...
 
uint32_t getSrcRequestorId () const
 Get the requestor id associated to this block. More...
 
unsigned getRefCount () const
 Get the number of references to this block since insertion. More...
 
void increaseRefCount ()
 Get the number of references to this block since insertion. More...
 
Tick getAge () const
 Get the block's age, that is, the number of ticks since its insertion. More...
 
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. More...
 
void trackLoadLocked (PacketPtr pkt)
 Track the fact that a local locked was issued to the block. More...
 
void clearLoadLocks (const RequestPtr &req)
 Clear the any load lock that intersect the request, and is from a different context. More...
 
bool checkWrite (PacketPtr pkt)
 Handle interaction of load-locked operations and stores. More...
 
virtual void insert (const Addr tag, const bool is_secure)
 Insert the block by assigning it a tag and marking it valid. More...
 
- Public Member Functions inherited from TaggedEntry
 TaggedEntry ()
 
 ~TaggedEntry ()=default
 
virtual bool isValid () const
 Checks if the entry is valid. More...
 
bool isSecure () const
 Check if this block holds data from the secure memory space. More...
 
virtual bool matchTag (Addr tag, bool is_secure) const
 Checks if the given tag information corresponds to this entry's. More...
 
std::string print () const override
 Prints relevant information about this entry. More...
 
- Public Member Functions inherited from ReplaceableEntry
 ReplaceableEntry ()=default
 
virtual ~ReplaceableEntry ()=default
 
virtual void setPosition (const uint32_t set, const uint32_t way)
 Set both the set and way. More...
 
uint32_t getSet () const
 Get set number. More...
 
uint32_t getWay () const
 Get way number. More...
 

Protected Attributes

SectorBlk_sectorBlk
 Sector block associated to this block. More...
 
int _sectorOffset
 The offset of this sub-block in the sector. More...
 
- Protected Attributes inherited from CacheBlk
std::list< LocklockList
 List of thread contexts that have performed a load-locked (LL) on the block since the last store. More...
 
unsigned coherence
 The current coherence status of this block. More...
 
- Protected Attributes inherited from ReplaceableEntry
uint32_t _set
 Set to which this entry belongs. More...
 
uint32_t _way
 Way (relative position within the set) to which this entry belongs. More...
 

Additional Inherited Members

- Public Types inherited from CacheBlk
enum  CoherenceBits : unsigned { WritableBit = 0x02, ReadableBit = 0x04, DirtyBit = 0x08, AllBits = 0x0E }
 Cache block's enum listing the supported coherence bits. More...
 
- Public Attributes inherited from CacheBlk
uint8_t * data
 Contains a copy of the data in this block for easy access. More...
 
Tick whenReady
 Which curTick() will this block be accessible. More...
 
- Public Attributes inherited from ReplaceableEntry
std::shared_ptr< ReplacementPolicy::ReplacementDatareplacementData
 Replacement data associated to this entry. More...
 
- Protected Member Functions inherited from CacheBlk
void setTaskId (const uint32_t task_id)
 Set the task id value. More...
 
void setSrcRequestorId (const uint32_t id)
 Set the source requestor id. More...
 
void setRefCount (const unsigned count)
 Set the number of references to this block since insertion. More...
 
void setTickInserted ()
 Set the current tick as this block's insertion tick. More...
 
- Protected Member Functions inherited from TaggedEntry
virtual void setTag (Addr tag)
 Set tag associated to this block. More...
 
virtual void setSecure ()
 Set secure bit. More...
 

Detailed Description

A sector is composed of sub-blocks, and each sub-block has information regarding its sector and a pointer to its sector tag.

Definition at line 48 of file sector_blk.hh.

Constructor & Destructor Documentation

◆ SectorSubBlk() [1/3]

SectorSubBlk::SectorSubBlk ( )
inline

Definition at line 62 of file sector_blk.hh.

◆ SectorSubBlk() [2/3]

SectorSubBlk::SectorSubBlk ( const SectorSubBlk )
delete

◆ SectorSubBlk() [3/3]

SectorSubBlk::SectorSubBlk ( SectorSubBlk &&  )
delete

◆ ~SectorSubBlk()

SectorSubBlk::~SectorSubBlk ( )
default

Member Function Documentation

◆ getSectorBlock()

SectorBlk * SectorSubBlk::getSectorBlock ( ) const

◆ getSectorOffset()

int SectorSubBlk::getSectorOffset ( ) const

Get offset of this sub-block within the sector.

Returns
sector_offset The block's offset.

Definition at line 61 of file sector_blk.cc.

References _sectorOffset.

Referenced by print(), and SectorTags::regenerateBlkAddr().

◆ getTag()

Addr SectorSubBlk::getTag ( ) const
overridevirtual

Get tag associated to this block.

Returns
The tag value.

Reimplemented from TaggedEntry.

Definition at line 67 of file sector_blk.cc.

References _sectorBlk, TaggedEntry::getTag(), and TaggedEntry::isValid().

◆ insert()

void SectorSubBlk::insert ( const Addr  tag,
const bool  is_secure 
)
overridevirtual

Insert the block by assigning it a tag and marking it valid.

Touches block if it hadn't been touched previously.

Parameters
tagThe tag value.

Reimplemented from TaggedEntry.

Definition at line 83 of file sector_blk.cc.

References _sectorBlk, TaggedEntry::insert(), CacheBlk::insert(), SectorBlk::isValid(), TaggedEntry::matchTag(), MaxAddr, and panic_if.

◆ invalidate()

void SectorSubBlk::invalidate ( )
overridevirtual

Invalidate the block and inform sector block.

Reimplemented from CacheBlk.

Reimplemented in CompressionBlk.

Definition at line 98 of file sector_blk.cc.

References _sectorBlk, CacheBlk::invalidate(), and SectorBlk::invalidateSubBlk().

Referenced by CompressionBlk::invalidate().

◆ operator=() [1/2]

SectorSubBlk& SectorSubBlk::operator= ( const SectorSubBlk )
delete

◆ operator=() [2/2]

SectorSubBlk& SectorSubBlk::operator= ( SectorSubBlk &&  other)
default

Move assignment operator.

This should only be used to move an existing valid entry into an invalid one, not to create a new entry. In the end the valid entry will become invalid, and the invalid, valid. All location related variables will remain the same, that is, an entry cannot change its sector block nor its offset.

◆ print()

std::string SectorSubBlk::print ( ) const
overridevirtual

Pretty-print sector offset and other CacheBlk information.

Returns
string with basic state information

Reimplemented from CacheBlk.

Reimplemented in CompressionBlk.

Definition at line 105 of file sector_blk.cc.

References csprintf(), getSectorOffset(), and CacheBlk::print().

Referenced by CompressionBlk::print().

◆ setSectorBlock()

void SectorSubBlk::setSectorBlock ( SectorBlk sector_blk)

Set sector block associated to this block.

Parameters
sector_blkThe sector block pointer.

Definition at line 42 of file sector_blk.cc.

References _sectorBlk.

Referenced by CompressedTags::tagsInit(), and SectorTags::tagsInit().

◆ setSectorOffset()

void SectorSubBlk::setSectorOffset ( const int  sector_offset)

Set offset of this sub-block within the sector.

Parameters
sector_offsetThe block's offset.

Definition at line 55 of file sector_blk.cc.

References _sectorOffset.

Referenced by CompressedTags::tagsInit(), and SectorTags::tagsInit().

◆ setValid()

void SectorSubBlk::setValid ( )
overridevirtual

Set valid bit and inform sector block.

Reimplemented from TaggedEntry.

Definition at line 76 of file sector_blk.cc.

References _sectorBlk, TaggedEntry::setValid(), and SectorBlk::validateSubBlk().

Member Data Documentation

◆ _sectorBlk

SectorBlk* SectorSubBlk::_sectorBlk
protected

Sector block associated to this block.

Definition at line 54 of file sector_blk.hh.

Referenced by getSectorBlock(), getTag(), insert(), invalidate(), setSectorBlock(), and setValid().

◆ _sectorOffset

int SectorSubBlk::_sectorOffset
protected

The offset of this sub-block in the sector.

Definition at line 59 of file sector_blk.hh.

Referenced by getSectorOffset(), and setSectorOffset().


The documentation for this class was generated from the following files:

Generated on Tue Jun 22 2021 15:28:43 for gem5 by doxygen 1.8.17