Go to the documentation of this file.
51 #include "config/the_isa.hh"
52 #include "config/use_kvm.hh"
57 #if THE_ISA != NULL_ISA
61 #include "debug/Loader.hh"
62 #include "debug/Quiesce.hh"
63 #include "debug/WorkItems.hh"
66 #include "params/System.hh"
80 # if THE_ISA != NULL_ISA
90 return csprintf(
"%s.threads[%d]", context->getSystemPtr()->name(),
91 context->contextId());
98 auto *
workload = context->getSystemPtr()->workload;
107 for (
id = 0;
id <
size();
id++) {
119 "Cannot have two thread contexts with the same id (%d).",
id);
135 panic_if(!
t.context,
"Can't replace a context which doesn't exist.");
136 # if THE_ISA != NULL_ISA
137 if (
t.resumeEvent->scheduled()) {
138 Tick when =
t.resumeEvent->when();
139 t.context->getCpuPtr()->deschedule(
t.resumeEvent);
174 # if THE_ISA != NULL_ISA
175 GEM5_VAR_USED
BaseCPU *cpu =
t.context->getCpuPtr();
176 DPRINTFS(Quiesce, cpu,
"quiesce()\n");
184 # if THE_ISA != NULL_ISA
186 BaseCPU *cpu =
t.context->getCpuPtr();
188 DPRINTFS(Quiesce, cpu,
"quiesceTick until %u\n", when);
206 physmem(
name() +
".physmem",
p.memories,
p.mmap_using_noreserve,
209 p.shadow_rom_ranges.
end()),
233 assert(!memories.empty());
234 for (
const auto &
mem : memories) {
235 assert(!
mem.interleaved());
249 warn_once(
"Cache line size is neither 16, 32, 64 nor 128 bytes.\n");
265 for (
int x = 0;
x <
params().memories.size();
x++)
266 params().memories[
x]->system(
this);
307 all = tc->schedule(
event) && all;
317 all = tc->remove(
event) && all;
324 auto *otc =
threads[context_id];
344 if (!
dynamic_cast<BaseKvmCPU *
>(tc->getCpuPtr()))
358 return memPools[poolID].allocate(npages);
365 return memPools[poolID].totalBytes();
372 return memPools[poolID].freeBytes();
404 "No device memory found for Requestor %d\n", rid);
420 if (
t.resumeEvent &&
t.resumeEvent->scheduled())
421 when =
t.resumeEvent->when();
429 for (
const auto& memPool :
memPools) {
430 ptrs.push_back(memPool.freePageAddr());
431 limits.push_back(memPool.totalBytes());
449 !when || !
t.resumeEvent) {
452 # if THE_ISA != NULL_ISA
453 t.context->getCpuPtr()->schedule(
t.resumeEvent, when);
463 assert(ptrs.size() == limits.size());
464 for (
size_t i = 0;
i < ptrs.size();
i++)
465 memPools.emplace_back(
this, ptrs[
i], limits[
i]);
478 std::stringstream namestr;
479 ccprintf(namestr,
"work_item_type%d",
j);
482 .desc(
"Run time stat for" + namestr.str())
495 DPRINTF(WorkItems,
"Work item end: %d\t%d\t%lld\n", tid, workid, samp);
498 fatal(
"Got workid greater than specified in system configuration\n");
513 std::ios::fmtflags flags(std::cerr.flags());
517 for (;
i != end; ++
i) {
519 std::cerr <<
"System " << sys->
name() <<
": " << std::hex << sys
523 std::cerr.flags(flags);
536 return requestor_name.substr(
name().size() + 1);
538 return requestor_name;
559 "Cannot lookup RequestorID by SimObject pointer: "
560 "More than one requestor is sharing the same SimObject\n");
594 const std::string& requestor_name)
610 fatal(
"Can't request a requestorId after regStats(). "
611 "You must do so in init().\n");
625 const std::string& subrequestor)
627 if (subrequestor.empty()) {
628 return requestor->
name();
632 return requestor->
name() +
"." + subrequestor;
640 fatal(
"Invalid requestor_id passed to getRequestorName()\n");
642 const auto& requestor_info =
requestors[requestor_id];
643 return requestor_info.req_name;
Tick curTick()
The universal simulation clock.
#define fatal(...)
This implements a cprintf based fatal() function.
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.
std::map< std::pair< uint32_t, uint32_t >, Tick > lastWorkItemStarted
virtual System * getSystemPtr()=0
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...
@ Halted
Permanently shut down.
DrainState drainState() const
Return the current drain state of an object.
std::list< PCEvent * > liveEvents
AddrRange RangeSize(Addr start, Addr size)
#define UNSERIALIZE_CONTAINER(member)
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
std::vector< MemPool > memPools
Memory allocation objects for all physical memories in the system.
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.
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
void setSystem(System *s)
Initialize system pointer.
std::map< uint32_t, statistics::Histogram * > workItemStats
bool startswith(const char *s, const char *prefix)
Return true if 's' starts with the prefix string 'prefix'.
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)
virtual void activate()=0
Set the status to Active.
static int numSystemsRunning
std::string csprintf(const char *format, const Args &...args)
void regStats() override
Callback to set stat parameters.
memory::AbstractMemory * getDeviceMemory(const PacketPtr &pkt) const
Return a pointer to the device memory.
bool isSubset(const AddrRange &r) const
Determine if this range is a subset of another range, i.e.
void ccprintf(cp::Print &print)
virtual Status status() const =0
RequestorID _getRequestorId(const SimObject *requestor, const std::string &requestor_name)
helper function for getRequestorId
std::string stripSystemName(const std::string &requestor_name) const
Strips off the system name from a requestor name.
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...
std::vector< RedirectPath * > redirectPaths
std::vector< Thread > threads
std::unordered_map< RequestorID, std::vector< memory::AbstractMemory * > > deviceMemMap
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
RequestorID requestorId() const
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
memory::PhysicalMemory physmem
const Params & params() const
static std::vector< System * > systemList
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Base class for KVM based CPU models.
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...
RequestorID getRequestorId(const SimObject *requestor, std::string subrequestor={})
Request an id used to create a request object in the system.
void reschedule(Event &event, Tick when, bool always=false)
enums::MemoryMode memoryMode
Abstract superclass for simulation objects.
@ Drained
Buffers drained, ready for serialization/handover.
Addr allocPhysPages(int npages, int poolID=0)
Allocate npages contiguous unused physical pages.
const_iterator begin() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Addr freeMemSize(int poolID=0) const
Amount of physical memory that is still free.
bool remove(PCEvent *event) override
virtual void setContextId(ContextID id)=0
#define DPRINTFS(x, s,...)
bool trapToGdb(int signal, ContextID ctx_id)
Addr memSize(int poolID=0) const
Amount of physical memory that exists.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
virtual void regStats()
Callback to set stat parameters.
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 FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
bool isDeviceMemAddr(const PacketPtr &pkt) const
Similar to isMemAddr but for devices.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
bool optParamIn(CheckpointIn &cp, const std::string &name, T ¶m, bool do_warn=true)
This function is used for restoring optional parameters from the checkpoint.
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
Ports are used to interface objects to each other.
AddrRangeList ShadowRomRanges
virtual void replaceThreadContext(ThreadContext *tc)
#define SERIALIZE_CONTAINER(member)
Thread & thread(ContextID id)
@ Halting
Trying to exit and waiting for an event to completely exit.
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()
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.
bool validKvmEnvironment() const
Verify gem5 configuration will support KVM emulation.
@ wbRequestorId
This requestor id is used for writeback requests by the caches.
void registerThreadContext(ThreadContext *tc, ContextID assigned=InvalidContextID)
std::ostream CheckpointOut
void replaceThreadContext(ThreadContext *tc, ContextID context_id)
virtual BaseCPU * getCpuPtr()=0
void insert(ThreadContext *tc, ContextID id=InvalidContextID)
virtual bool schedule(PCEvent *event)=0
virtual void setSystem(System *sys)
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
virtual void registerThreadContext(ThreadContext *tc)
ThreadContext * findFree()
@ intRequestorId
This requestor id is used for message signaled interrupts.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
AddrRange getAddrRange() const
Get address range to which this packet belongs.
AddrRangeList getConfAddrRanges() const
Get the memory ranges for all memories that are to be reported to the configuration table.
const unsigned int _cacheLineSize
@ invldRequestorId
Invalid requestor id for assertion checking only.
ThermalModel * thermalModel
Generated on Wed Jul 28 2021 12:10:21 for gem5 by doxygen 1.8.17