gem5  v20.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 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 #include "arch/null/cpu_dummy.hh"
52 #else
54 #include "arch/isa_traits.hh"
55 #include "arch/microcode_rom.hh"
56 #include "base/statistics.hh"
57 #include "sim/clocked_object.hh"
58 #include "sim/eventq.hh"
59 #include "sim/full_system.hh"
60 #include "sim/insttracer.hh"
61 #include "sim/probe/pmu.hh"
62 #include "sim/probe/probe.hh"
63 #include "sim/system.hh"
64 #include "debug/Mwait.hh"
65 
66 class BaseCPU;
67 struct BaseCPUParams;
68 class CheckerCPU;
69 class ThreadContext;
70 
72 {
74  bool doMonitor(PacketPtr pkt);
75 
76  bool armed;
79  uint64_t val;
80  bool waiting; // 0=normal, 1=mwaiting
81  bool gotWakeup;
82 };
83 
84 class CPUProgressEvent : public Event
85 {
86  protected:
91 
92  public:
93  CPUProgressEvent(BaseCPU *_cpu, Tick ival = 0);
94 
95  void process();
96 
97  void interval(Tick ival) { _interval = ival; }
98  Tick interval() { return _interval; }
99 
100  void repeatEvent(bool repeat) { _repeatEvent = repeat; }
101 
102  virtual const char *description() const;
103 };
104 
105 class BaseCPU : public ClockedObject
106 {
107  protected:
108 
112 
113  // every cpu has an id, put it in the base cpu
114  // Set at initialization, only time a cpuId might change is during a
115  // takeover (which should be done from within the BaseCPU anyway,
116  // therefore no setCpuId() method is provided
117  int _cpuId;
118 
124  const uint32_t _socketId;
125 
128 
131 
137  uint32_t _taskId;
138 
141  uint32_t _pid;
142 
145 
147  const unsigned int _cacheLineSize;
148 
149  public:
150 
157  virtual Port &getDataPort() = 0;
158 
164  {
165  auto port = dynamic_cast<MasterPort *>(&getDataPort());
166  assert(port);
167  return [port](PacketPtr pkt)->void { port->sendFunctional(pkt); };
168  }
169 
176  virtual Port &getInstPort() = 0;
177 
179  int cpuId() const { return _cpuId; }
180 
182  uint32_t socketId() const { return _socketId; }
183 
185  MasterID dataMasterId() const { return _dataMasterId; }
187  MasterID instMasterId() const { return _instMasterId; }
188 
199  Port &getPort(const std::string &if_name,
200  PortID idx=InvalidPortID) override;
201 
203  uint32_t taskId() const { return _taskId; }
205  void taskId(uint32_t id) { _taskId = id; }
206 
207  uint32_t getPid() const { return _pid; }
208  void setPid(uint32_t pid) { _pid = pid; }
209 
210  inline void workItemBegin() { numWorkItemsStarted++; }
211  inline void workItemEnd() { numWorkItemsCompleted++; }
212  // @todo remove me after debugging with legion done
213  Tick instCount() { return instCnt; }
214 
215  TheISA::MicrocodeRom microcodeRom;
216 
217  protected:
219 
220  public:
223  {
224  if (interrupts.empty())
225  return NULL;
226 
227  assert(interrupts.size() > tid);
228  return interrupts[tid];
229  }
230 
231  virtual void wakeup(ThreadID tid) = 0;
232 
233  void
234  postInterrupt(ThreadID tid, int int_num, int index)
235  {
236  interrupts[tid]->post(int_num, index);
237  if (FullSystem)
238  wakeup(tid);
239  }
240 
241  void
242  clearInterrupt(ThreadID tid, int int_num, int index)
243  {
244  interrupts[tid]->clear(int_num, index);
245  }
246 
247  void
249  {
250  interrupts[tid]->clearAll();
251  }
252 
253  bool
255  {
256  return FullSystem && interrupts[tc->threadId()]->checkInterrupts(tc);
257  }
258 
259  void processProfileEvent();
261 
262  protected:
264 
266 
267  public:
268 
269 
272  static const uint32_t invldPid = std::numeric_limits<uint32_t>::max();
273 
274  // Mask to align PCs to MachInst sized boundaries
275  static const Addr PCMask = ~((Addr)sizeof(TheISA::MachInst) - 1);
276 
278  Trace::InstTracer * getTracer() { return tracer; }
279 
281  virtual void activateContext(ThreadID thread_num);
282 
285  virtual void suspendContext(ThreadID thread_num);
286 
288  virtual void haltContext(ThreadID thread_num);
289 
291  int findContext(ThreadContext *tc);
292 
294  virtual ThreadContext *getContext(int tn) { return threadContexts[tn]; }
295 
297  unsigned numContexts() {
298  return static_cast<unsigned>(threadContexts.size());
299  }
300 
303  { return static_cast<ThreadID>(cid - threadContexts[0]->contextId()); }
304 
305  public:
306  typedef BaseCPUParams Params;
307  const Params *params() const
308  { return reinterpret_cast<const Params *>(_params); }
309  BaseCPU(Params *params, bool is_checker = false);
310  virtual ~BaseCPU();
311 
312  void init() override;
313  void startup() override;
314  void regStats() override;
315 
316  void regProbePoints() override;
317 
318  void registerThreadContexts();
319 
320  // Functions to deschedule and reschedule the events to enter the
321  // power gating sleep before and after checkpoiting respectively.
322  void deschedulePowerGatingEvent();
323  void schedulePowerGatingEvent();
324 
332  virtual void switchOut();
333 
345  virtual void takeOverFrom(BaseCPU *cpu);
346 
356  void flushTLBs();
357 
363  bool switchedOut() const { return _switchedOut; }
364 
374  virtual void verifyMemoryMode() const { };
375 
380  ThreadID numThreads;
381 
383 
387  inline unsigned int cacheLineSize() const { return _cacheLineSize; }
388 
399  void serialize(CheckpointOut &cp) const override;
400 
411  void unserialize(CheckpointIn &cp) override;
412 
419  virtual void serializeThread(CheckpointOut &cp, ThreadID tid) const {};
420 
427  virtual void unserializeThread(CheckpointIn &cp, ThreadID tid) {};
428 
429  virtual Counter totalInsts() const = 0;
430 
431  virtual Counter totalOps() const = 0;
432 
446  void scheduleInstStop(ThreadID tid, Counter insts, const char *cause);
447 
455  uint64_t getCurrentInstCount(ThreadID tid);
456 
457  public:
470  virtual void probeInstCommit(const StaticInstPtr &inst, Addr pc);
471 
472  protected:
480  ProbePoints::PMUUPtr pmuProbePoint(const char *name);
481 
492 
497 
500 
503 
506 
518  enum CPUState {
521  CPU_STATE_WAKEUP
522  };
523 
526 
528  inline void updateCycleCounters(CPUState state)
529  {
530  uint32_t delta = curCycle() - previousCycle;
531 
532  if (previousState == CPU_STATE_ON) {
533  ppActiveCycles->notify(delta);
534  }
535 
536  switch (state)
537  {
538  case CPU_STATE_WAKEUP:
539  ppSleeping->notify(false);
540  break;
541  case CPU_STATE_SLEEP:
542  ppSleeping->notify(true);
543  break;
544  default:
545  break;
546  }
547 
548  ppAllCycles->notify(delta);
549 
550  previousCycle = curCycle();
551  previousState = state;
552  }
553 
554  // Function tracing
555  private:
557  std::ostream *functionTraceStream;
561  void enableFunctionTrace();
562  void traceFunctionsInternal(Addr pc);
563 
564  private:
566 
567  public:
569  {
570  if (functionTracingEnabled)
571  traceFunctionsInternal(pc);
572  }
573 
574  static int numSimulatedCPUs() { return cpuList.size(); }
576  {
577  Counter total = 0;
578 
579  int size = cpuList.size();
580  for (int i = 0; i < size; ++i)
581  total += cpuList[i]->totalInsts();
582 
583  return total;
584  }
585 
587  {
588  Counter total = 0;
589 
590  int size = cpuList.size();
591  for (int i = 0; i < size; ++i)
592  total += cpuList[i]->totalOps();
593 
594  return total;
595  }
596 
597  public:
598  // Number of CPU cycles simulated
602 
603  private:
605 
606  public:
607  void armMonitor(ThreadID tid, Addr address);
608  bool mwait(ThreadID tid, PacketPtr pkt);
609  void mwaitAtomic(ThreadID tid, ThreadContext *tc, BaseTLB *dtb);
611  {
612  assert(tid < numThreads);
613  return &addressMonitor[tid];
614  }
615 
616  bool waitForRemoteGDB() const;
617 
619 
620  // Enables CPU to enter power gating on a configurable cycle count
621  protected:
622  void enterPwrGating();
623 
625  const bool powerGatingOnIdle;
627 };
628 
629 #endif // THE_ISA == NULL_ISA
630 
631 #endif // __CPU_BASE_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
uint32_t taskId() const
Get cpu task id.
Definition: base.hh:203
uint32_t MachInst
Definition: types.hh:52
virtual void unserializeThread(CheckpointIn &cp, ThreadID tid)
Unserialize one thread.
Definition: base.hh:427
Counter lastNumInst
Definition: base.hh:88
MasterID _dataMasterId
data side request id that must be placed in all requests
Definition: base.hh:130
Ports are used to interface objects to each other.
Definition: port.hh:56
BaseCPUParams Params
Definition: base.hh:306
Bitfield< 30, 0 > index
bool waiting
Definition: base.hh:80
Tick functionEntryTick
Definition: base.hh:560
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
AddressMonitor * getCpuAddrMonitor(ThreadID tid)
Definition: base.hh:610
Tick interval()
Definition: base.hh:98
ProbePoints::PMUUPtr ppRetiredStores
Retired store instructions.
Definition: base.hh:496
const std::string & name()
Definition: trace.cc:50
CheckerCPU class.
Definition: cpu.hh:85
Bitfield< 7 > i
const PortID InvalidPortID
Definition: types.hh:236
Trace::InstTracer * getTracer()
Provide access to the tracer pointer.
Definition: base.hh:278
void traceFunctions(Addr pc)
Definition: base.hh:568
const unsigned int _cacheLineSize
Cache the cache line size that we get from the system.
Definition: base.hh:147
Tick instCnt
Instruction count used for SPARC misc register.
Definition: base.hh:111
std::vector< BaseInterrupts * > interrupts
Definition: base.hh:218
void takeOverFrom(ThreadContext &ntc, ThreadContext &otc)
Copy state between thread contexts in preparation for CPU handover.
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
Definition: probe.hh:286
Stats::Scalar numWorkItemsCompleted
Definition: base.hh:601
EventFunctionWrapper enterPwrGatingEvent
Definition: base.hh:626
MasterID _instMasterId
instruction side request id that must be placed in all requests
Definition: base.hh:127
bool armed
Definition: base.hh:76
Addr pAddr
Definition: base.hh:78
void clearInterrupt(ThreadID tid, int int_num, int index)
Definition: base.hh:242
Cycles previousCycle
Definition: base.hh:524
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:132
BaseCPU * cpu
Definition: base.hh:89
bool switchedOut() const
Determine if the CPU is switched out.
Definition: base.hh:363
bool _switchedOut
Is the CPU switched out or active?
Definition: base.hh:144
void workItemEnd()
Definition: base.hh:211
Definition: system.hh:72
void clearInterrupts(ThreadID tid)
Definition: base.hh:248
System * system
Definition: base.hh:382
Definition: cprintf.cc:40
unsigned numContexts()
Get the number of thread contexts available.
Definition: base.hh:297
bool gotWakeup
Definition: base.hh:81
int cpuId() const
Reads this CPU&#39;s ID.
Definition: base.hh:179
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
Bitfield< 33 > id
static Counter numSimulatedInsts()
Definition: base.hh:575
static Counter numSimulatedOps()
Definition: base.hh:586
const uint32_t _socketId
Each cpu will have a socket ID that corresponds to its physical location in the system.
Definition: base.hh:124
virtual void serializeThread(CheckpointOut &cp, ThreadID tid) const
Serialize a single thread.
Definition: base.hh:419
void taskId(uint32_t id)
Set cpu task id.
Definition: base.hh:205
ProbePoints::PMUUPtr ppActiveCycles
CPU cycle counter, only counts if any thread contexts is active.
Definition: base.hh:505
std::vector< ThreadContext * > threadContexts
Definition: base.hh:263
Definition: tlb.hh:50
Tick instCount()
Definition: base.hh:213
Bitfield< 4 > pc
Tick _interval
Definition: base.hh:87
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
MasterID dataMasterId() const
Reads this CPU&#39;s unique data requestor ID.
Definition: base.hh:185
uint64_t Tick
Tick count type.
Definition: types.hh:61
static int numSimulatedCPUs()
Definition: base.hh:574
void updateCycleCounters(CPUState state)
base method keeping track of cycle progression
Definition: base.hh:528
ProbePointArg< bool > * ppSleeping
ProbePoint that signals transitions of threadContexts sets.
Definition: base.hh:515
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
EventFunctionWrapper * profileEvent
Definition: base.hh:260
bool checkInterrupts(ThreadContext *tc) const
Definition: base.hh:254
virtual PortProxy::SendFunctionalFunc getSendFunctional()
Returns a sendFunctional delegate for use with port proxies.
Definition: base.hh:163
TheISA::MicrocodeRom microcodeRom
Definition: base.hh:215
ClockedObject declaration and implementation.
bool doMonitor(PacketPtr pkt)
Definition: base.cc:737
ProbePoints::PMUUPtr ppRetiredInstsPC
Definition: base.hh:491
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
int _cpuId
Definition: base.hh:117
Cycles syscallRetryLatency
Definition: base.hh:618
std::vector< AddressMonitor > addressMonitor
Definition: base.hh:604
bool functionTracingEnabled
Definition: base.hh:556
virtual void verifyMemoryMode() const
Verify that the system is in a memory mode supported by the CPU.
Definition: base.hh:374
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint32_t _pid
The current OS process ID that is executing on this processor.
Definition: base.hh:141
uint16_t MasterID
Definition: request.hh:84
int64_t Counter
Statistics counter type.
Definition: types.hh:56
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Addr vAddr
Definition: base.hh:77
const FlagsType total
Print the total.
Definition: info.hh:49
void repeatEvent(bool repeat)
Definition: base.hh:100
ProbePoints::PMUUPtr ppAllCycles
CPU cycle counter even if any thread Context is suspended.
Definition: base.hh:502
const bool powerGatingOnIdle
Definition: base.hh:625
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:387
static std::vector< BaseCPU * > cpuList
Static global cpu list.
Definition: base.hh:565
void interval(Tick ival)
Definition: base.hh:97
std::function< void(PacketPtr pkt)> SendFunctionalFunc
Definition: port_proxy.hh:83
std::ostream CheckpointOut
Definition: serialize.hh:63
Definition: eventq.hh:245
CPUState previousState
Definition: base.hh:525
ProbePoints::PMUUPtr ppRetiredBranches
Retired branches (any type)
Definition: base.hh:499
virtual int threadId() const =0
uint32_t socketId() const
Reads this CPU&#39;s Socket ID.
Definition: base.hh:182
ThreadID contextToThread(ContextID cid)
Convert ContextID to threadID.
Definition: base.hh:302
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:294
ProbePoints::PMUUPtr ppRetiredLoads
Retired load instructions.
Definition: base.hh:494
Stats::Scalar numCycles
Definition: base.hh:599
BaseInterrupts * getInterruptController(ThreadID tid)
Definition: base.hh:222
uint32_t _taskId
An intrenal representation of a task identifier within gem5.
Definition: base.hh:137
Trace::InstTracer * tracer
Definition: base.hh:265
void unserialize(ThreadContext &tc, CheckpointIn &cp)
AddressMonitor()
Definition: base.cc:731
Addr currentFunctionEnd
Definition: base.hh:559
const Cycles pwrGatingLatency
Definition: base.hh:624
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
void setPid(uint32_t pid)
Definition: base.hh:208
uint64_t val
Definition: base.hh:79
void workItemBegin()
Definition: base.hh:210
const Params * params() const
Definition: base.hh:307
void postInterrupt(ThreadID tid, int int_num, int index)
Definition: base.hh:234
CPUState
Definition: base.hh:518
ProbePoints::PMUUPtr ppRetiredInsts
Instruction commit probe point.
Definition: base.hh:490
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
std::ostream * functionTraceStream
Definition: base.hh:557
const FlagsType init
This Stat is Initialized.
Definition: info.hh:45
MasterID instMasterId() const
Reads this CPU&#39;s unique instruction requestor ID.
Definition: base.hh:187
uint32_t getPid() const
Definition: base.hh:207
Stats::Scalar numWorkItemsStarted
Definition: base.hh:600
Addr currentFunctionStart
Definition: base.hh:558
bool _repeatEvent
Definition: base.hh:90

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13