Go to the documentation of this file.
47 #include <unordered_map>
54 #include "config/the_isa.hh"
56 #include "enums/MemoryMode.hh"
61 #include "params/System.hh"
98 panic(
"SystemPort does not receive timing!");
104 panic(
"SystemPort does not expect retry!");
112 std::unordered_map<RequestorID, std::vector<memory::AbstractMemory *>>
127 std::string
name()
const;
200 return !(*
this == other);
285 return memoryMode == enums::atomic_noncaching;
466 std::string subrequestor={});
501 const std::string& requestor_name);
508 const std::string& subrequestor);
621 #endif // __SYSTEM_HH__
Tick curTick()
The universal simulation clock.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
void addDeviceMemory(RequestorID requestorId, memory::AbstractMemory *deviceMemory)
Add a physical memory range for a device.
const Thread & thread(ContextID id) const
std::map< std::pair< uint32_t, uint32_t >, Tick > lastWorkItemStarted
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
std::set< int > PIDs
Process set to track which PIDs have already been allocated.
const_iterator(const Threads &_threads, int _pos)
void workItemEnd(uint32_t tid, uint32_t workid)
RequestorID lookupRequestorId(const SimObject *obj) const
Looks up the RequestorID for a given SimObject returns an invalid RequestorID (invldRequestorId) if n...
std::list< PCEvent * > liveEvents
RequestPort & getSystemPort()
Get a reference to the system port that can be used by non-structural simulation objects like process...
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
The physical memory encapsulates all memories in the system and provides basic functionality for acce...
bool schedule(PCEvent *event) override
const ContextID InvalidContextID
void quiesce(ContextID id)
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Additional function to return the Port of a memory object.
bool isAtomicMode() const
Is the system in atomic mode?
uint64_t incWorkItemsEnd()
Called by pseudo_inst to track the number of work items completed by this system.
bool bypassCaches() const
Should caches be bypassed?
std::map< uint32_t, statistics::Histogram * > workItemStats
AddrRangeList getShadowRomRanges() const
Workload * workload
OS kernel.
void replace(ThreadContext *tc, ContextID id)
const_iterator end() const
void setMemoryMode(enums::MemoryMode mode)
Change the memory mode of the system.
void schedule(Event &event, Tick when)
std::forward_iterator_tag iterator_category
static int numSystemsRunning
ThermalModel * getThermalModel() const
The thermal model used for this system (if any).
void regStats() override
Callback to set stat parameters.
memory::AbstractMemory * getDeviceMemory(const PacketPtr &pkt) const
Return a pointer to the device memory.
ByteOrder getGuestByteOrder() const
Get the guest byte order.
const PortID InvalidPortID
RequestorID _getRequestorId(const SimObject *requestor, const std::string &requestor_name)
helper function for getRequestorId
unsigned int cacheLineSize() const
Get the cache line size of the system.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
std::string stripSystemName(const std::string &requestor_name) const
Strips off the system name from a requestor name.
const_iterator & operator++()
void quiesceTick(ContextID id, Tick when)
std::vector< RequestorInfo > requestors
This array is a per-system list of all devices capable of issuing a memory system request and an asso...
const memory::PhysicalMemory & getPhysMem() const
Bitfield< 23, 20 > atomic
std::vector< RedirectPath * > redirectPaths
std::vector< Thread > threads
std::unordered_map< RequestorID, std::vector< memory::AbstractMemory * > > deviceMemMap
uint64_t incWorkItemsBegin()
Called by pseudo_inst to track the number of work items started by this system.
FutexMap class holds a map of all futexes used in the system.
RequestorID maxRequestors()
Get the number of requestors registered in the system.
std::list< BasicSignal > signalList
ThreadContext is the external interface to all thread state for anything outside of the CPU.
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.
virtual std::string name() const
memory::PhysicalMemory physmem
KvmVM * getKvmVM()
Get a pointer to the Kernel Virtual Machine (KVM) SimObject, if present.
static std::vector< System * > systemList
ThreadContext * operator[](ContextID id) const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
An abstract memory represents a contiguous block of physical memory, with an associated address range...
uint64_t Tick
Tick count type.
std::string getRequestorName(RequestorID requestor_id)
Get the name of an object for a given request id.
RequestorID getGlobalRequestorId(const std::string &requestor_name)
Registers a GLOBAL RequestorID, which is a RequestorID not related to any particular SimObject; since...
bool operator==(const const_iterator &other) const
This object is a proxy for a port or other object which implements the functional response protocol,...
const_iterator & operator=(const const_iterator &)=default
enums::MemoryMode getMemoryMode() const
Get the memory mode of the system.
RequestorID getRequestorId(const SimObject *requestor, std::string subrequestor={})
Request an id used to create a request object in the system.
Private class for the system port which is only used as a requestor for debug access and for non-stru...
Addr memSize() const
Amount of physical memory that exists.
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
enums::MemoryMode memoryMode
Abstract superclass for simulation objects.
bool isTimingMode() const
Is the system in timing mode?
SystemPort(const std::string &_name, SimObject *_owner)
Create a system port with a name and an owner.
const_iterator begin() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool remove(PCEvent *event) override
void unserialize(CheckpointIn &cp) override
Unserialize an object.
std::string leafRequestorName(const SimObject *requestor, const std::string &subrequestor)
Helper function for constructing the full (sub)requestor name by providing the root requestor and the...
bool trapToGdb(int signal, ContextID ctx_id) const
bool isDeviceMemAddr(const PacketPtr &pkt) const
Similar to isMemAddr but for devices.
Ports are used to interface objects to each other.
AddrRangeList ShadowRomRanges
Thread & thread(ContextID id)
const AddrRange & m5opRange() const
Range used by memory-mapped m5 pseudo-ops if enabled.
int ContextID
Globally unique thread context ID.
void serialize(CheckpointOut &cp) const override
Serialize an object.
const AddrRange _m5opRange
Range for memory-mapped m5 pseudo ops.
static void printSystems()
int markWorkItem(int index)
Called by pseudo_inst to mark the cpus actively executing work items.
bool validKvmEnvironment() const
Verify gem5 configuration will support KVM emulation.
bool operator!=(const const_iterator &other) const
void registerThreadContext(ThreadContext *tc, ContextID assigned=InvalidContextID)
std::ostream CheckpointOut
void replaceThreadContext(ThreadContext *tc, ContextID context_id)
void insert(ThreadContext *tc, ContextID id=InvalidContextID)
memory::PhysicalMemory & getPhysMem()
Get a pointer to access the physical memory of the system.
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
ThreadContext * findFree()
void workItemBegin(uint32_t tid, uint32_t workid)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void markActive(ContextID id)
const unsigned int _cacheLineSize
#define panic(...)
This implements a cprintf based panic() function.
ThermalModel * thermalModel
virtual ByteOrder byteOrder() const =0
Generated on Wed May 4 2022 12:13:49 for gem5 by doxygen 1.8.17