Go to the documentation of this file.
52 #include "debug/TLB.hh"
53 #include "debug/TLBVerbose.hh"
54 #include "params/ArmTLB.hh"
59 using namespace ArmISA;
63 isStage2(
p.is_stage2),
66 stats(*this), rangeMRU(1), vmid(0)
68 for (
int lvl = LookupLevel::L0;
69 lvl < LookupLevel::Num_ArmLookupLevel; lvl++) {
72 p.partial_levels.begin(),
73 p.partial_levels.end(),
78 if (it !=
p.partial_levels.end()) {
84 if (lvl != LookupLevel::Num_ArmLookupLevel - 1) {
114 LookupLevel::Num_ArmLookupLevel, {0,
nullptr}};
132 for (
auto it = hits.rbegin(); it != hits.rend(); it++) {
133 const auto& [idx, entry] = *it;
144 for (
int i = idx;
i > 0;
i--)
146 table[0] = tmp_entry;
163 DPRINTF(TLBVerbose,
"Lookup %#x, asn %#x -> %s vmn 0x%x hyp %d secure %d "
164 "ppn %#x size: %#x pa: %#x ap:%d ns:%d nstid:%d g:%d asid: %d "
166 lookup_data.
va, lookup_data.
asn, retval ?
"hit" :
"miss",
168 retval ? retval->
pfn : 0, retval ? retval->
size : 0,
169 retval ? retval->
pAddr(lookup_data.
va) : 0,
170 retval ? retval->
ap : 0,
171 retval ? retval->
ns : 0, retval ? retval->
nstid : 0,
172 retval ? retval->
global : 0, retval ? retval->
asid : 0,
173 retval ? retval->
el : 0);
212 te =
tlb->multiLookup(lookup_data);
235 if (!(entry->
type & acc_type))
236 entry->
type = TypeTLB::unified;
243 DPRINTF(
TLB,
"Inserting entry into TLB with pfn:%#x size:%#x vpn: %#x"
244 " asid:%d vmid:%d N:%d global:%d valid:%d nc:%d xn:%d"
245 " ap:%#x domain:%#x ns:%d nstid:%d isHyp:%d\n", entry.
pfn,
252 DPRINTF(
TLB,
" - Replacing Valid entry %#x, asn %d vmn %d ppn %#x "
253 "size: %#x ap:%d ns:%d nstid:%d g:%d isHyp:%d el: %d\n",
261 for (
int i =
size - 1;
i > 0; --
i)
279 next_level->multiInsert(entry);
320 DPRINTF(
TLB,
"Flushing all TLB entries (%s lookup)\n",
326 const bool el_match =
te->checkELMatch(
344 DPRINTF(
TLB,
"Flushing all ITLB entries (%s lookup)\n",
350 const bool el_match =
te->checkELMatch(
352 if (
te->type & TypeTLB::instruction &&
te->valid &&
369 DPRINTF(
TLB,
"Flushing all DTLB entries (%s lookup)\n",
375 const bool el_match =
te->checkELMatch(
394 DPRINTF(
TLB,
"Flushing all TLB entries (%s lookup)\n",
400 const bool el_match =
te->checkELMatch(
417 DPRINTF(
TLB,
"Flushing all TLB entries (%s lookup)\n",
423 const bool el_match =
te->checkELMatch(
426 const bool vmid_match =
432 el_match && vmid_match) {
449 DPRINTF(
TLB,
"Flushing all NS TLB entries (%s lookup)\n",
450 (hyp ?
"hyp" :
"non-hyp"));
455 const bool el_match =
te->checkELMatch(tlbi_op.
targetEL,
false);
457 if (
te->valid &&
te->nstid &&
te->isHyp == hyp && el_match) {
472 DPRINTF(
TLB,
"Flushing TLB entries with mva: %#x, asid: %#x "
473 "(%s lookup)\n", tlbi_op.
addr, tlbi_op.
asid,
483 DPRINTF(
TLB,
"Flushing ITLB entries with mva: %#x, asid: %#x "
484 "(%s lookup)\n", tlbi_op.
addr, tlbi_op.
asid,
494 DPRINTF(
TLB,
"Flushing DTLB entries with mva: %#x, asid: %#x "
495 "(%s lookup)\n", tlbi_op.
addr, tlbi_op.
asid,
505 DPRINTF(
TLB,
"Flushing TLB entries with asid: %#x (%s lookup)\n",
514 const bool el_match =
te->checkELMatch(
517 const bool vmid_match =
520 if (
te->valid &&
te->asid == tlbi_op.
asid &&
522 vmid_match && el_match) {
536 DPRINTF(
TLB,
"Flushing ITLB entries with asid: %#x (%s lookup)\n",
544 if (
te->type & TypeTLB::instruction &&
545 te->valid &&
te->asid == tlbi_op.
asid &&
562 DPRINTF(
TLB,
"Flushing DTLB entries with asid: %#x (%s lookup)\n",
571 te->valid &&
te->asid == tlbi_op.
asid &&
588 DPRINTF(
TLB,
"Flushing TLB entries with mva: %#x (%s lookup)\n",
604 lookup_data.
va = sext<56>(mva);
605 lookup_data.
asn = asn;
608 lookup_data.
hyp = target_el ==
EL2;
609 lookup_data.
secure = secure_lookup;
612 lookup_data.
inHost = in_host;
617 bool matching_type = (
te->type & entry_type);
618 if (matching_type && secure_lookup == !
te->nstid) {
633 : statistics::
Group(&parent),
tlb(parent),
634 ADD_STAT(partialHits, statistics::units::Count::get(),
635 "partial translation hits"),
636 ADD_STAT(instHits, statistics::units::Count::get(),
"Inst hits"),
637 ADD_STAT(instMisses, statistics::units::Count::get(),
"Inst misses"),
638 ADD_STAT(readHits, statistics::units::Count::get(),
"Read hits"),
639 ADD_STAT(readMisses, statistics::units::Count::get(),
"Read misses"),
640 ADD_STAT(writeHits, statistics::units::Count::get(),
"Write hits"),
641 ADD_STAT(writeMisses, statistics::units::Count::get(),
"Write misses"),
642 ADD_STAT(inserts, statistics::units::Count::get(),
643 "Number of times an entry is inserted into the TLB"),
644 ADD_STAT(flushTlb, statistics::units::Count::get(),
645 "Number of times complete TLB was flushed"),
646 ADD_STAT(flushTlbMva, statistics::units::Count::get(),
647 "Number of times TLB was flushed by MVA"),
648 ADD_STAT(flushTlbMvaAsid, statistics::units::Count::get(),
649 "Number of times TLB was flushed by MVA & ASID"),
650 ADD_STAT(flushTlbAsid, statistics::units::Count::get(),
651 "Number of times TLB was flushed by ASID"),
652 ADD_STAT(flushedEntries, statistics::units::Count::get(),
653 "Number of entries that have been flushed from TLB"),
654 ADD_STAT(readAccesses, statistics::units::Count::get(),
"Read accesses",
655 readHits + readMisses),
656 ADD_STAT(writeAccesses, statistics::units::Count::get(),
"Write accesses",
657 writeHits + writeMisses),
658 ADD_STAT(instAccesses, statistics::units::Count::get(),
"Inst accesses",
659 instHits + instMisses),
660 ADD_STAT(hits, statistics::units::Count::get(),
661 "Total TLB (inst and data) hits",
662 readHits + writeHits + instHits),
663 ADD_STAT(misses, statistics::units::Count::get(),
664 "Total TLB (inst and data) misses",
665 readMisses + writeMisses + instMisses),
666 ADD_STAT(accesses, statistics::units::Count::get(),
667 "Total TLB (inst and data) accesses",
668 readAccesses + writeAccesses + instAccesses)
683 if (
tlb.
type() & TypeTLB::instruction) {
Instruction TLB Invalidate All.
TableWalker * tableWalker
probing::PMUUPtr ppRefills
PMU probe for TLB refills.
TlbEntry * lookup(const Lookup &lookup_data)
Lookup an entry in the TLB.
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
TLB Invalidate by ASID match.
statistics::Scalar partialHits
BaseTLB * nextLevel() const
Port & getTableWalkerPort()
TlbEntry * match(const Lookup &lookup_data)
Helper function looking up for a matching TLB entry Does not update stats; see lookup method instead.
statistics::Scalar readHits
const FlagsType nozero
Don't print if this is zero.
void multiInsert(TlbEntry &pte)
Insert a PTE in the current TLB and in the higher levels.
Data TLB Invalidate by ASID match.
Instruction TLB Invalidate by ASID match.
Instruction TLB Invalidate by VA.
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
enums::ArmLookupLevel LookupLevel
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...
TLB Invalidate All, Non-Secure.
TlbEntry * multiLookup(const Lookup &lookup_data)
Lookup an entry in the TLB and in the next levels by following the nextLevel pointer.
statistics::Scalar instHits
statistics::Scalar writeHits
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Port * getTableWalkerPort() override
Get the table walker port.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
statistics::Scalar readMisses
gem5::ArmISA::TLB::TlbStats stats
TLB Invalidate by VA, All ASID.
void flush(const TLBIALL &tlbi_op)
Reset the entire TLB.
bool _walkCache
True if the TLB caches partial translations.
statistics::Formula instAccesses
statistics::Scalar flushTlbMva
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void flushAll() override
Reset the entire TLB.
statistics::Formula writeAccesses
statistics::Scalar flushTlb
statistics::Scalar flushTlbAsid
statistics::Scalar writeMisses
ProbePointArg generates a point for the class of Arg.
ProbeManager * getProbeManager()
Get the probe manager for this object.
statistics::Scalar instMisses
Ports are used to interface objects to each other.
void regProbePoints() override
Register probe points for this object.
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 setTableWalker(TableWalker *table_walker)
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
void insert(TlbEntry &pte)
Insert a PTE in the current TLB.
void _flushMva(Addr mva, uint64_t asn, bool secure_lookup, bool ignore_asn, ExceptionLevel target_el, bool in_host, TypeTLB entry_type)
Remove any entries that match both a va and asn.
statistics::Scalar inserts
statistics::Scalar flushedEntries
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Data TLB Invalidate by VA.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Addr pAddr(Addr va) const
statistics::Formula readAccesses
statistics::Scalar flushTlbMvaAsid
Generated on Tue Dec 21 2021 11:34:05 for gem5 by doxygen 1.8.17