gem5  v22.1.0.0
sim_events.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 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) 2013 Advanced Micro Devices, Inc.
16  * Copyright (c) 2013 Mark D. Hill and David A. Wood
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions are
21  * met: redistributions of source code must retain the above copyright
22  * notice, this list of conditions and the following disclaimer;
23  * redistributions in binary form must reproduce the above copyright
24  * notice, this list of conditions and the following disclaimer in the
25  * documentation and/or other materials provided with the distribution;
26  * neither the name of the copyright holders nor the names of its
27  * contributors may be used to endorse or promote products derived from
28  * this software without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
33  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41  */
42 
43 #include "sim/sim_events.hh"
44 
45 #include <string>
46 
47 #include "base/callback.hh"
48 #include "sim/eventq.hh"
49 #include "sim/sim_exit.hh"
50 #include "sim/stats.hh"
51 
52 namespace gem5
53 {
54 
56  const std::string &_cause,
57  int c, Tick r)
58  : GlobalEvent(when, Sim_Exit_Pri, IsExitEvent),
59  cause(_cause), code(c), repeat(r)
60 {
61 }
62 
64  int c, Tick r)
65  : GlobalEvent(curTick(), Minimum_Pri, IsExitEvent),
66  cause(_cause), code(c), repeat(r)
67 {
68 }
69 
70 const char *
72 {
73  return "global simulation loop exit";
74 }
75 
76 //
77 // handle termination event
78 //
79 void
81 {
82  if (repeat) {
83  schedule(curTick() + repeat);
84  }
85 }
86 
87 void
88 exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat,
89  bool serialize)
90 {
91  warn_if(serialize && (when != curTick() || repeat),
92  "exitSimLoop called with a delay and auto serialization. This is "
93  "currently unsupported.");
94 
95  new GlobalSimLoopExitEvent(when + simQuantum, message, exit_code, repeat);
96 }
97 
98 void
99 exitSimLoopNow(const std::string &message, int exit_code, Tick repeat,
100  bool serialize)
101 {
102  new GlobalSimLoopExitEvent(message, exit_code, repeat);
103 }
104 
105 LocalSimLoopExitEvent::LocalSimLoopExitEvent(const std::string &_cause, int c,
106  Tick r)
107  : Event(Sim_Exit_Pri, IsExitEvent),
108  cause(_cause), code(c), repeat(r)
109 {
110 }
111 
112 //
113 // handle termination event
114 //
115 void
117 {
118  exitSimLoop(cause, 0);
119 }
120 
121 
122 const char *
124 {
125  return "simulation loop exit";
126 }
127 
128 void
130 {
131  Event::serialize(cp);
132 
136 }
137 
138 void
140 {
141  Event::unserialize(cp);
142 
146 }
147 
148 //
149 // constructor: automatically schedules at specified time
150 //
151 CountedExitEvent::CountedExitEvent(const std::string &_cause, int &counter)
152  : Event(Sim_Exit_Pri), cause(_cause), downCounter(counter)
153 {
154  // catch stupid mistakes
155  assert(downCounter > 0);
156 }
157 
158 
159 //
160 // handle termination event
161 //
162 void
164 {
165  if (--downCounter == 0) {
166  exitSimLoop(cause, 0);
167  }
168 }
169 
170 
171 const char *
173 {
174  return "counted exit";
175 }
176 
177 } // namespace gem5
void schedule(Tick when)
Definition: global_event.cc:56
CountedExitEvent(const std::string &_cause, int &_downCounter)
Definition: sim_events.cc:151
const char * description() const override
Return a C string describing the event.
Definition: sim_events.cc:172
void process() override
Definition: sim_events.cc:163
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: eventq.cc:248
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: eventq.cc:239
The main global event class.
virtual const char * description() const
Definition: sim_events.cc:71
GlobalSimLoopExitEvent(Tick when, const std::string &_cause, int c, Tick repeat=0)
Definition: sim_events.cc:55
const char * description() const override
Return a C string describing the event.
Definition: sim_events.cc:123
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: sim_events.cc:129
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: sim_events.cc:139
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Definition: logging.hh:273
Bitfield< 5 > r
Definition: pagetable.hh:60
Bitfield< 2 > c
Definition: pagetable.hh:63
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Tick simQuantum
Simulation Quantum for multiple eventq simulation.
Definition: eventq.cc:48
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
std::ostream CheckpointOut
Definition: serialize.hh:66
uint64_t Tick
Tick count type.
Definition: types.hh:58
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
Definition: sim_events.cc:88
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
void exitSimLoopNow(const std::string &message, int exit_code, Tick repeat, bool serialize)
Schedule an event as above, but make it high priority so it runs before any normal events which are s...
Definition: sim_events.cc:99
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:575
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:568

Generated on Wed Dec 21 2022 10:22:40 for gem5 by doxygen 1.9.1