gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups 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  friend class EventWrapper<Root, &Root::timeSync>;
65 
66  public:
75  static Root *
76  root()
77  {
78  assert(_root);
79  return _root;
80  }
81 
82  public:
83 
85  bool timeSyncEnabled() const { return _enabled; }
87  const Time timeSyncPeriod() const { return _period; }
89  const Time timeSyncSpinThreshold() const { return _spinThreshold; }
90 
92  void timeSyncEnable(bool en);
94  void timeSyncPeriod(Time newPeriod);
96  void timeSyncSpinThreshold(Time newThreshold);
97 
98  typedef RootParams Params;
99  const Params *
100  params() const
101  {
102  return dynamic_cast<const Params *>(_params);
103  }
104 
105  Root(Params *p);
106 
109  void loadState(CheckpointIn &cp) override;
110 
113  void initState() override;
114 
115  void serialize(CheckpointOut &cp) const override;
116  void unserialize(CheckpointIn &cp) override;
117 };
118 
119 #endif // __SIM_ROOT_HH__
const Time timeSyncSpinThreshold() const
Retrieve the threshold for time remaining to spin wait.
Definition: root.hh:89
static Root * _root
Definition: root.hh:52
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: root.cc:142
Time lastTime
Definition: root.hh:60
Definition: time.hh:48
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: root.cc:134
EventWrapper< Root,&Root::timeSync > syncEvent
Definition: root.hh:63
bool _enabled
Definition: root.hh:55
Bitfield< 30 > en
Definition: miscregs.hh:1649
uint64_t Tick
Tick count type.
Definition: types.hh:63
Root(Params *p)
Definition: root.cc:107
const Params * params() const
Definition: root.hh:100
const Time timeSyncPeriod() const
Retrieve the period for the sync event.
Definition: root.hh:87
void loadState(CheckpointIn &cp) override
Schedule the timesync event at loadState() so that curTick is correct.
Definition: root.cc:127
Time _period
Definition: root.hh:56
bool timeSyncEnabled() const
Check whether time syncing is enabled.
Definition: root.hh:85
Tick _periodTick
Definition: root.hh:57
void timeSyncEnable(bool en)
Enable or disable time syncing.
Definition: root.cc:72
std::ostream CheckpointOut
Definition: serialize.hh:67
Definition: root.hh:49
void timeSync()
Definition: root.cc:51
RootParams Params
Definition: root.hh:98
void initState() override
Schedule the timesync event at initState() when not unserializing.
Definition: root.cc:121
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:107
static Root * root()
Use this function to get a pointer to the single Root object in the simulation.
Definition: root.hh:76
Bitfield< 0 > p
Abstract superclass for simulation objects.
Definition: sim_object.hh:94
Time _spinThreshold
Definition: root.hh:58

Generated on Fri Jun 9 2017 13:03:51 for gem5 by doxygen 1.8.6