gem5
v20.1.0.0
|
The physical memory encapsulates all memories in the system and provides basic functionality for accessing those memories without going through the memory system and interconnect. More...
#include <physical.hh>
Public Member Functions | |
PhysicalMemory (const std::string &_name, const std::vector< AbstractMemory * > &_memories, bool mmap_using_noreserve, const std::string &shared_backstore) | |
Create a physical memory object, wrapping a number of memories. More... | |
~PhysicalMemory () | |
Unmap all the backing store we have used. More... | |
const std::string | name () const |
Return the name for debugging and for creation of sections for checkpointing. More... | |
bool | isMemAddr (Addr addr) const |
Check if a physical address is within a range of a memory that is part of the global address map. More... | |
AddrRangeList | getConfAddrRanges () const |
Get the memory ranges for all memories that are to be reported to the configuration table. More... | |
uint64_t | totalSize () const |
Get the total physical memory size. More... | |
std::vector< BackingStoreEntry > | getBackingStore () const |
Get the pointers to the backing store for external host access. More... | |
void | access (PacketPtr pkt) |
Perform an untimed memory access and update all the state (e.g. More... | |
void | functionalAccess (PacketPtr pkt) |
Perform an untimed memory read or write without changing anything but the memory itself. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize all the memories in the system. More... | |
void | serializeStore (CheckpointOut &cp, unsigned int store_id, AddrRange range, uint8_t *pmem) const |
Serialize a specific store. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize the memories in the system. More... | |
void | unserializeStore (CheckpointIn &cp) |
Unserialize a specific backing store, identified by a section. More... | |
Public Member Functions inherited from Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Private Member Functions | |
PhysicalMemory (const PhysicalMemory &) | |
PhysicalMemory & | operator= (const PhysicalMemory &) |
void | createBackingStore (AddrRange range, const std::vector< AbstractMemory * > &_memories, bool conf_table_reported, bool in_addr_map, bool kvm_map) |
Create the memory region providing the backing store for a given address range that corresponds to a set of memories in the simulated system. More... | |
Private Attributes | |
std::string | _name |
AddrRangeMap< AbstractMemory *, 1 > | addrMap |
std::vector< AbstractMemory * > | memories |
uint64_t | size |
const bool | mmapUsingNoReserve |
const std::string | sharedBackstore |
std::vector< BackingStoreEntry > | backingStore |
Additional Inherited Members | |
Static Public Member Functions inherited from Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
The physical memory encapsulates all memories in the system and provides basic functionality for accessing those memories without going through the memory system and interconnect.
The physical memory is also responsible for providing the host system backingstore used by the memories in the simulated guest system. When the system is created, the physical memory allocates the backing store based on the address ranges that are populated in the system, and does so independent of how those map to actual memory controllers. Thus, the physical memory completely abstracts the mapping of the backing store of the host system and the address mapping in the guest system. This enables us to arbitrarily change the number of memory controllers, and their address mapping, as long as the ranges stay the same.
Definition at line 110 of file physical.hh.
|
private |
PhysicalMemory::PhysicalMemory | ( | const std::string & | _name, |
const std::vector< AbstractMemory * > & | _memories, | ||
bool | mmap_using_noreserve, | ||
const std::string & | shared_backstore | ||
) |
Create a physical memory object, wrapping a number of memories.
PhysicalMemory::~PhysicalMemory | ( | ) |
Unmap all the backing store we have used.
Definition at line 244 of file physical.cc.
References backingStore, and ArmISA::s.
void PhysicalMemory::access | ( | PacketPtr | pkt | ) |
Perform an untimed memory access and update all the state (e.g.
locked addresses) and statistics accordingly. The packet is turned into a response if required.
pkt | Packet performing the access |
Definition at line 294 of file physical.cc.
References addrMap, AddrRangeMap< V, max_cache_size >::contains(), AddrRangeMap< V, max_cache_size >::end(), Packet::getAddrRange(), Packet::isRequest(), and ArmISA::m.
Referenced by NonCachingSimpleCPU::sendPacket().
|
private |
Create the memory region providing the backing store for a given address range that corresponds to a set of memories in the simulated system.
range | The address range covered |
memories | The memories this range maps to |
kvm_map | Should KVM map this memory for the guest |
Definition at line 185 of file physical.cc.
References backingStore, DPRINTF, fatal, AddrRange::interleaved(), ArmISA::m, mmapUsingNoReserve, panic, panic_if, sharedBackstore, AddrRange::size(), and AddrRange::to_string().
void PhysicalMemory::functionalAccess | ( | PacketPtr | pkt | ) |
Perform an untimed memory read or write without changing anything but the memory itself.
No stats are affected by this access. In addition to normal accesses this also facilitates print requests.
pkt | Packet performing the access |
Definition at line 303 of file physical.cc.
References addrMap, AddrRangeMap< V, max_cache_size >::contains(), AddrRangeMap< V, max_cache_size >::end(), Packet::getAddrRange(), Packet::isRequest(), and ArmISA::m.
|
inline |
Get the pointers to the backing store for external host access.
Note that memory in the guest should be accessed using access() or functionalAccess(). This interface is primarily intended for CPU models using hardware virtualization. Note that memories that are null are not present, and that the backing store may also contain memories that are not part of the OS-visible global address map and thus are allowed to overlap.
Definition at line 215 of file physical.hh.
References backingStore.
Referenced by KvmVM::delayedStartup().
AddrRangeList PhysicalMemory::getConfAddrRanges | ( | ) | const |
Get the memory ranges for all memories that are to be reported to the configuration table.
The ranges are merged before they are returned such that any interleaved ranges appear as a single range.
Definition at line 258 of file physical.cc.
References addrMap, and MipsISA::r.
Referenced by ArmSemihosting::gatherHeapInfo(), and ArmISA::FsLinux::initState().
bool PhysicalMemory::isMemAddr | ( | Addr | addr | ) | const |
Check if a physical address is within a range of a memory that is part of the global address map.
addr | A physical address |
Definition at line 252 of file physical.cc.
References addr, addrMap, AddrRangeMap< V, max_cache_size >::contains(), and AddrRangeMap< V, max_cache_size >::end().
Referenced by System::isMemAddr().
|
inline |
Return the name for debugging and for creation of sections for checkpointing.
Definition at line 175 of file physical.hh.
References _name.
Referenced by serializeStore().
|
private |
|
overridevirtual |
Serialize all the memories in the system.
This is independent of the logical memory layout, and the serialization only sees the contigous backing store, independent of how this maps to logical memories in the guest system.
os | stream to serialize to |
Implements Serializable.
Definition at line 312 of file physical.cc.
References backingStore, csprintf(), MipsISA::l, RiscvISA::locked_addrs, ArmISA::m, memories, ArmISA::s, SERIALIZE_CONTAINER, SERIALIZE_SCALAR, and serializeStore().
void PhysicalMemory::serializeStore | ( | CheckpointOut & | cp, |
unsigned int | store_id, | ||
AddrRange | range, | ||
uint8_t * | pmem | ||
) | const |
Serialize a specific store.
store_id | Unique identifier of this backing store |
range | The address range of this backing store |
pmem | The host pointer to this backing store |
Definition at line 342 of file physical.cc.
References CheckpointIn::dir(), DPRINTF, fatal, name(), SERIALIZE_SCALAR, AddrRange::size(), and sc_dt::to_string().
Referenced by serialize().
|
inline |
Get the total physical memory size.
Definition at line 201 of file physical.hh.
References size.
Referenced by System::allocPhysPages(), System::freeMemSize(), and System::memSize().
|
overridevirtual |
Unserialize the memories in the system.
As with the serialization, this action is independent of how the address ranges are mapped to logical memories in the guest system.
Implements Serializable.
Definition at line 388 of file physical.cc.
References addrMap, AddrRangeMap< V, max_cache_size >::contains(), csprintf(), ArmISA::i, ArmISA::m, UNSERIALIZE_CONTAINER, UNSERIALIZE_SCALAR, and unserializeStore().
void PhysicalMemory::unserializeStore | ( | CheckpointIn & | cp | ) |
Unserialize a specific backing store, identified by a section.
Definition at line 413 of file physical.cc.
References backingStore, DPRINTF, fatal, AddrRange::size(), UNSERIALIZE_SCALAR, and RiscvISA::x.
Referenced by unserialize().
|
private |
Definition at line 116 of file physical.hh.
Referenced by name().
|
private |
Definition at line 119 of file physical.hh.
Referenced by access(), functionalAccess(), getConfAddrRanges(), isMemAddr(), and unserialize().
|
private |
Definition at line 134 of file physical.hh.
Referenced by createBackingStore(), getBackingStore(), serialize(), unserializeStore(), and ~PhysicalMemory().
|
private |
Definition at line 122 of file physical.hh.
Referenced by serialize().
|
private |
Definition at line 128 of file physical.hh.
Referenced by createBackingStore().
|
private |
Definition at line 130 of file physical.hh.
Referenced by createBackingStore().
|
private |
Definition at line 125 of file physical.hh.
Referenced by totalSize().