gem5 v24.0.0.0
Loading...
Searching...
No Matches
gem5::ArmISA::TlbEntry Struct Reference

#include <pagetable.hh>

Inheritance diagram for gem5::ArmISA::TlbEntry:
gem5::Serializable

Classes

struct  Lookup
 

Public Types

enum class  MemoryType : std::uint8_t { StronglyOrdered , Device , Normal }
 
enum class  DomainType : std::uint8_t { NoAccess = 0 , Client , Reserved , Manager }
 
typedef enums::ArmLookupLevel LookupLevel
 

Public Member Functions

 TlbEntry (Addr _asn, Addr _vaddr, Addr _paddr, bool uncacheable, bool read_only)
 
 TlbEntry ()
 
void updateVaddr (Addr new_vaddr)
 
Addr pageStart () const
 
bool matchAddress (const Lookup &lookup) const
 
bool match (const Lookup &lookup) const
 
bool checkRegime (TranslationRegime target_regime) const
 
Addr pAddr (Addr va) const
 
void updateAttributes ()
 
void setAttributes (bool lpae)
 
std::string print () const
 
void serialize (CheckpointOut &cp) const override
 Serialize an object.
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object.
 
- Public Member Functions inherited from gem5::Serializable
 Serializable ()
 
virtual ~Serializable ()
 
void serializeSection (CheckpointOut &cp, const char *name) const
 Serialize an object into a new section.
 
void serializeSection (CheckpointOut &cp, const std::string &name) const
 
void unserializeSection (CheckpointIn &cp, const char *name)
 Unserialize an a child object.
 
void unserializeSection (CheckpointIn &cp, const std::string &name)
 

Public Attributes

Addr pfn
 
Addr size
 
Addr vpn
 
uint64_t attributes
 
LookupLevel lookupLevel
 
uint16_t asid
 
vmid_t vmid
 
GrainSize tg
 
uint8_t N
 
uint8_t innerAttrs
 
uint8_t outerAttrs
 
uint8_t ap
 
uint8_t hap
 
DomainType domain
 
MemoryType mtype
 
bool longDescFormat
 
bool global
 
bool valid
 
bool ns
 
bool nstid
 
TranslationRegime regime
 
TypeTLB type
 
bool partial
 
bool nonCacheable
 
bool shareable
 
bool outerShareable
 
bool xn
 
bool pxn
 

Additional Inherited Members

- Static Public Member Functions inherited from gem5::Serializable
static const std::string & currentSection ()
 Gets the fully-qualified name of the active section.
 
static void generateCheckpointOut (const std::string &cpt_dir, std::ofstream &outstream)
 Generate a checkpoint file so that the serialization can be routed to it.
 

Detailed Description

Definition at line 165 of file pagetable.hh.

Member Typedef Documentation

◆ LookupLevel

typedef enums::ArmLookupLevel gem5::ArmISA::TlbEntry::LookupLevel

Definition at line 168 of file pagetable.hh.

Member Enumeration Documentation

◆ DomainType

enum class gem5::ArmISA::TlbEntry::DomainType : std::uint8_t
strong
Enumerator
NoAccess 
Client 
Reserved 
Manager 

Definition at line 177 of file pagetable.hh.

◆ MemoryType

enum class gem5::ArmISA::TlbEntry::MemoryType : std::uint8_t
strong
Enumerator
StronglyOrdered 
Device 
Normal 

Definition at line 170 of file pagetable.hh.

Constructor & Destructor Documentation

◆ TlbEntry() [1/2]

gem5::ArmISA::TlbEntry::TlbEntry ( Addr _asn,
Addr _vaddr,
Addr _paddr,
bool uncacheable,
bool read_only )
inline

Definition at line 264 of file pagetable.hh.

References warn.

◆ TlbEntry() [2/2]

gem5::ArmISA::TlbEntry::TlbEntry ( )
inline

Definition at line 284 of file pagetable.hh.

Member Function Documentation

◆ checkRegime()

bool gem5::ArmISA::TlbEntry::checkRegime ( TranslationRegime target_regime) const
inline

Definition at line 345 of file pagetable.hh.

References regime.

Referenced by match().

◆ match()

◆ matchAddress()

bool gem5::ArmISA::TlbEntry::matchAddress ( const Lookup & lookup) const
inline

Definition at line 312 of file pagetable.hh.

References N, gem5::ArmISA::TlbEntry::Lookup::size, size, gem5::ArmISA::TlbEntry::Lookup::va, and vpn.

Referenced by match().

◆ pAddr()

Addr gem5::ArmISA::TlbEntry::pAddr ( Addr va) const
inline

◆ pageStart()

Addr gem5::ArmISA::TlbEntry::pageStart ( ) const
inline

Definition at line 306 of file pagetable.hh.

References gem5::ArmISA::PageShift, and pfn.

◆ print()

std::string gem5::ArmISA::TlbEntry::print ( ) const
inline

Definition at line 406 of file pagetable.hh.

References ap, asid, gem5::csprintf(), global, N, ns, nstid, pfn, regime, gem5::ArmISA::regimeToStr(), size, vmid, and vpn.

◆ serialize()

void gem5::ArmISA::TlbEntry::serialize ( CheckpointOut & cp) const
inlineoverridevirtual

Serialize an object.

Output an object's state into the current checkpoint section.

Parameters
cpCheckpoint state

Implements gem5::Serializable.

Definition at line 415 of file pagetable.hh.

References ap, asid, attributes, domain, global, hap, innerAttrs, longDescFormat, lookupLevel, mtype, N, nonCacheable, ns, nstid, outerAttrs, outerShareable, gem5::paramOut(), pfn, pxn, SERIALIZE_ENUM, SERIALIZE_SCALAR, shareable, size, type, valid, vmid, vpn, and xn.

◆ setAttributes()

void gem5::ArmISA::TlbEntry::setAttributes ( bool lpae)
inline

Definition at line 399 of file pagetable.hh.

References attributes, gem5::ArmISA::lpae, and updateAttributes().

Referenced by gem5::ArmISA::MMU::translateMmuOff().

◆ unserialize()

void gem5::ArmISA::TlbEntry::unserialize ( CheckpointIn & cp)
inlineoverridevirtual

Unserialize an object.

Read an object's state from the current checkpoint section.

Parameters
cpCheckpoint state

Implements gem5::Serializable.

Definition at line 445 of file pagetable.hh.

References ap, asid, attributes, domain, global, hap, innerAttrs, longDescFormat, lookupLevel, mtype, N, nonCacheable, ns, nstid, outerAttrs, outerShareable, gem5::paramIn(), pfn, pxn, shareable, size, type, UNSERIALIZE_ENUM, UNSERIALIZE_SCALAR, valid, vmid, vpn, and xn.

◆ updateAttributes()

void gem5::ArmISA::TlbEntry::updateAttributes ( )
inline

Formatting for Physical Address Register (PAR) Only including lower bits (TLB info here) PAR (32-bit format): PA [31:12] LPAE [11] (Large Physical Address Extension) TLB info [10:1] NOS [10] (Not Outer Sharable) NS [9] (Non-Secure) – [8] (Implementation Defined) SH [7] (Sharable) Inner[6:4](Inner memory attributes) Outer[3:2](Outer memory attributes) SS [1] (SuperSection) F [0] (Fault, Fault Status in [6:1] if faulted)

Definition at line 357 of file pagetable.hh.

References attributes, innerAttrs, gem5::ArmISA::mask, ns, outerAttrs, outerShareable, and shareable.

Referenced by gem5::ArmISA::Stage2LookUp::mergeTe(), and setAttributes().

◆ updateVaddr()

void gem5::ArmISA::TlbEntry::updateVaddr ( Addr new_vaddr)
inline

Definition at line 300 of file pagetable.hh.

References gem5::ArmISA::PageShift, and vpn.

Member Data Documentation

◆ ap

uint8_t gem5::ArmISA::TlbEntry::ap

◆ asid

uint16_t gem5::ArmISA::TlbEntry::asid

◆ attributes

uint64_t gem5::ArmISA::TlbEntry::attributes

◆ domain

DomainType gem5::ArmISA::TlbEntry::domain

Definition at line 230 of file pagetable.hh.

Referenced by gem5::ArmISA::TLB::insert(), serialize(), and unserialize().

◆ global

bool gem5::ArmISA::TlbEntry::global

◆ hap

uint8_t gem5::ArmISA::TlbEntry::hap

Definition at line 229 of file pagetable.hh.

Referenced by serialize(), and unserialize().

◆ innerAttrs

uint8_t gem5::ArmISA::TlbEntry::innerAttrs

◆ longDescFormat

bool gem5::ArmISA::TlbEntry::longDescFormat

Definition at line 235 of file pagetable.hh.

Referenced by serialize(), and unserialize().

◆ lookupLevel

◆ mtype

MemoryType gem5::ArmISA::TlbEntry::mtype

◆ N

uint8_t gem5::ArmISA::TlbEntry::N

◆ nonCacheable

bool gem5::ArmISA::TlbEntry::nonCacheable

◆ ns

◆ nstid

bool gem5::ArmISA::TlbEntry::nstid

◆ outerAttrs

uint8_t gem5::ArmISA::TlbEntry::outerAttrs

◆ outerShareable

bool gem5::ArmISA::TlbEntry::outerShareable

◆ partial

◆ pfn

◆ pxn

bool gem5::ArmISA::TlbEntry::pxn

Definition at line 261 of file pagetable.hh.

Referenced by serialize(), unserialize(), and gem5::ArmISA::TableWalker::walkAddresses().

◆ regime

TranslationRegime gem5::ArmISA::TlbEntry::regime

◆ shareable

bool gem5::ArmISA::TlbEntry::shareable

◆ size

◆ tg

GrainSize gem5::ArmISA::TlbEntry::tg

Definition at line 224 of file pagetable.hh.

◆ type

TypeTLB gem5::ArmISA::TlbEntry::type

Definition at line 248 of file pagetable.hh.

Referenced by gem5::ArmISA::TLB::checkPromotion(), serialize(), and unserialize().

◆ valid

◆ vmid

vmid_t gem5::ArmISA::TlbEntry::vmid

Definition at line 223 of file pagetable.hh.

Referenced by gem5::ArmISA::TLB::insert(), match(), print(), serialize(), and unserialize().

◆ vpn

◆ xn


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

Generated on Tue Jun 18 2024 16:24:17 for gem5 by doxygen 1.11.0