42 #ifndef __CPU_BASE_HH__
43 #define __CPU_BASE_HH__
49 #include "config/the_isa.hh"
52 #error Including BaseCPU in a system without CPU support
56 #include "debug/Mwait.hh"
88 class CPUProgressEvent :
public Event
97 CPUProgressEvent(BaseCPU *_cpu,
Tick ival = 0);
101 void interval(
Tick ival) { _interval = ival; }
102 Tick interval() {
return _interval; }
104 void repeatEvent(
bool repeat) { _repeatEvent = repeat; }
106 virtual const char *description()
const;
109 class BaseCPU :
public ClockedObject
128 const uint32_t _socketId;
151 const unsigned int _cacheLineSize;
154 struct GlobalStats :
public statistics::Group
156 GlobalStats(statistics::Group *parent);
158 statistics::Value simInsts;
159 statistics::Value simOps;
161 statistics::Formula hostInstRate;
162 statistics::Formula hostOpRate;
169 static std::unique_ptr<GlobalStats> globalStats;
179 virtual Port &getDataPort() = 0;
187 virtual Port &getInstPort() = 0;
190 int cpuId()
const {
return _cpuId; }
193 uint32_t socketId()
const {
return _socketId; }
196 RequestorID dataRequestorId()
const {
return _dataRequestorId; }
198 RequestorID instRequestorId()
const {
return _instRequestorId; }
210 Port &getPort(
const std::string &if_name,
214 uint32_t taskId()
const {
return _taskId; }
216 void taskId(uint32_t
id) { _taskId =
id; }
218 uint32_t getPid()
const {
return _pid; }
219 void setPid(uint32_t pid) { _pid = pid; }
221 inline void workItemBegin() { baseStats.numWorkItemsStarted++; }
222 inline void workItemEnd() { baseStats.numWorkItemsCompleted++; }
224 Tick instCount() {
return instCnt; }
231 getInterruptController(
ThreadID tid)
233 if (interrupts.empty())
236 assert(interrupts.size() > tid);
237 return interrupts[tid];
240 virtual void wakeup(
ThreadID tid) = 0;
247 interrupts[tid]->clear(int_num,
index);
253 interrupts[tid]->clearAll();
259 return FullSystem && interrupts[tid]->checkInterrupts();
265 Trace::InstTracer * tracer;
272 static const uint32_t invldPid = std::numeric_limits<uint32_t>::max();
275 Trace::InstTracer * getTracer() {
return tracer; }
278 virtual void activateContext(
ThreadID thread_num);
282 virtual void suspendContext(
ThreadID thread_num);
285 virtual void haltContext(
ThreadID thread_num);
288 int findContext(ThreadContext *tc);
291 virtual ThreadContext *getContext(
int tn) {
return threadContexts[tn]; }
297 return static_cast<unsigned>(threadContexts.size());
304 return static_cast<ThreadID>(cid - threadContexts[0]->contextId());
309 BaseCPU(
const Params ¶ms,
bool is_checker =
false);
312 void init()
override;
313 void startup()
override;
314 void regStats()
override;
316 void regProbePoints()
override;
318 void registerThreadContexts();
322 void deschedulePowerGatingEvent();
323 void schedulePowerGatingEvent();
332 virtual void switchOut();
363 bool switchedOut()
const {
return _switchedOut; }
374 virtual void verifyMemoryMode()
const { };
387 inline unsigned int cacheLineSize()
const {
return _cacheLineSize; }
427 virtual void unserializeThread(CheckpointIn &cp,
ThreadID tid) {};
429 virtual Counter totalInsts()
const = 0;
431 virtual Counter totalOps()
const = 0;
455 uint64_t getCurrentInstCount(
ThreadID tid);
515 ProbePointArg<bool> *ppSleeping;
525 Cycles previousCycle;
526 CPUState previousState;
530 updateCycleCounters(CPUState state)
532 uint32_t delta = curCycle() - previousCycle;
534 if (previousState == CPU_STATE_ON) {
535 ppActiveCycles->notify(delta);
539 case CPU_STATE_WAKEUP:
540 ppSleeping->notify(
false);
542 case CPU_STATE_SLEEP:
543 ppSleeping->notify(
true);
549 ppAllCycles->notify(delta);
551 previousCycle = curCycle();
552 previousState = state;
557 bool functionTracingEnabled;
558 std::ostream *functionTraceStream;
559 Addr currentFunctionStart;
560 Addr currentFunctionEnd;
561 Tick functionEntryTick;
562 void enableFunctionTrace();
563 void traceFunctionsInternal(
Addr pc);
572 if (functionTracingEnabled)
573 traceFunctionsInternal(
pc);
576 static int numSimulatedCPUs() {
return cpuList.size(); }
582 int size = cpuList.size();
583 for (
int i = 0;
i < size; ++
i)
584 total += cpuList[
i]->totalInsts();
594 int size = cpuList.size();
595 for (
int i = 0;
i < size; ++
i)
596 total += cpuList[
i]->totalOps();
602 struct BaseCPUStats :
public statistics::Group
604 BaseCPUStats(statistics::Group *parent);
606 statistics::Scalar numCycles;
607 statistics::Scalar numWorkItemsStarted;
608 statistics::Scalar numWorkItemsCompleted;
617 void mwaitAtomic(
ThreadID tid, ThreadContext *tc, BaseMMU *mmu);
621 assert(tid < numThreads);
622 return &addressMonitor[tid];
625 Cycles syscallRetryLatency;
636 htmSendAbortSignal(
ThreadID tid, uint64_t htm_uid,
639 panic(
"htmSendAbortSignal not implemented");
644 void enterPwrGating();
646 const Cycles pwrGatingLatency;
647 const bool powerGatingOnIdle;
648 EventFunctionWrapper enterPwrGatingEvent;
653 #endif // !IS_NULL_ISA
655 #endif // __CPU_BASE_HH__