60 #include "debug/Mwait.hh" 61 #include "debug/SyscallVerbose.hh" 62 #include "debug/Thread.hh" 64 #include "params/BaseCPU.hh" 85 :
Event(
Event::Progress_Event_Pri), _interval(ival), lastNumInst(0),
86 cpu(_cpu), _repeatEvent(true)
107 DPRINTFN(
"%s progress event, total committed:%i, progress insts committed: " 112 cprintf(
"%lli: %s progress event, total committed:%i, progress insts " 122 return "CPU Progress";
126 :
ClockedObject(p), instCnt(0), _cpuId(p->cpu_id), _socketId(p->socket_id),
127 _instMasterId(p->
system->getMasterId(this,
"inst")),
128 _dataMasterId(p->
system->getMasterId(this,
"data")),
130 _switchedOut(p->switched_out), _cacheLineSize(p->
system->cacheLineSize()),
131 interrupts(p->interrupts), profileEvent(NULL),
133 previousCycle(0), previousState(CPU_STATE_SLEEP),
134 functionTraceStream(nullptr), currentFunctionStart(0),
135 currentFunctionEnd(0), functionEntryTick(0),
136 addressMonitor(p->numThreads),
137 syscallRetryLatency(p->syscallRetryLatency),
138 pwrGatingLatency(p->pwr_gating_latency),
139 powerGatingOnIdle(p->power_gating_on_idle),
150 DPRINTF(SyscallVerbose,
"Constructing CPU with id %d, socket id %d\n",
157 if (
p->function_trace) {
164 if (
p->function_trace_start == 0) {
175 if (!
params()->switched_out && !is_checker) {
177 "CPU %s has %i interrupt controllers, but is expecting one " 193 fatal(
"Number of ISAs (%i) assigned to the CPU does not equal number " 215 monitor.
armed =
true;
216 monitor.
vAddr = address;
218 DPRINTF(Mwait,
"[tid:%d] Armed monitor (vAddr=0x%lx)\n", tid, address);
229 uint64_t
mask = ~((uint64_t)(block_size - 1));
231 assert(pkt->
req->hasPaddr());
235 DPRINTF(Mwait,
"[tid:%d] mwait called (vAddr=0x%lx, " 236 "line's paddr=0x%lx)\n", tid, monitor.
vAddr, monitor.
pAddr);
254 uint64_t
mask = ~((uint64_t)(block_size - 1));
255 int size = block_size;
260 if (secondAddr > addr)
261 size = secondAddr -
addr;
272 DPRINTF(Mwait,
"[tid:%d] mwait called (vAddr=0x%lx, line's paddr=0x%lx)\n",
281 if (
params()->max_insts_any_thread != 0) {
282 const char *cause =
"a thread reached the max instruction count";
291 if (!
params()->simpoint_start_insts.empty()) {
292 const char *cause =
"simpoint starting point found";
293 for (
size_t i = 0;
i <
params()->simpoint_start_insts.size(); ++
i)
297 if (
params()->max_insts_all_threads != 0) {
298 const char *cause =
"all threads reached the max instruction count";
303 int *counter =
new int;
312 if (!
params()->switched_out) {
327 if (
params()->progress_interval) {
388 using namespace Stats;
392 .
desc(
"number of cpu cycles simulated")
396 .
name(
name() +
".numWorkItemsStarted")
397 .
desc(
"number of work items this cpu started")
401 .
name(
name() +
".numWorkItemsCompleted")
402 .
desc(
"number of work items this cpu completed")
407 for (
int i = 0;
i < size; ++
i) {
408 stringstream namestr;
412 }
else if (size == 1)
422 if (if_name ==
"dcache_port")
424 else if (if_name ==
"icache_port")
436 for (
ThreadID tid = 0; tid < size; ++tid) {
479 for (
ThreadID tid = 0; tid < size; ++tid) {
489 DPRINTF(Thread,
"activate contextId %d\n",
503 DPRINTF(Thread,
"suspend contextId %d\n",
560 assert(oldCPU !=
this);
608 if (oldChecker && newChecker) {
609 Port *old_checker_itb_port =
611 Port *old_checker_dtb_port =
613 Port *new_checker_itb_port =
615 Port *new_checker_dtb_port =
622 if (new_checker_itb_port)
623 new_checker_itb_port->
takeOverFrom(old_checker_itb_port);
624 if (new_checker_dtb_port)
625 new_checker_dtb_port->
takeOverFrom(old_checker_dtb_port);
661 checker->getITBPtr()->flushAll();
662 checker->getDTBPtr()->flushAll();
738 assert(pkt->
req->hasPaddr());
739 if (armed && waiting) {
741 DPRINTF(Mwait,
"pAddr=0x%lx invalidated: waking up core\n",
780 return params()->wait_for_remote_gdb;
uint32_t taskId() const
Get cpu task id.
void ccprintf(cp::Print &print)
virtual const char * description() const
Return a C string describing the event.
virtual void unserializeThread(CheckpointIn &cp, ThreadID tid)
Unserialize one thread.
virtual void flushAll()=0
Remove all entries from the TLB.
Ports are used to interface objects to each other.
virtual void probeInstCommit(const StaticInstPtr &inst, Addr pc)
Helper method to trigger PMU probes for a committed instruction.
static void replaceThreadContext(ThreadContext *oldTc, ThreadContext *newTc)
Update all events switching old tc to new tc.
decltype(nullptr) constexpr NoFault
int findContext(ThreadContext *tc)
Given a Thread Context pointer return the thread num.
Enums::PwrState get() const
#define fatal(...)
This implements a cprintf based fatal() function.
ProbePoints::PMUUPtr ppRetiredStores
Retired store instructions.
ContextID registerThreadContext(ThreadContext *tc, ContextID assigned=InvalidContextID)
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
virtual BaseTLB * getDTBPtr()=0
void registerThreadContexts()
Tick instCnt
Instruction count used for SPARC misc register.
void scheduleInstStop(ThreadID tid, Counter insts, const char *cause)
Schedule an event that exits the simulation loops after a predefined number of instructions.
std::vector< BaseInterrupts * > interrupts
std::shared_ptr< Request > RequestPtr
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port on this CPU.
Stats::Scalar numWorkItemsCompleted
EventFunctionWrapper enterPwrGatingEvent
BaseCPU(Params *params, bool is_checker=false)
uint64_t getCurrentInstCount(ThreadID tid)
Get the number of instructions executed by the specified thread on this CPU.
virtual void activateContext(ThreadID thread_num)
Notify the CPU that the indicated context is now active.
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
virtual Process * getProcessPtr()=0
bool switchedOut() const
Determine if the CPU is switched out.
bool _switchedOut
Is the CPU switched out or active?
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
Overload hash function for BasicBlockRange type.
bool findNearestSymbol(Addr addr, std::string &symbol, Addr &symaddr, Addr &nextaddr) const
Find the nearest symbol equal to or less than the supplied address (e.g., the label for the enclosing...
int cpuId() const
Reads this CPU's ID.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void armMonitor(ThreadID tid, Addr address)
std::ostream * stream() const
Get the output underlying output stream.
const uint32_t _socketId
Each cpu will have a socket ID that corresponds to its physical location in the system.
RequestPtr req
A pointer to the original request.
void regStats() override
Callback to set stat parameters.
virtual void serializeThread(CheckpointOut &cp, ThreadID tid) const
Serialize a single thread.
ProbePoints::PMUUPtr ppActiveCycles
CPU cycle counter, only counts if any thread contexts is active.
std::vector< ThreadContext * > threadContexts
#define UNSERIALIZE_SCALAR(scalar)
virtual void setContextId(ContextID id)=0
Tick curTick()
The current simulated tick.
virtual Port & getInstPort()=0
Purely virtual method that returns a reference to the instruction port.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
std::string csprintf(const char *format, const Args &...args)
void schedulePowerGatingEvent()
void assignThreadContext(ContextID context_id)
virtual void takeOverFrom(BaseCPU *cpu)
Load the state of a CPU from the previous CPU object, invoked on all new CPUs that are about to be sw...
std::unique_ptr< PMU > PMUUPtr
MasterID dataMasterId() const
Reads this CPU's unique data requestor ID.
uint64_t Tick
Tick count type.
void updateCycleCounters(CPUState state)
base method keeping track of cycle progression
ProbePointArg< bool > * ppSleeping
ProbePoint that signals transitions of threadContexts sets.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
EventFunctionWrapper * profileEvent
void startup() override
startup() is the final initialization call before simulation.
ClockedObject declaration and implementation.
bool doMonitor(PacketPtr pkt)
void deschedule(Event &event)
ProbePoints::PMUUPtr ppRetiredInstsPC
virtual BaseTLB * getITBPtr()=0
std::vector< AddressMonitor > addressMonitor
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void flushTLBs()
Flush all TLBs in the CPU.
void schedule(Event &event, Tick when)
bool functionTracingEnabled
void set(Enums::PwrState p)
Change the power state of this object to the power state p.
void mwaitAtomic(ThreadID tid, ThreadContext *tc, BaseTLB *dtb)
T roundDown(const T &val, const U &align)
This function is used to align addresses in memory.
virtual void verifyMemoryMode() const
Verify that the system is in a memory mode supported by the CPU.
virtual Addr instAddr() const =0
virtual Counter totalOps() const =0
virtual void takeOverFrom(BaseTLB *otlb)=0
Take over from an old tlb context.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
uint32_t _pid
The current OS process ID that is executing on this processor.
int64_t Counter
Statistics counter type.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
int maxThreadsPerCPU
The maximum number of active threads across all cpus.
bool waitForRemoteGDB() const
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Special TaskIds that are used for per-context-switch stats dumps and Cache Occupancy.
void processProfileEvent()
virtual void switchOut()
Prepare for another CPU to take over execution.
ProbePoints::PMUUPtr ppAllCycles
CPU cycle counter even if any thread Context is suspended.
#define SERIALIZE_SCALAR(scalar)
const bool powerGatingOnIdle
ProbePoints::PMUUPtr pmuProbePoint(const char *name)
Helper method to instantiate probe points belonging to this object.
bool scheduled() const
Determine if the current event is scheduled.
ProbeManager * getProbeManager()
Get the probe manager for this object.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
int16_t ThreadID
Thread index/ID type.
OutputStream * findOrCreate(const std::string &name, bool binary=false)
bool mwait(ThreadID tid, PacketPtr pkt)
virtual const std::string name() const
unsigned int cacheLineSize() const
Get the cache line size of the system.
virtual Port * getTableWalkerPort()
Get the table walker port if present.
virtual CheckerCPU * getCheckerCpuPtr()=0
ProbePointArg generates a point for the class of Arg.
static std::vector< BaseCPU * > cpuList
Static global cpu list.
void regProbePoints() override
Register probe points for this object.
Declarations of a non-full system Page Table.
std::ostream CheckpointOut
virtual void takeOverFrom(ThreadContext *old_context)=0
void deschedulePowerGatingEvent()
void takeOverFrom(Port *old)
A utility function to make it easier to swap out ports.
ProbePoints::PMUUPtr ppRetiredBranches
Retired branches (any type)
virtual int threadId() const =0
void traceFunctionsInternal(Addr pc)
ProbePoints::PMUUPtr ppRetiredLoads
Retired load instructions.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
virtual ContextID contextId() const =0
virtual Port & getDataPort()=0
Purely virtual method that returns a reference to the data port.
void replaceThreadContext(ThreadContext *tc, ContextID context_id)
uint32_t _taskId
An intrenal representation of a task identifier within gem5.
Trace::InstTracer * tracer
SymbolTable * debugSymbolTable
Global unified debugging symbol table (for target).
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
const Cycles pwrGatingLatency
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual void haltContext(ThreadID thread_num)
Notify the CPU that the indicated context is now halted.
virtual void regStats()
Callback to set stat parameters.
Scoped checkpoint section helper class.
void enableFunctionTrace()
std::shared_ptr< FaultBase > Fault
const Params * params() const
ProbePoints::PMUUPtr ppRetiredInsts
Instruction commit probe point.
std::ostream * functionTraceStream
virtual Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode)=0
virtual void suspendContext(ThreadID thread_num)
Notify the CPU that the indicated context is now suspended.
bool isLastMicroop() const
void cprintf(const char *format, const Args &...args)
Stats::Scalar numWorkItemsStarted
CPUProgressEvent(BaseCPU *_cpu, Tick ival=0)
Addr currentFunctionStart