29 #ifndef __ARCH_SPARC_TLB_HH__ 30 #define __ARCH_SPARC_TLB_HH__ 37 #include "params/SparcTLB.hh" 118 bool update_used =
true);
125 void insert(
Addr vpn,
int partition_id,
int context_id,
bool real,
157 TLB(
const Params *
p);
164 panic(
"demapPage(Addr) is not implemented.\n");
195 uint64_t c0_config, uint64_t cX_tsb, uint64_t cX_config);
204 #endif // __ARCH_SPARC_TLB_HH__ void demapContext(int partition_id, int context_id)
Remove all entries that match a given context/partition id.
#define panic(...)
This implements a cprintf based panic() function.
void writeSfsr(bool write, ContextType ct, bool se, FaultTypes ft, int asi)
Cycles is a wrapper class for representing cycle counts, i.e.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write)
bool validVirtualAddress(Addr va, bool am)
Checks if the virtual address provided is a valid one.
uint64_t MakeTsbPtr(TsbPageSize ps, uint64_t tag_access, uint64_t c0_tsb, uint64_t c0_config, uint64_t cX_tsb, uint64_t cX_config)
TlbEntry * lookup(Addr va, int partition_id, bool real, int context_id=0, bool update_used=true)
lookup an entry in the TLB based on the partition id, and real bit if real is true or the partition i...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Cycles doMmuRegRead(ThreadContext *tc, Packet *pkt)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
RangeMap::iterator iterator
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Cycles doMmuRegWrite(ThreadContext *tc, Packet *pkt)
std::list< TlbEntry * > freeList
void demapPage(Addr va, int partition_id, bool real, int context_id)
Remve all entries that match a certain partition id, (contextid), and va).
const Addr StartVAddrHole
void flushAll() override
Remove all entries from the TLB.
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define ULL(N)
uint64_t constant
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
void writeTagAccess(Addr va, int context)
void insert(Addr vpn, int partition_id, int context_id, bool real, const PageTableEntry &PTE, int entry=-1)
Insert a PTE into the TLB.
void GetTsbPtr(ThreadContext *tc, Addr addr, int ctx, Addr *ptrs)
std::ostream CheckpointOut
uint64_t TagRead(int entry)
Given an entry id, read that tlb entries' tag.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void demapPage(Addr vaddr, uint64_t asn) override
uint64_t TteRead(int entry)
Give an entry id, read that tlb entries' tte.
void demapAll(int partition_id)
Remove all non-locked entries from the tlb that match partition id.
Fault translateInst(const RequestPtr &req, ThreadContext *tc)
std::shared_ptr< FaultBase > Fault