52#include "debug/TLB.hh"
53#include "debug/TLBVerbose.hh"
54#include "params/ArmTLB.hh"
59using namespace ArmISA;
64 auto entry = findEntry(key);
66 if (entry && !key.functional) {
77 if (prev && prev->N == key.pageSize && prev->match(key)) {
81 for (
auto candidate : indexingPolicy->getPossibleEntries(key)) {
82 auto entry =
static_cast<TlbEntry*
>(candidate);
86 if (entry->N == key.pageSize && entry->match(key)) {
97 if (!invalid || invalid == prev)
103 table(
name().c_str(),
p.size,
p.assoc,
104 p.replacement_policy,
p.indexing_policy),
106 isStage2(
p.is_stage2),
108 tableWalker(nullptr),
109 stats(*this), rangeMRU(1), vmid(0)
111 for (
int lvl = LookupLevel::L0;
112 lvl < LookupLevel::Num_ArmLookupLevel; lvl++) {
115 p.partial_levels.begin(),
116 p.partial_levels.end(),
121 if (it !=
p.partial_levels.end()) {
127 if (lvl != LookupLevel::Num_ArmLookupLevel - 1) {
164 DPRINTF(TLBVerbose,
"Lookup %#x, asn %#x -> %s vmn 0x%x ss %s "
165 "ppn %#x size: %#x pa: %#x ap:%d ns:%d ss:%s g:%d asid: %d "
166 "xs: %d regime: %s\n",
167 lookup_data.
va, lookup_data.
asn, retval ?
"hit" :
"miss",
168 lookup_data.
vmid, lookup_data.
ss,
169 retval ? retval->
pfn : 0, retval ? retval->
size : 0,
170 retval ? retval->
pAddr(lookup_data.
va) : 0,
171 retval ? retval->
ap : 0,
172 retval ? retval->
ns : 0,
174 retval ? retval->
global : 0, retval ? retval->
asid : 0,
175 retval ? retval->
xs : 0,
215 te =
tlb->multiLookup(lookup_data);
233 TypeTLB::instruction : TypeTLB::data;
238 if (!(entry->
type & acc_type))
239 entry->
type = TypeTLB::unified;
269 next_level->multiInsert(
lookup, entry);
304 bool valid_entry =
false;
314 valid_entry = valid_entry ||
te.valid;
328 : statistics::
Group(&parent),
tlb(parent),
329 ADD_STAT(partialHits, statistics::units::Count::get(),
330 "partial translation hits"),
331 ADD_STAT(instHits, statistics::units::Count::get(),
"Inst hits"),
332 ADD_STAT(instMisses, statistics::units::Count::get(),
"Inst misses"),
333 ADD_STAT(readHits, statistics::units::Count::get(),
"Read hits"),
334 ADD_STAT(readMisses, statistics::units::Count::get(),
"Read misses"),
335 ADD_STAT(writeHits, statistics::units::Count::get(),
"Write hits"),
336 ADD_STAT(writeMisses, statistics::units::Count::get(),
"Write misses"),
337 ADD_STAT(inserts, statistics::units::Count::get(),
338 "Number of times an entry is inserted into the TLB"),
339 ADD_STAT(flushTlb, statistics::units::Count::get(),
340 "Number of times a TLB invalidation was requested"),
341 ADD_STAT(flushedEntries, statistics::units::Count::get(),
342 "Number of entries that have been flushed from TLB"),
343 ADD_STAT(readAccesses, statistics::units::Count::get(),
"Read accesses",
344 readHits + readMisses),
345 ADD_STAT(writeAccesses, statistics::units::Count::get(),
"Write accesses",
346 writeHits + writeMisses),
347 ADD_STAT(instAccesses, statistics::units::Count::get(),
"Inst accesses",
348 instHits + instMisses),
349 ADD_STAT(hits, statistics::units::Count::get(),
350 "Total TLB (inst and data) hits",
351 readHits + writeHits + instHits),
352 ADD_STAT(misses, statistics::units::Count::get(),
353 "Total TLB (inst and data) misses",
354 readMisses + writeMisses + instMisses),
355 ADD_STAT(accesses, statistics::units::Count::get(),
356 "Total TLB (inst and data) accesses",
357 readAccesses + writeAccesses + instAccesses)
362 if (
tlb.
type() == TypeTLB::data) {
372 if (
tlb.
type() & TypeTLB::instruction) {
bool match(TlbEntry *entry, vmid_t curr_vmid) const
TlbEntry * findEntry(const KeyType &key) const override
Find an entry within the set.
TlbEntry * accessEntry(const KeyType &key) override
Do an access to the entry if it exists.
void invalidatePrev(const TlbEntry *invalid=nullptr)
Invalidate the last matched entry The method has an optional param, which means: invalidate cached pr...
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
TableWalker * tableWalker
std::set< Addr > observedPageSizes
Set of observed page sizes in the TLB We update the set conservatively, therefore allowing false posi...
void setTableWalker(TableWalker *table_walker)
TlbEntry * multiLookup(const Lookup &lookup_data)
Lookup an entry in the TLB and in the next levels by following the nextLevel pointer.
void flush(const TLBIOp &tlbi_op)
Flush TLB entries.
void regProbePoints() override
Register probe points for this object.
Port * getTableWalkerPort() override
Get the table walker port.
probing::PMUUPtr ppRefills
PMU probe for TLB refills.
bool _walkCache
True if the TLB caches partial translations.
gem5::ArmISA::TLB::Table table
std::unordered_map< enums::ArmLookupLevel, bool > partialLevels
Hash map containing one entry per lookup level The TLB is caching partial translations from the key l...
void insert(const Lookup &lookup_data, TlbEntry &pte)
Insert a PTE in the current TLB.
void checkPromotion(TlbEntry *entry, BaseMMU::Mode mode)
Check if the tlb entry passed as an argument needs to be "promoted" as a unified entry: this should h...
gem5::ArmISA::TLB::TlbStats stats
TlbEntry * lookup(Lookup lookup_data)
Lookup an entry in the TLB.
enums::ArmLookupLevel LookupLevel
void flushAll() override
Reset the entire TLB.
void multiInsert(const Lookup &lookup_data, TlbEntry &pte)
Insert a PTE in the current TLB and in the higher levels.
Port & getTableWalkerPort()
virtual Entry * findVictim(const KeyType &key)
Find a victim to be replaced.
virtual void insertEntry(const KeyType &key, Entry *entry)
Indicate that an entry has just been inserted.
virtual void invalidate(Entry *entry)
Invalidate an entry and its respective replacement data.
void setDebugFlag(const ::gem5::debug::SimpleFlag &flag)
BaseTLB * nextLevel() const
Ports are used to interface objects to each other.
ProbePointArg generates a point for the class of Arg.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
ProbeManager * getProbeManager()
Get the probe manager for this object.
static const char * regimeToStr(TranslationRegime regime)
const FlagsType nozero
Don't print if this is zero.
Copyright (c) 2024 Arm Limited All rights reserved.
statistics::Formula writeAccesses
statistics::Scalar readHits
statistics::Scalar instHits
statistics::Scalar flushedEntries
statistics::Formula readAccesses
statistics::Scalar inserts
statistics::Scalar flushTlb
statistics::Scalar readMisses
statistics::Scalar writeHits
statistics::Scalar writeMisses
statistics::Formula instAccesses
statistics::Scalar instMisses
statistics::Scalar partialHits
Addr pAddr(Addr va) const
The file contains the definition of a set of TLB Invalidate Instructions.
const std::string & name()