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

Copyright (c) 2020 Inria All rights reserved. More...

#include <tagged_entry.hh>

Inheritance diagram for TaggedEntry:
ReplaceableEntry CacheBlk Compressor::FrequentValues::VFTEntry Prefetcher::AccessMapPatternMatching::AccessMapEntry Prefetcher::DeltaCorrelatingPredictionTables::DCPTEntry Prefetcher::IndirectMemory::IndirectPatternDetectorEntry Prefetcher::IndirectMemory::PrefetchTableEntry Prefetcher::IrregularStreamBuffer::AddressMappingEntry Prefetcher::IrregularStreamBuffer::TrainingUnitEntry Prefetcher::PIF::IndexEntry Prefetcher::SignaturePath::PatternEntry Prefetcher::SignaturePath::SignatureEntry Prefetcher::SignaturePathV2::GlobalHistoryEntry Prefetcher::STeMS::ActiveGenerationTableEntry Prefetcher::Stride::StrideEntry SectorBlk

Public Member Functions

 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 Addr getTag () const
 Get tag associated to this block. More...
 
virtual bool matchTag (Addr tag, bool is_secure) const
 Checks if the given tag information corresponds to this entry's. More...
 
virtual void insert (const Addr tag, const bool is_secure)
 Insert the block by assigning it a tag and marking it valid. More...
 
virtual void invalidate ()
 Invalidate the block. 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 Member Functions

virtual void setTag (Addr tag)
 Set tag associated to this block. More...
 
virtual void setSecure ()
 Set secure bit. More...
 
virtual void setValid ()
 Set valid bit. More...
 

Private Member Functions

void clearSecure ()
 Clear secure bit. More...
 

Private Attributes

bool _valid
 Valid bit. More...
 
bool _secure
 Secure bit. More...
 
Addr _tag
 The entry's tag. More...
 

Additional Inherited Members

- Public Attributes inherited from ReplaceableEntry
std::shared_ptr< ReplacementPolicy::ReplacementDatareplacementData
 Replacement data associated to this entry. 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...
 

Detailed Description

Copyright (c) 2020 Inria All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer; redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution; neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. A tagged entry is an entry containing a tag. Each tag is accompanied by a secure bit, which informs whether it belongs to a secure address space. A tagged entry's contents are only relevant if it is marked as valid.

Definition at line 43 of file tagged_entry.hh.

Constructor & Destructor Documentation

◆ TaggedEntry()

TaggedEntry::TaggedEntry ( )
inline

Definition at line 46 of file tagged_entry.hh.

◆ ~TaggedEntry()

TaggedEntry::~TaggedEntry ( )
default

Member Function Documentation

◆ clearSecure()

void TaggedEntry::clearSecure ( )
inlineprivate

Clear secure bit.

Should be only used by the invalidation function.

Definition at line 151 of file tagged_entry.hh.

References _secure.

Referenced by invalidate().

◆ getTag()

virtual Addr TaggedEntry::getTag ( ) const
inlinevirtual

◆ insert()

virtual void TaggedEntry::insert ( const Addr  tag,
const bool  is_secure 
)
inlinevirtual

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 in SectorSubBlk, and TempCacheBlk.

Definition at line 90 of file tagged_entry.hh.

References setSecure(), setTag(), and setValid().

Referenced by SectorSubBlk::insert().

◆ invalidate()

virtual void TaggedEntry::invalidate ( )
inlinevirtual

◆ isSecure()

bool TaggedEntry::isSecure ( ) const
inline

◆ isValid()

virtual bool TaggedEntry::isValid ( ) const
inlinevirtual

◆ matchTag()

virtual bool TaggedEntry::matchTag ( Addr  tag,
bool  is_secure 
) const
inlinevirtual

Checks if the given tag information corresponds to this entry's.

Parameters
tagThe tag value to compare to.
is_secureWhether secure bit is set.
Returns
True if the tag information match this entry's.

Definition at line 78 of file tagged_entry.hh.

References getTag(), isSecure(), and isValid().

Referenced by BaseTags::findBlock(), CompressedTags::findVictim(), SectorTags::findVictim(), and SectorSubBlk::insert().

◆ print()

std::string TaggedEntry::print ( ) const
inlineoverridevirtual

Prints relevant information about this entry.

Returns
A string containg the contents of this entry.

Reimplemented from ReplaceableEntry.

Definition at line 108 of file tagged_entry.hh.

References csprintf(), getTag(), isSecure(), isValid(), and ReplaceableEntry::print().

Referenced by SectorBlk::print(), and CacheBlk::print().

◆ setSecure()

virtual void TaggedEntry::setSecure ( )
inlineprotectedvirtual

Set secure bit.

Definition at line 123 of file tagged_entry.hh.

References _secure.

Referenced by insert().

◆ setTag()

virtual void TaggedEntry::setTag ( Addr  tag)
inlineprotectedvirtual

Set tag associated to this block.

Parameters
tagThe tag value.

Definition at line 120 of file tagged_entry.hh.

References _tag.

Referenced by insert(), and invalidate().

◆ setValid()

virtual void TaggedEntry::setValid ( )
inlineprotectedvirtual

Set valid bit.

The block must be invalid beforehand.

Reimplemented in SectorSubBlk.

Definition at line 127 of file tagged_entry.hh.

References _valid, and isValid().

Referenced by insert(), and SectorSubBlk::setValid().

Member Data Documentation

◆ _secure

bool TaggedEntry::_secure
private

Secure bit.

Marks whether this entry refers to an address in the secure memory space. Must always be modified along with the tag.

Definition at line 145 of file tagged_entry.hh.

Referenced by clearSecure(), isSecure(), and setSecure().

◆ _tag

Addr TaggedEntry::_tag
private

The entry's tag.

Definition at line 148 of file tagged_entry.hh.

Referenced by getTag(), and setTag().

◆ _valid

bool TaggedEntry::_valid
private

Valid bit.

The contents of this entry are only valid if this bit is set.

See also
invalidate()
insert()

Definition at line 139 of file tagged_entry.hh.

Referenced by invalidate(), isValid(), and setValid().


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

Generated on Tue Mar 23 2021 19:41:41 for gem5 by doxygen 1.8.17