gem5  v20.0.0.3
drain.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012, 2015, 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __SIM_DRAIN_HH__
39 #define __SIM_DRAIN_HH__
40 
41 #include <atomic>
42 #include <mutex>
43 #include <vector>
44 
45 class Drainable;
46 
71 enum class DrainState {
72  Running,
73  Draining,
74  Drained,
75  Resuming,
76 };
77 
95 {
96  private:
97  DrainManager();
98  DrainManager(DrainManager &) = delete;
99  ~DrainManager();
100 
101  public:
103  static DrainManager &instance() { return _instance; }
104 
121  bool tryDrain();
122 
128  void resume();
129 
143  void preCheckpointRestore();
144 
150  bool isDrained() const { return _state == DrainState::Drained; }
151 
157  DrainState state() const { return _state; }
158 
165  void signalDrainDone();
166 
167  public:
168  void registerDrainable(Drainable *obj);
169  void unregisterDrainable(Drainable *obj);
170 
171  private:
176  bool allInState(DrainState state) const;
177 
182  size_t drainableCount() const;
183 
185  mutable std::mutex globalLock;
186 
189 
195  std::atomic_uint _count;
196 
199 
202 };
203 
240 {
241  friend class DrainManager;
242 
243  protected:
244  Drainable();
245  virtual ~Drainable();
246 
270  virtual DrainState drain() = 0;
271 
277  virtual void drainResume() {};
278 
289  void signalDrainDone() const {
290  switch (_drainState) {
291  case DrainState::Running:
292  case DrainState::Drained:
294  return;
296  _drainState = DrainState::Drained;
297  _drainManager.signalDrainDone();
298  return;
299  }
300  }
301 
302  public:
308  DrainState drainState() const { return _drainState; }
309 
324  virtual void notifyFork() {};
325 
326  private:
328  DrainState dmDrain();
330  void dmDrainResume();
331 
334 
341 };
342 
343 #endif
virtual void drainResume()
Resume execution after a successful drain.
Definition: drain.hh:277
DrainManager & _drainManager
Convenience reference to the drain manager.
Definition: drain.hh:333
virtual void notifyFork()
Notify a child process of a fork.
Definition: drain.hh:324
DrainState
Object drain/handover states.
Definition: drain.hh:71
STL vector class.
Definition: stl.hh:37
DrainState drainState() const
Return the current drain state of an object.
Definition: drain.hh:308
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:239
DrainState state() const
Get the simulators global drain state.
Definition: drain.hh:157
Draining buffers pending serialization/handover.
std::atomic_uint _count
Number of objects still draining.
Definition: drain.hh:195
This class coordinates draining of a System.
Definition: drain.hh:94
std::vector< Drainable * > _allDrainable
Set of all drainable objects.
Definition: drain.hh:188
static DrainManager _instance
Singleton instance of the drain manager.
Definition: drain.hh:201
bool isDrained() const
Check if the system is drained.
Definition: drain.hh:150
std::mutex globalLock
Lock protecting the set of drainable objects.
Definition: drain.hh:185
static DrainManager & instance()
Get the singleton DrainManager instance.
Definition: drain.hh:103
Buffers drained, ready for serialization/handover.
void signalDrainDone() const
Signal that an object is drained.
Definition: drain.hh:289
DrainState _state
Global simulator drain state.
Definition: drain.hh:198
DrainState _drainState
Current drain state of the object.
Definition: drain.hh:340
Running normally.

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13