gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
root.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Gabe Black
29  */
30 
41 #ifndef __SIM_ROOT_HH__
42 #define __SIM_ROOT_HH__
43 
44 #include "base/time.hh"
45 #include "params/Root.hh"
46 #include "sim/eventq.hh"
47 #include "sim/sim_object.hh"
48 
49 class Root : public SimObject
50 {
51  private:
52  static Root *_root;
53 
54  protected:
55  bool _enabled;
59 
61 
62  void timeSync();
64 
65  public:
74  static Root *
75  root()
76  {
77  assert(_root);
78  return _root;
79  }
80 
81  public:
82 
84  bool timeSyncEnabled() const { return _enabled; }
86  const Time timeSyncPeriod() const { return _period; }
88  const Time timeSyncSpinThreshold() const { return _spinThreshold; }
89 
91  void timeSyncEnable(bool en);
93  void timeSyncPeriod(Time newPeriod);
95  void timeSyncSpinThreshold(Time newThreshold);
96 
97  typedef RootParams Params;
98  const Params *
99  params() const
100  {
101  return dynamic_cast<const Params *>(_params);
102  }
103 
104  Root(Params *p);
105 
108  void startup() override;
109 
110  void serialize(CheckpointOut &cp) const override;
111 };
112 
113 #endif // __SIM_ROOT_HH__
void startup() override
Schedule the timesync event at startup().
Definition: root.cc:122
const Time timeSyncSpinThreshold() const
Retrieve the threshold for time remaining to spin wait.
Definition: root.hh:88
const Time timeSyncPeriod() const
Retrieve the period for the sync event.
Definition: root.hh:86
static Root * _root
Definition: root.hh:52
Time lastTime
Definition: root.hh:60
Definition: time.hh:48
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: root.cc:128
bool _enabled
Definition: root.hh:55
Definition: cprintf.cc:42
Bitfield< 30 > en
EventFunctionWrapper syncEvent
Definition: root.hh:63
uint64_t Tick
Tick count type.
Definition: types.hh:63
Root(Params *p)
Definition: root.cc:107
Time _period
Definition: root.hh:56
Tick _periodTick
Definition: root.hh:57
void timeSyncEnable(bool en)
Enable or disable time syncing.
Definition: root.cc:72
const Params * params() const
Definition: root.hh:99
std::ostream CheckpointOut
Definition: serialize.hh:68
Definition: root.hh:49
void timeSync()
Definition: root.cc:51
RootParams Params
Definition: root.hh:97
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
static Root * root()
Use this function to get a pointer to the single Root object in the simulation.
Definition: root.hh:75
Bitfield< 0 > p
Abstract superclass for simulation objects.
Definition: sim_object.hh:96
Time _spinThreshold
Definition: root.hh:58
bool timeSyncEnabled() const
Check whether time syncing is enabled.
Definition: root.hh:84

Generated on Fri Feb 28 2020 16:27:03 for gem5 by doxygen 1.8.13