44 #include "debug/Power.hh" 45 #include "debug/TLB.hh" 47 #include "params/PowerTLB.hh" 59 #define MODE2MASK(X) (1 << (X)) 62 :
BaseTLB(p), size(p->size), nlu(0)
83 while (i->first == vpn) {
84 int index = i->second;
89 if (((vpn & InvMask) == (VPN & InvMask))
90 && (pte->
G || (asn == pte->
asid))) {
100 DPRINTF(
TLB,
"lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (
int)asn,
101 retval ?
"hit" :
"miss", retval ? retval->
PFN1 : 0);
110 return &
table[Index];
120 while (i->first == vpn) {
121 int index = i->second;
124 Addr InvMask = ~Mask;
126 if (((vpn & InvMask) == (VPN & InvMask))
127 && (pte->
G || (asn == pte->
asid))) {
137 DPRINTF(
Power,
"VPN: %x, asid: %d, Result of TLBP: %d\n", vpn, asn, Ind);
144 Addr VAddrUncacheable = 0xA0000000;
145 if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
158 warn(
"Attempted to write at index (%d) beyond TLB size (%d)",
180 fatal(
"TLB Insert not yet implemented\n");
198 for (
int i = 0;
i <
size;
i++) {
210 for (
int i = 0;
i <
size;
i++) {
225 .
desc(
"DTB read hits")
230 .
desc(
"DTB read misses")
236 .
desc(
"DTB read accesses")
241 .
desc(
"DTB write hits")
246 .
desc(
"DTB write misses")
252 .
desc(
"DTB write accesses")
267 .
desc(
"DTB accesses")
279 if (req->getVaddr() & 0x3) {
280 DPRINTF(
TLB,
"Alignment Fault on %#x, size = %d\n", req->getVaddr(),
282 return std::make_shared<AlignmentFault>();
298 "translateAtomic not yet implemented for full system.");
310 "translateFunctional not implemented for full system.");
341 PowerTLBParams::create()
void serialize(CheckpointOut &cp) const
Stats::Scalar read_misses
decltype(nullptr) constexpr NoFault
static Fault checkCacheability(const RequestPtr &req)
#define fatal(...)
This implements a cprintf based fatal() function.
PowerISA::PTE * lookup(Addr vpn, uint8_t asn) const
void insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
std::shared_ptr< Request > RequestPtr
Stats::Scalar write_accesses
PowerISA::PTE & index(bool advance=true)
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.
Stats::Scalar read_accesses
void insert(Addr vaddr, PowerISA::PTE &pte)
ThreadContext is the external interface to all thread state for anything outside of the CPU...
The request is to an uncacheable address.
#define UNSERIALIZE_SCALAR(scalar)
std::string csprintf(const char *format, const Args &...args)
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
bool translate(Addr vaddr, Addr &paddr)
Translate function.
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
void regStats() override
Callback to set stat parameters.
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Declaration of IniFile object.
Fault translateInst(const RequestPtr &req, ThreadContext *tc)
#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.
std::ostream CheckpointOut
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Stats::Scalar write_misses
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.
int probeEntry(Addr vpn, uint8_t) const
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Scoped checkpoint section helper class.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write)
PowerISA::PTE * getEntry(unsigned) const
std::shared_ptr< FaultBase > Fault
void flushAll() override
Remove all entries from the TLB.