gem5
v21.0.0.0
|
#include <smmu_v3_caches.hh>
Classes | |
struct | Entry |
struct | WalkCacheStats |
Public Member Functions | |
WalkCache (const std::array< unsigned, 2 *WALK_CACHE_LEVELS > &_sizes, unsigned _associativity, const std::string &policy, Stats::Group *parent) | |
virtual | ~WalkCache () |
const Entry * | lookup (Addr va, Addr vaMask, uint16_t asid, uint16_t vmid, unsigned stage, unsigned level, bool updStats=true) |
void | store (const Entry &incoming) |
void | invalidateVA (Addr va, uint16_t asid, uint16_t vmid, const bool leaf_only) |
void | invalidateVAA (Addr va, uint16_t vmid, const bool leaf_only) |
void | invalidateASID (uint16_t asid, uint16_t vmid) |
void | invalidateVMID (uint16_t vmid) |
void | invalidateAll () |
![]() | |
SMMUv3BaseCache (const std::string &policy_name, uint32_t seed, Stats::Group *parent, const std::string &name) | |
virtual | ~SMMUv3BaseCache () |
Protected Attributes | |
WalkCache::WalkCacheStats | walkCacheStats |
![]() | |
int | replacementPolicy |
size_t | nextToReplace |
Random | random |
uint32_t | useStamp |
SMMUv3BaseCache::SMMUv3BaseCacheStats | baseCacheStats |
Private Types | |
typedef std::vector< Entry > | Set |
Private Member Functions | |
size_t | pickSetIdx (Addr va, Addr vaMask, unsigned stage, unsigned level) const |
size_t | pickEntryIdxToReplace (const Set &set, unsigned stage, unsigned level) |
Private Attributes | |
std::vector< Set > | sets |
size_t | associativity |
std::array< unsigned, 2 *WALK_CACHE_LEVELS > | sizes |
std::array< unsigned, 2 *WALK_CACHE_LEVELS > | offsets |
Additional Inherited Members | |
![]() | |
static int | decodePolicyName (const std::string &policy_name) |
Definition at line 286 of file smmu_v3_caches.hh.
|
private |
Definition at line 344 of file smmu_v3_caches.hh.
WalkCache::WalkCache | ( | const std::array< unsigned, 2 *WALK_CACHE_LEVELS > & | _sizes, |
unsigned | _associativity, | ||
const std::string & | policy, | ||
Stats::Group * | parent | ||
) |
Definition at line 971 of file smmu_v3_caches.cc.
References associativity, ArmISA::e, fatal, ArmISA::i, offsets, sets, sizes, and WALK_CACHE_LEVELS.
|
inlinevirtual |
Definition at line 311 of file smmu_v3_caches.hh.
void WalkCache::invalidateAll | ( | ) |
Definition at line 1152 of file smmu_v3_caches.cc.
References ArmISA::i, ArmISA::s, and sets.
Referenced by SMMUv3::processCommand().
void WalkCache::invalidateASID | ( | uint16_t | asid, |
uint16_t | vmid | ||
) |
Definition at line 1122 of file smmu_v3_caches.cc.
References ArmISA::asid, ArmISA::e, ArmISA::i, ArmISA::s, and sets.
Referenced by SMMUv3::processCommand().
void WalkCache::invalidateVA | ( | Addr | va, |
uint16_t | asid, | ||
uint16_t | vmid, | ||
const bool | leaf_only | ||
) |
Definition at line 1085 of file smmu_v3_caches.cc.
References ArmISA::asid, ArmISA::e, ArmISA::i, ArmISA::s, sets, and ArmISA::va.
Referenced by SMMUv3::processCommand().
void WalkCache::invalidateVAA | ( | Addr | va, |
uint16_t | vmid, | ||
const bool | leaf_only | ||
) |
Definition at line 1104 of file smmu_v3_caches.cc.
References ArmISA::e, ArmISA::i, ArmISA::s, sets, and ArmISA::va.
Referenced by SMMUv3::processCommand().
void WalkCache::invalidateVMID | ( | uint16_t | vmid | ) |
Definition at line 1137 of file smmu_v3_caches.cc.
References ArmISA::e, ArmISA::i, ArmISA::s, and sets.
Referenced by SMMUv3::processCommand().
const WalkCache::Entry * WalkCache::lookup | ( | Addr | va, |
Addr | vaMask, | ||
uint16_t | asid, | ||
uint16_t | vmid, | ||
unsigned | stage, | ||
unsigned | level, | ||
bool | updStats = true |
||
) |
Definition at line 1015 of file smmu_v3_caches.cc.
References ArmISA::asid, SMMUv3BaseCache::baseCacheStats, ArmISA::e, ArmISA::i, WalkCache::Entry::lastUsed, X86ISA::level, panic, pickSetIdx(), sets, SMMUv3BaseCache::SMMUv3BaseCacheStats::totalLookups, WalkCache::WalkCacheStats::totalLookupsByStageLevel, SMMUv3BaseCache::SMMUv3BaseCacheStats::totalMisses, WalkCache::WalkCacheStats::totalMissesByStageLevel, SMMUv3BaseCache::useStamp, ArmISA::va, and walkCacheStats.
Referenced by store(), and SMMUTranslationProcess::walkCacheLookup().
|
private |
Definition at line 1191 of file smmu_v3_caches.cc.
References associativity, SMMUv3BaseCache::baseCacheStats, ArmISA::i, SMMUv3BaseCache::SMMUv3BaseCacheStats::insertions, WalkCache::WalkCacheStats::insertionsByStageLevel, X86ISA::level, SMMUv3BaseCache::nextToReplace, panic, SMMUv3BaseCache::random, Random::random(), SMMUv3BaseCache::replacementPolicy, SMMU_CACHE_REPL_LRU, SMMU_CACHE_REPL_RANDOM, SMMU_CACHE_REPL_ROUND_ROBIN, and walkCacheStats.
Referenced by store().
Definition at line 1163 of file smmu_v3_caches.cc.
References findLsbSet(), X86ISA::level, ArmISA::offset, offsets, panic, sizes, ArmISA::va, and WALK_CACHE_LEVELS.
void WalkCache::store | ( | const Entry & | incoming | ) |
Definition at line 1056 of file smmu_v3_caches.cc.
References WalkCache::Entry::asid, SMMUv3BaseCache::baseCacheStats, WalkCache::Entry::lastUsed, WalkCache::Entry::level, lookup(), panic, pickEntryIdxToReplace(), pickSetIdx(), sets, WalkCache::Entry::stage, SMMUv3BaseCache::SMMUv3BaseCacheStats::totalUpdates, WalkCache::WalkCacheStats::totalUpdatesByStageLevel, WalkCache::Entry::va, WalkCache::Entry::valid, WalkCache::Entry::vaMask, WalkCache::Entry::vmid, WALK_CACHE_LEVELS, and walkCacheStats.
Referenced by SMMUTranslationProcess::walkCacheUpdate().
|
private |
Definition at line 347 of file smmu_v3_caches.hh.
Referenced by pickEntryIdxToReplace(), and WalkCache().
|
private |
Definition at line 349 of file smmu_v3_caches.hh.
Referenced by pickSetIdx(), and WalkCache().
|
private |
Definition at line 345 of file smmu_v3_caches.hh.
Referenced by invalidateAll(), invalidateASID(), invalidateVA(), invalidateVAA(), invalidateVMID(), lookup(), store(), and WalkCache().
|
private |
Definition at line 348 of file smmu_v3_caches.hh.
Referenced by pickSetIdx(), and WalkCache().
|
protected |
Referenced by lookup(), pickEntryIdxToReplace(), and store().