43 #include "debug/MipsPRA.hh" 44 #include "debug/TLB.hh" 46 #include "params/MipsTLB.hh" 58 :
BaseTLB(p), size(p->size), nlu(0)
78 while (i->first == vpn) {
79 int index = i->second;
86 if (((vpn & InvMask) == (VPN & InvMask)) &&
87 (pte->
G || (asn == pte->
asid))) {
96 DPRINTF(
TLB,
"lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (
int)asn,
97 retval ?
"hit" :
"miss", retval ? retval->
PFN1 : 0);
106 return &
table[Index];
116 while (i->first == vpn) {
117 int index = i->second;
122 Addr InvMask = ~Mask;
124 if (((vpn & InvMask) == (VPN & InvMask)) &&
125 (pte->
G || (asn == pte->
asid))) {
133 DPRINTF(MipsPRA,
"VPN: %x, asid: %d, Result of TLBP: %d\n",vpn,asn,Ind);
140 Addr VAddrUncacheable = 0xA0000000;
143 if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
155 warn(
"Attempted to write at index (%d) beyond TLB size (%d)",
160 Index, pte.
Mask << 11,
162 ((pte.
PFN0 << 6) | (pte.
C0 << 3) |
163 (pte.
D0 << 2) | (pte.
V0 <<1) | pte.
G),
164 ((pte.
PFN1 <<6) | (pte.
C1 << 3) |
165 (pte.
D1 << 2) | (pte.
V1 <<1) | pte.
G));
181 fatal(
"TLB Insert not yet implemented\n");
199 for (
int i = 0;
i <
size;
i++) {
211 for (
int i = 0;
i <
size;
i++) {
227 .
desc(
"DTB read hits")
232 .
desc(
"DTB read misses")
238 .
desc(
"DTB read accesses")
243 .
desc(
"DTB write hits")
248 .
desc(
"DTB write misses")
254 .
desc(
"DTB write accesses")
269 .
desc(
"DTB accesses")
319 MipsTLBParams::create()
321 return new TLB(
this);
MipsISA::PTE & index(bool advance=true)
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
decltype(nullptr) constexpr NoFault
void serialize(CheckpointOut &cp) const override
Serialize an object.
#define fatal(...)
This implements a cprintf based fatal() function.
MipsISA::PTE * lookup(Addr vpn, uint8_t asn) const
std::shared_ptr< Request > RequestPtr
void flushAll() override
Remove all entries from the TLB.
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
virtual Process * getProcessPtr()=0
Overload hash function for BasicBlockRange type.
void regStats() override
Callback to set stat parameters.
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
ThreadContext is the external interface to all thread state for anything outside of the CPU...
The request is to an uncacheable address.
MipsISA::PTE * getEntry(unsigned) const
#define UNSERIALIZE_SCALAR(scalar)
std::string csprintf(const char *format, const Args &...args)
bool translate(Addr vaddr, Addr &paddr)
Translate function.
Stats::Scalar write_misses
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Declaration of IniFile object.
void unserialize(CheckpointIn &cp)
Stats::Scalar read_misses
#define SERIALIZE_SCALAR(scalar)
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
virtual const std::string name() const
EmulationPageTable * pTable
Declarations of a non-full system Page Table.
int probeEntry(Addr vpn, uint8_t) const
std::ostream CheckpointOut
static Fault checkCacheability(const RequestPtr &req)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Stats::Scalar read_accesses
void insertAt(MipsISA::PTE &pte, unsigned Index, int _smallPages)
void serialize(CheckpointOut &cp) const
The request is required to be strictly ordered by CPU models and is non-speculative.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
virtual void regStats()
Callback to set stat parameters.
Scoped checkpoint section helper class.
Stats::Scalar write_accesses
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
std::shared_ptr< FaultBase > Fault
void insert(Addr vaddr, MipsISA::PTE &pte)
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.