gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
base.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013, 2017, 2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * Copyright (c) 2011 Regents of the University of California
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_BASE_HH__
43 #define __CPU_BASE_HH__
44 
45 #include <vector>
46 
47 // Before we do anything else, check if this build is the NULL ISA,
48 // and if so stop here
49 #include "config/the_isa.hh"
50 #if THE_ISA == NULL_ISA
51 #error Including BaseCPU in a system without CPU support
52 #else
54 #include "base/statistics.hh"
55 #include "mem/port_proxy.hh"
56 #include "sim/clocked_object.hh"
57 #include "sim/eventq.hh"
58 #include "sim/full_system.hh"
59 #include "sim/insttracer.hh"
60 #include "sim/probe/pmu.hh"
61 #include "sim/probe/probe.hh"
62 #include "sim/system.hh"
63 #include "debug/Mwait.hh"
64 
65 class BaseCPU;
66 struct BaseCPUParams;
67 class CheckerCPU;
68 class ThreadContext;
69 
71 {
73  bool doMonitor(PacketPtr pkt);
74 
75  bool armed;
78  uint64_t val;
79  bool waiting; // 0=normal, 1=mwaiting
80  bool gotWakeup;
81 };
82 
83 class CPUProgressEvent : public Event
84 {
85  protected:
90 
91  public:
92  CPUProgressEvent(BaseCPU *_cpu, Tick ival = 0);
93 
94  void process();
95 
96  void interval(Tick ival) { _interval = ival; }
97  Tick interval() { return _interval; }
98 
99  void repeatEvent(bool repeat) { _repeatEvent = repeat; }
100 
101  virtual const char *description() const;
102 };
103 
104 class BaseCPU : public ClockedObject
105 {
106  protected:
107 
111 
112  // every cpu has an id, put it in the base cpu
113  // Set at initialization, only time a cpuId might change is during a
114  // takeover (which should be done from within the BaseCPU anyway,
115  // therefore no setCpuId() method is provided
116  int _cpuId;
117 
123  const uint32_t _socketId;
124 
127 
130 
136  uint32_t _taskId;
137 
140  uint32_t _pid;
141 
144 
146  const unsigned int _cacheLineSize;
147 
149  struct GlobalStats : public Stats::Group {
150  GlobalStats(::Stats::Group *parent);
151 
154 
157  };
158 
163  static std::unique_ptr<GlobalStats> globalStats;
164 
165  public:
166 
173  virtual Port &getDataPort() = 0;
174 
180  {
181  auto port = dynamic_cast<RequestPort *>(&getDataPort());
182  assert(port);
183  return [port](PacketPtr pkt)->void { port->sendFunctional(pkt); };
184  }
185 
192  virtual Port &getInstPort() = 0;
193 
195  int cpuId() const { return _cpuId; }
196 
198  uint32_t socketId() const { return _socketId; }
199 
204 
215  Port &getPort(const std::string &if_name,
216  PortID idx=InvalidPortID) override;
217 
219  uint32_t taskId() const { return _taskId; }
221  void taskId(uint32_t id) { _taskId = id; }
222 
223  uint32_t getPid() const { return _pid; }
224  void setPid(uint32_t pid) { _pid = pid; }
225 
228  // @todo remove me after debugging with legion done
229  Tick instCount() { return instCnt; }
230 
231  protected:
233 
234  public:
237  {
238  if (interrupts.empty())
239  return NULL;
240 
241  assert(interrupts.size() > tid);
242  return interrupts[tid];
243  }
244 
245  virtual void wakeup(ThreadID tid) = 0;
246 
247  void
248  postInterrupt(ThreadID tid, int int_num, int index);
249 
250  void
251  clearInterrupt(ThreadID tid, int int_num, int index)
252  {
253  interrupts[tid]->clear(int_num, index);
254  }
255 
256  void
258  {
259  interrupts[tid]->clearAll();
260  }
261 
262  bool
264  {
265  return FullSystem && interrupts[tid]->checkInterrupts();
266  }
267 
268  protected:
270 
272 
273  public:
274 
275 
278  static const uint32_t invldPid = std::numeric_limits<uint32_t>::max();
279 
280  // Mask to align PCs to MachInst sized boundaries
281  static const Addr PCMask = ~((Addr)sizeof(TheISA::MachInst) - 1);
282 
285 
287  virtual void activateContext(ThreadID thread_num);
288 
291  virtual void suspendContext(ThreadID thread_num);
292 
294  virtual void haltContext(ThreadID thread_num);
295 
297  int findContext(ThreadContext *tc);
298 
300  virtual ThreadContext *getContext(int tn) { return threadContexts[tn]; }
301 
303  unsigned numContexts() {
304  return static_cast<unsigned>(threadContexts.size());
305  }
306 
309  { return static_cast<ThreadID>(cid - threadContexts[0]->contextId()); }
310 
311  public:
312  PARAMS(BaseCPU);
313  BaseCPU(const Params &params, bool is_checker = false);
314  virtual ~BaseCPU();
315 
316  void init() override;
317  void startup() override;
318  void regStats() override;
319 
320  void regProbePoints() override;
321 
322  void registerThreadContexts();
323 
324  // Functions to deschedule and reschedule the events to enter the
325  // power gating sleep before and after checkpoiting respectively.
328 
336  virtual void switchOut();
337 
349  virtual void takeOverFrom(BaseCPU *cpu);
350 
360  void flushTLBs();
361 
367  bool switchedOut() const { return _switchedOut; }
368 
378  virtual void verifyMemoryMode() const { };
379 
385 
387 
391  inline unsigned int cacheLineSize() const { return _cacheLineSize; }
392 
403  void serialize(CheckpointOut &cp) const override;
404 
415  void unserialize(CheckpointIn &cp) override;
416 
423  virtual void serializeThread(CheckpointOut &cp, ThreadID tid) const {};
424 
431  virtual void unserializeThread(CheckpointIn &cp, ThreadID tid) {};
432 
433  virtual Counter totalInsts() const = 0;
434 
435  virtual Counter totalOps() const = 0;
436 
450  void scheduleInstStop(ThreadID tid, Counter insts, const char *cause);
451 
459  uint64_t getCurrentInstCount(ThreadID tid);
460 
461  public:
474  virtual void probeInstCommit(const StaticInstPtr &inst, Addr pc);
475 
476  protected:
485 
496 
501 
504 
507 
510 
522  enum CPUState {
526  };
527 
530 
532  inline void updateCycleCounters(CPUState state)
533  {
534  uint32_t delta = curCycle() - previousCycle;
535 
536  if (previousState == CPU_STATE_ON) {
537  ppActiveCycles->notify(delta);
538  }
539 
540  switch (state)
541  {
542  case CPU_STATE_WAKEUP:
543  ppSleeping->notify(false);
544  break;
545  case CPU_STATE_SLEEP:
546  ppSleeping->notify(true);
547  break;
548  default:
549  break;
550  }
551 
552  ppAllCycles->notify(delta);
553 
555  previousState = state;
556  }
557 
558  // Function tracing
559  private:
561  std::ostream *functionTraceStream;
565  void enableFunctionTrace();
567 
568  private:
570 
571  public:
573  {
576  }
577 
578  static int numSimulatedCPUs() { return cpuList.size(); }
580  {
581  Counter total = 0;
582 
583  int size = cpuList.size();
584  for (int i = 0; i < size; ++i)
585  total += cpuList[i]->totalInsts();
586 
587  return total;
588  }
589 
591  {
592  Counter total = 0;
593 
594  int size = cpuList.size();
595  for (int i = 0; i < size; ++i)
596  total += cpuList[i]->totalOps();
597 
598  return total;
599  }
600 
601  public:
602  struct BaseCPUStats : public Stats::Group
603  {
604  BaseCPUStats(Stats::Group *parent);
605  // Number of CPU cycles simulated
609  } baseStats;
610 
611  private:
613 
614  public:
615  void armMonitor(ThreadID tid, Addr address);
616  bool mwait(ThreadID tid, PacketPtr pkt);
617  void mwaitAtomic(ThreadID tid, ThreadContext *tc, BaseMMU *mmu);
619  {
620  assert(tid < numThreads);
621  return &addressMonitor[tid];
622  }
623 
624  bool waitForRemoteGDB() const;
625 
627 
628  // Enables CPU to enter power gating on a configurable cycle count
629  protected:
630  void enterPwrGating();
631 
633  const bool powerGatingOnIdle;
635 };
636 
637 #endif // THE_ISA == NULL_ISA
638 
639 #endif // __CPU_BASE_HH__
BaseCPU::mwait
bool mwait(ThreadID tid, PacketPtr pkt)
Definition: base.cc:214
BaseCPU::ppRetiredInstsPC
ProbePoints::PMUUPtr ppRetiredInstsPC
Definition: base.hh:495
BaseCPU::_cpuId
int _cpuId
Definition: base.hh:116
BaseCPU::regStats
void regStats() override
Callback to set stat parameters.
Definition: base.cc:382
BaseCPU::mwaitAtomic
void mwaitAtomic(ThreadID tid, ThreadContext *tc, BaseMMU *mmu)
Definition: base.cc:237
BaseCPU::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port on this CPU.
Definition: base.cc:406
CPUProgressEvent::CPUProgressEvent
CPUProgressEvent(BaseCPU *_cpu, Tick ival=0)
Definition: base.cc:83
BaseCPU::flushTLBs
void flushTLBs()
Flush all TLBs in the CPU.
Definition: base.cc:612
BaseCPU::serializeThread
virtual void serializeThread(CheckpointOut &cp, ThreadID tid) const
Serialize a single thread.
Definition: base.hh:423
BaseCPU::functionTracingEnabled
bool functionTracingEnabled
Definition: base.hh:560
BaseCPU::taskId
void taskId(uint32_t id)
Set cpu task id.
Definition: base.hh:221
BaseCPU::getCurrentInstCount
uint64_t getCurrentInstCount(ThreadID tid)
Get the number of instructions executed by the specified thread on this CPU.
Definition: base.cc:673
BaseCPU::CPUState
CPUState
Definition: base.hh:522
system.hh
BaseCPU::ppRetiredBranches
ProbePoints::PMUUPtr ppRetiredBranches
Retired branches (any type)
Definition: base.hh:503
BaseCPU::previousState
CPUState previousState
Definition: base.hh:529
BaseCPU::verifyMemoryMode
virtual void verifyMemoryMode() const
Verify that the system is in a memory mode supported by the CPU.
Definition: base.hh:378
BaseMMU
Definition: mmu.hh:45
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
BaseCPU::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: base.cc:269
BaseCPU::_pid
uint32_t _pid
The current OS process ID that is executing on this processor.
Definition: base.hh:140
CPUProgressEvent::lastNumInst
Counter lastNumInst
Definition: base.hh:87
BaseCPU::wakeup
virtual void wakeup(ThreadID tid)=0
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
BaseCPU::getDataPort
virtual Port & getDataPort()=0
Purely virtual method that returns a reference to the data port.
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
BaseCPU::ppAllCycles
ProbePoints::PMUUPtr ppAllCycles
CPU cycle counter even if any thread Context is suspended.
Definition: base.hh:506
insttracer.hh
BaseCPU::tracer
Trace::InstTracer * tracer
Definition: base.hh:271
ArmISA::MachInst
uint32_t MachInst
Definition: types.hh:52
CPUProgressEvent::interval
Tick interval()
Definition: base.hh:97
BaseCPU::PARAMS
PARAMS(BaseCPU)
BaseCPU::numSimulatedCPUs
static int numSimulatedCPUs()
Definition: base.hh:578
ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:237
AddressMonitor::doMonitor
bool doMonitor(PacketPtr pkt)
Definition: base.cc:684
CPUProgressEvent::description
virtual const char * description() const
Return a C string describing the event.
Definition: base.cc:119
BaseCPU::cacheLineSize
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:391
CPUProgressEvent::_interval
Tick _interval
Definition: base.hh:86
ProbePointArg< bool >
BaseCPU::armMonitor
void armMonitor(ThreadID tid, Addr address)
Definition: base.cc:202
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
BaseCPU::BaseCPUStats::numWorkItemsCompleted
Stats::Scalar numWorkItemsCompleted
Definition: base.hh:608
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
BaseCPU::syscallRetryLatency
Cycles syscallRetryLatency
Definition: base.hh:626
CheckerCPU
CheckerCPU class.
Definition: cpu.hh:85
BaseCPU::enableFunctionTrace
void enableFunctionTrace()
Definition: base.cc:181
BaseCPU::postInterrupt
void postInterrupt(ThreadID tid, int int_num, int index)
Definition: base.cc:191
BaseCPU::baseStats
BaseCPU::BaseCPUStats baseStats
BaseCPU::BaseCPUStats::BaseCPUStats
BaseCPUStats(Stats::Group *parent)
Definition: base.cc:371
std::vector< BaseInterrupts * >
BaseCPU::registerThreadContexts
void registerThreadContexts()
Definition: base.cc:420
BaseCPU::deschedulePowerGatingEvent
void deschedulePowerGatingEvent()
Definition: base.cc:448
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
BaseCPU::socketId
uint32_t socketId() const
Reads this CPU's Socket ID.
Definition: base.hh:198
Stats::Value
Definition: statistics.hh:1983
BaseCPU::totalOps
virtual Counter totalOps() const =0
BaseCPU::getContext
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:300
BaseCPU::ppRetiredLoads
ProbePoints::PMUUPtr ppRetiredLoads
Retired load instructions.
Definition: base.hh:498
ProbePointArg::notify
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
Definition: probe.hh:299
BaseCPU::getPid
uint32_t getPid() const
Definition: base.hh:223
BaseCPU::invldPid
static const uint32_t invldPid
Invalid or unknown Pid.
Definition: base.hh:278
AddressMonitor::vAddr
Addr vAddr
Definition: base.hh:76
AddressMonitor
Definition: base.hh:70
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
BaseCPU::updateCycleCounters
void updateCycleCounters(CPUState state)
base method keeping track of cycle progression
Definition: base.hh:532
EventFunctionWrapper
Definition: eventq.hh:1112
BaseCPU::GlobalStats::simOps
::Stats::Value simOps
Definition: base.hh:153
pmu.hh
BaseCPU::getSendFunctional
virtual PortProxy::SendFunctionalFunc getSendFunctional()
Returns a sendFunctional delegate for use with port proxies.
Definition: base.hh:179
CPUProgressEvent::cpu
BaseCPU * cpu
Definition: base.hh:88
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
RequestorID
uint16_t RequestorID
Definition: request.hh:89
Counter
int64_t Counter
Statistics counter type.
Definition: types.hh:54
CPUProgressEvent
Definition: base.hh:83
BaseCPU::findContext
int findContext(ThreadContext *tc)
Given a Thread Context pointer return the thread num.
Definition: base.cc:473
BaseCPU::BaseCPUStats::numWorkItemsStarted
Stats::Scalar numWorkItemsStarted
Definition: base.hh:607
cp
Definition: cprintf.cc:37
BaseCPU::workItemBegin
void workItemBegin()
Definition: base.hh:226
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition: clocked_object.hh:237
BaseCPU::cpuList
static std::vector< BaseCPU * > cpuList
Static global cpu list.
Definition: base.hh:569
Event
Definition: eventq.hh:248
BaseCPU::traceFunctionsInternal
void traceFunctionsInternal(Addr pc)
Definition: base.cc:699
BaseCPU::_instRequestorId
RequestorID _instRequestorId
instruction side request id that must be placed in all requests
Definition: base.hh:126
BaseCPU::_cacheLineSize
const unsigned int _cacheLineSize
Cache the cache line size that we get from the system.
Definition: base.hh:146
System
Definition: system.hh:73
BaseCPU::numSimulatedInsts
static Counter numSimulatedInsts()
Definition: base.hh:579
BaseCPU::instCnt
Tick instCnt
Instruction count used for SPARC misc register.
Definition: base.hh:110
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
BaseCPU::interrupts
std::vector< BaseInterrupts * > interrupts
Definition: base.hh:232
statistics.hh
CPUProgressEvent::repeatEvent
void repeatEvent(bool repeat)
Definition: base.hh:99
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
BaseCPU::_taskId
uint32_t _taskId
An intrenal representation of a task identifier within gem5.
Definition: base.hh:136
BaseCPU::ppActiveCycles
ProbePoints::PMUUPtr ppActiveCycles
CPU cycle counter, only counts if any thread contexts is active.
Definition: base.hh:509
port_proxy.hh
BaseCPU::threadContexts
std::vector< ThreadContext * > threadContexts
Definition: base.hh:269
Clocked::curCycle
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
Definition: clocked_object.hh:192
BaseCPU::currentFunctionEnd
Addr currentFunctionEnd
Definition: base.hh:563
BaseCPU::clearInterrupt
void clearInterrupt(ThreadID tid, int int_num, int index)
Definition: base.hh:251
BaseCPU::serialize
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
Definition: base.cc:626
BaseCPU::activateContext
virtual void activateContext(ThreadID thread_num)
Notify the CPU that the indicated context is now active.
Definition: base.cc:484
BaseCPU::previousCycle
Cycles previousCycle
Definition: base.hh:528
PortProxy::SendFunctionalFunc
std::function< void(PacketPtr pkt)> SendFunctionalFunc
Definition: port_proxy.hh:83
BaseCPU::pmuProbePoint
ProbePoints::PMUUPtr pmuProbePoint(const char *name)
Helper method to instantiate probe points belonging to this object.
Definition: base.cc:328
BaseCPU::functionEntryTick
Tick functionEntryTick
Definition: base.hh:564
BaseCPU::setPid
void setPid(uint32_t pid)
Definition: base.hh:224
BaseCPU::ppRetiredStores
ProbePoints::PMUUPtr ppRetiredStores
Retired store instructions.
Definition: base.hh:500
BaseCPU::getCpuAddrMonitor
AddressMonitor * getCpuAddrMonitor(ThreadID tid)
Definition: base.hh:618
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
BaseCPU::BaseCPUStats::numCycles
Stats::Scalar numCycles
Definition: base.hh:606
BaseCPU::numContexts
unsigned numContexts()
Get the number of thread contexts available.
Definition: base.hh:303
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
AddressMonitor::pAddr
Addr pAddr
Definition: base.hh:77
BaseCPU::CPU_STATE_WAKEUP
@ CPU_STATE_WAKEUP
Definition: base.hh:525
BaseCPU::ppRetiredInsts
ProbePoints::PMUUPtr ppRetiredInsts
Instruction commit probe point.
Definition: base.hh:494
BaseCPU::GlobalStats::hostInstRate
::Stats::Formula hostInstRate
Definition: base.hh:155
BaseCPU::contextToThread
ThreadID contextToThread(ContextID cid)
Convert ContextID to threadID.
Definition: base.hh:308
full_system.hh
ProbePoints::PMUUPtr
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
BaseCPU::instRequestorId
RequestorID instRequestorId() const
Reads this CPU's unique instruction requestor ID.
Definition: base.hh:203
BaseCPU::taskId
uint32_t taskId() const
Get cpu task id.
Definition: base.hh:219
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
BaseCPU
Definition: base.hh:104
AddressMonitor::AddressMonitor
AddressMonitor()
Definition: base.cc:678
BaseCPU::pwrGatingLatency
const Cycles pwrGatingLatency
Definition: base.hh:632
AddressMonitor::val
uint64_t val
Definition: base.hh:78
BaseCPU::haltContext
virtual void haltContext(ThreadID thread_num)
Notify the CPU that the indicated context is now halted.
Definition: base.cc:524
BaseCPU::globalStats
static std::unique_ptr< GlobalStats > globalStats
Pointer to the global stat structure.
Definition: base.hh:163
CPUProgressEvent::interval
void interval(Tick ival)
Definition: base.hh:96
BaseCPU::schedulePowerGatingEvent
void schedulePowerGatingEvent()
Definition: base.cc:456
BaseCPU::system
System * system
Definition: base.hh:386
BaseCPU::takeOverFrom
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...
Definition: base.cc:550
BaseCPU::clearInterrupts
void clearInterrupts(ThreadID tid)
Definition: base.hh:257
clocked_object.hh
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
BaseCPU::switchOut
virtual void switchOut()
Prepare for another CPU to take over execution.
Definition: base.cc:536
Stats::Group
Statistics container.
Definition: group.hh:87
BaseCPU::_dataRequestorId
RequestorID _dataRequestorId
data side request id that must be placed in all requests
Definition: base.hh:129
interrupts.hh
BaseCPU::GlobalStats::GlobalStats
GlobalStats(::Stats::Group *parent)
Definition: base.cc:734
BaseCPU::PCMask
static const Addr PCMask
Definition: base.hh:281
BaseCPU::getTracer
Trace::InstTracer * getTracer()
Provide access to the tracer pointer.
Definition: base.hh:284
BaseCPU::numThreads
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
Definition: base.hh:378
CPUProgressEvent::process
void process()
Definition: base.cc:92
BaseCPU::traceFunctions
void traceFunctions(Addr pc)
Definition: base.hh:572
BaseCPU::dataRequestorId
RequestorID dataRequestorId() const
Reads this CPU's unique data requestor ID.
Definition: base.hh:201
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
BaseCPU::BaseCPUStats
Definition: base.hh:602
BaseCPU::functionTraceStream
std::ostream * functionTraceStream
Definition: base.hh:561
BaseCPU::scheduleInstStop
void scheduleInstStop(ThreadID tid, Counter insts, const char *cause)
Schedule an event that exits the simulation loops after a predefined number of instructions.
Definition: base.cc:664
CPUProgressEvent::_repeatEvent
bool _repeatEvent
Definition: base.hh:89
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
BaseCPU::numSimulatedOps
static Counter numSimulatedOps()
Definition: base.hh:590
BaseCPU::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: base.cc:312
Trace::InstTracer
Definition: insttracer.hh:257
BaseCPU::regProbePoints
void regProbePoints() override
Register probe points for this object.
Definition: base.cc:337
BaseCPU::CPU_STATE_ON
@ CPU_STATE_ON
Definition: base.hh:523
BaseCPU::GlobalStats::simInsts
::Stats::Value simInsts
Definition: base.hh:152
BaseCPU::enterPwrGating
void enterPwrGating()
Definition: base.cc:530
BaseCPU::suspendContext
virtual void suspendContext(ThreadID thread_num)
Notify the CPU that the indicated context is now suspended.
Definition: base.cc:498
RefCountingPtr< StaticInst >
BaseCPU::enterPwrGatingEvent
EventFunctionWrapper enterPwrGatingEvent
Definition: base.hh:634
BaseCPU::_socketId
const uint32_t _socketId
Each cpu will have a socket ID that corresponds to its physical location in the system.
Definition: base.hh:123
BaseCPU::currentFunctionStart
Addr currentFunctionStart
Definition: base.hh:562
BaseCPU::CPU_STATE_SLEEP
@ CPU_STATE_SLEEP
Definition: base.hh:524
BaseCPU::totalInsts
virtual Counter totalInsts() const =0
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
BaseCPU::addressMonitor
std::vector< AddressMonitor > addressMonitor
Definition: base.hh:612
BaseCPU::instCount
Tick instCount()
Definition: base.hh:229
AddressMonitor::gotWakeup
bool gotWakeup
Definition: base.hh:80
probe.hh
BaseCPU::unserializeThread
virtual void unserializeThread(CheckpointIn &cp, ThreadID tid)
Unserialize one thread.
Definition: base.hh:431
BaseCPU::switchedOut
bool switchedOut() const
Determine if the CPU is switched out.
Definition: base.hh:367
BaseInterrupts
Definition: interrupts.hh:38
BaseCPU::_switchedOut
bool _switchedOut
Is the CPU switched out or active?
Definition: base.hh:143
Stats::total
const FlagsType total
Print the total.
Definition: info.hh:50
BaseCPU::workItemEnd
void workItemEnd()
Definition: base.hh:227
CheckpointIn
Definition: serialize.hh:68
BaseCPU::unserialize
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
Definition: base.cc:647
BaseCPU::BaseCPU
BaseCPU(const Params &params, bool is_checker=false)
Definition: base.cc:124
BaseCPU::probeInstCommit
virtual void probeInstCommit(const StaticInstPtr &inst, Addr pc)
Helper method to trigger PMU probes for a committed instruction.
Definition: base.cc:353
BaseCPU::checkInterrupts
bool checkInterrupts(ThreadID tid) const
Definition: base.hh:263
BaseCPU::getInstPort
virtual Port & getInstPort()=0
Purely virtual method that returns a reference to the instruction port.
BaseCPU::waitForRemoteGDB
bool waitForRemoteGDB() const
Definition: base.cc:728
AddressMonitor::armed
bool armed
Definition: base.hh:75
BaseCPU::getInterruptController
BaseInterrupts * getInterruptController(ThreadID tid)
Definition: base.hh:236
BaseCPU::~BaseCPU
virtual ~BaseCPU()
Definition: base.cc:186
BaseCPU::cpuId
int cpuId() const
Reads this CPU's ID.
Definition: base.hh:195
AddressMonitor::waiting
bool waiting
Definition: base.hh:79
BaseCPU::ppSleeping
ProbePointArg< bool > * ppSleeping
ProbePoint that signals transitions of threadContexts sets.
Definition: base.hh:519
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
BaseCPU::GlobalStats::hostOpRate
::Stats::Formula hostOpRate
Definition: base.hh:156
BaseCPU::GlobalStats
Global CPU statistics that are merged into the Root object.
Definition: base.hh:149
BaseCPU::powerGatingOnIdle
const bool powerGatingOnIdle
Definition: base.hh:633
eventq.hh

Generated on Tue Mar 23 2021 19:41:23 for gem5 by doxygen 1.8.17