gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
root.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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 Advanced Micro Devices, Inc.
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 #include "base/hostinfo.hh"
43 #include "base/logging.hh"
44 #include "base/trace.hh"
45 #include "config/the_isa.hh"
46 #include "debug/TimeSync.hh"
47 #include "sim/eventq.hh"
48 #include "sim/full_system.hh"
49 #include "sim/root.hh"
50 
51 Root *Root::_root = NULL;
54 
56  : Stats::Group(nullptr),
57  ADD_STAT(simSeconds, UNIT_SECOND, "Number of seconds simulated"),
58  ADD_STAT(simTicks, UNIT_TICK, "Number of ticks simulated"),
59  ADD_STAT(finalTick, UNIT_TICK,
60  "Number of ticks from beginning of simulation "
61  "(restored from checkpoints and never reset)"),
62  ADD_STAT(simFreq, UNIT_RATE(Stats::Units::Tick, Stats::Units::Second),
63  "The number of ticks per simulated second"),
64  ADD_STAT(hostSeconds, UNIT_SECOND, "Real time elapsed on the host"),
65  ADD_STAT(hostTickRate,
66  UNIT_RATE(Stats::Units::Tick, Stats::Units::Second),
67  "The number of ticks simulated per host second (ticks/s)"),
68  ADD_STAT(hostMemory, UNIT_BYTE, "Number of bytes of host memory used"),
69 
70  statTime(true),
71  startTick(0)
72 {
74  simTicks.functor([this]() { return curTick() - startTick; });
76 
80  ;
81 
83  .functor([this]() {
84  Time now;
85  now.setTimer();
86  return now - statTime;
87  })
88  .precision(2)
89  ;
90 
92 
95 }
96 
97 void
99 {
100  statTime.setTimer();
101  startTick = curTick();
102 
104 }
105 
106 /*
107  * This function is called periodically by an event in M5 and ensures that
108  * at least as much real time has passed between invocations as simulated time.
109  * If not, the function either sleeps, or if the difference is small enough
110  * spin waits.
111  */
112 void
114 {
115  Time cur_time, diff, period = timeSyncPeriod();
116 
117  do {
118  cur_time.setTimer();
119  diff = cur_time - lastTime;
120  Time remainder = period - diff;
121  if (diff < period && remainder > _spinThreshold) {
122  DPRINTF(TimeSync, "Sleeping to sync with real time.\n");
123  // Sleep until the end of the period, or until a signal.
124  sleep(remainder);
125  // Refresh the current time.
126  cur_time.setTimer();
127  }
128  } while (diff < period);
129  lastTime = cur_time;
131 }
132 
133 void
135 {
136  if (en == _enabled)
137  return;
138  _enabled = en;
139  if (_enabled) {
140  // Get event going.
141  Tick periods = ((curTick() + _periodTick - 1) / _periodTick);
142  Tick nextPeriod = periods * _periodTick;
143  schedule(&syncEvent, nextPeriod);
144  } else {
145  // Stop event.
147  }
148 }
149 
151 void
153 {
154  bool en = timeSyncEnabled();
155  _period = newPeriod;
158 }
159 
161 void
163 {
164  bool en = timeSyncEnabled();
165  _spinThreshold = newThreshold;
167 }
168 
169 Root::Root(const RootParams &p, int)
170  : SimObject(p), _enabled(false), _periodTick(p.time_sync_period),
171  syncEvent([this]{ timeSync(); }, name())
172 {
173  _period.setTick(p.time_sync_period);
174  _spinThreshold.setTick(p.time_sync_spin_threshold);
175 
176  assert(_root == NULL);
177  _root = this;
178  lastTime.setTimer();
179 
180  simQuantum = p.sim_quantum;
181 
182  // Some of the statistics are global and need to be accessed by
183  // stat formulas. The most convenient way to implement that is by
184  // having a single global stat group for global stats. Merge that
185  // group into the root object here.
186  mergeStatGroup(&Root::RootStats::instance);
187 }
188 
189 void
191 {
192  timeSyncEnable(params().time_sync_enable);
193 }
194 
195 void
197 {
199  std::string isa = THE_ISA_STR;
200  SERIALIZE_SCALAR(isa);
201 }
202 
203 
205 unsigned int FullSystemInt;
206 
207 Root *
208 RootParams::create() const
209 {
210  static bool created = false;
211  if (created)
212  panic("only one root object allowed!");
213 
214  created = true;
215 
216  FullSystem = full_system;
217  FullSystemInt = full_system ? 1 : 0;
218 
219  return new Root(*this, 0);
220 }
Root::Root
Root(const Params &p, int)
Definition: root.cc:169
Stats::ValueBase::scalar
Derived & scalar(T &value)
Definition: statistics.hh:713
UNIT_BYTE
#define UNIT_BYTE
Definition: units.hh:43
Root::RootStats::simSeconds
Stats::Formula simSeconds
Definition: root.hh:98
Root::_period
Time _period
Definition: root.hh:68
UNIT_TICK
#define UNIT_TICK
Definition: units.hh:40
Root::timeSync
void timeSync()
Definition: root.cc:113
Root::timeSyncEnable
void timeSyncEnable(bool en)
Enable or disable time syncing.
Definition: root.cc:134
Stats::ValueBase::functor
Derived & functor(const T &func)
Definition: statistics.hh:722
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
simFreq
Stats::Value & simFreq
Definition: stats.cc:44
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
simTicks
Stats::Value & simTicks
Definition: stats.cc:43
Root::RootStats::hostMemory
Stats::Value hostMemory
Definition: root.hh:105
sc_dt::remainder
return remainder
Definition: scfx_rep.cc:2201
Root::_periodTick
Tick _periodTick
Definition: root.hh:69
Root
Definition: root.hh:61
root.hh
SimClock::Frequency
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:43
Stats::Group::resetStats
virtual void resetStats()
Callback to reset stats.
Definition: group.cc:81
Root::_root
static Root * _root
Definition: root.hh:64
Root::_spinThreshold
Time _spinThreshold
Definition: root.hh:70
Root::RootStats::hostTickRate
Stats::Formula hostTickRate
Definition: root.hh:104
cp
Definition: cprintf.cc:37
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
UNIT_SECOND
#define UNIT_SECOND
Definition: units.hh:41
Root::RootStats::RootStats
RootStats()
Definition: root.cc:55
Stats::DataWrap::prereq
Derived & prereq(const Stat &prereq)
Set the prerequisite stat and marks this stat to print at the end of simulation.
Definition: statistics.hh:353
Root::timeSyncEnabled
bool timeSyncEnabled() const
Check whether time syncing is enabled.
Definition: root.hh:122
Root::timeSyncPeriod
const Time timeSyncPeriod() const
Retrieve the period for the sync event.
Definition: root.hh:124
sleep
void sleep(const Time &time)
Definition: time.cc:139
Root::RootStats
Definition: root.hh:94
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
Root::startup
void startup() override
Schedule the timesync event at startup().
Definition: root.cc:190
Root::timeSyncSpinThreshold
const Time timeSyncSpinThreshold() const
Retrieve the threshold for time remaining to spin wait.
Definition: root.hh:126
hostinfo.hh
Root::RootStats::hostSeconds
Stats::Value hostSeconds
Definition: root.hh:102
hostSeconds
Stats::Value & hostSeconds
Definition: stats.cc:45
ArmISA::en
Bitfield< 30 > en
Definition: miscregs_types.hh:455
FullSystemInt
unsigned int FullSystemInt
In addition to the boolean flag we make use of an unsigned int since the CPU instruction decoder make...
Definition: root.cc:205
simSeconds
Stats::Formula & simSeconds
Definition: stats.cc:42
name
const std::string & name()
Definition: trace.cc:48
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
Time::getTick
Tick getTick() const
Get the current time from a value measured in Ticks.
Definition: time.cc:63
rootStats
Root::RootStats & rootStats
Global simulator statistics that are not associated with a specific SimObject.
Definition: root.cc:53
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
Root::RootStats::simFreq
Stats::Value simFreq
Definition: root.hh:101
full_system.hh
Root::RootStats::resetStats
void resetStats() override
Callback to reset stats.
Definition: root.cc:98
UNIT_RATE
#define UNIT_RATE(T1, T2)
Definition: units.hh:47
Root::syncEvent
EventFunctionWrapper syncEvent
Definition: root.hh:75
Time::setTimer
void setTimer()
Use this to set time for the purposes of time measurement (use a monotonic clock if it is available.
Definition: time.hh:90
Root::RootStats::startTick
Tick startTick
Definition: root.hh:116
Stats::DataWrap::precision
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
Definition: statistics.hh:327
Time
Definition: time.hh:45
Root::_enabled
bool _enabled
Definition: root.hh:67
Root::lastTime
Time lastTime
Definition: root.hh:72
logging.hh
simQuantum
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
Definition: eventq.cc:46
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
Root::RootStats::instance
static RootStats instance
Definition: root.hh:107
Stats
Definition: statistics.cc:53
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
trace.hh
memUsage
uint64_t memUsage()
Determine the simulator process' total virtual memory usage.
Definition: hostinfo.cc:73
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Root::RootStats::finalTick
Stats::Value finalTick
Definition: root.hh:100
Root::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: root.cc:196
Root::RootStats::simTicks
Stats::Value simTicks
Definition: root.hh:99
Root::RootStats::statTime
Time statTime
Definition: root.hh:115
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
eventq.hh
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

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