gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
timer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 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 __CPU_KVM_TIMER_HH__
39 #define __CPU_KVM_TIMER_HH__
40 
41 #include <ctime>
42 
43 #include "cpu/kvm/perfevent.hh"
44 #include "sim/core.hh"
45 
61 {
62  public:
72  : signo(signo), _resolution(0),
73  hostFactor(hostFactor), hostFreq(hostFreq) {};
74  virtual ~BaseKvmTimer() {};
75 
88  virtual void arm(Tick ticks) = 0;
95  virtual void disarm() = 0;
96 
105  if (_resolution == 0)
107  return _resolution;
108  }
109 
117  Tick ticksFromHostCycles(uint64_t cycles) {
118  return cycles * hostFactor * hostFreq;
119  }
120 
128  Tick ticksFromHostNs(uint64_t ns) {
129  return ns * hostFactor * SimClock::Float::ns;
130  }
131 
132  protected:
139  virtual Tick calcResolution() = 0;
140 
146  uint64_t hostNs(Tick ticks) {
147  return ticks / (SimClock::Float::ns * hostFactor);
148  }
149 
156  uint64_t hostCycles(Tick ticks) {
157  return ticks / (hostFreq * hostFactor);
158  }
159 
161  int signo;
162 
163  private:
165  mutable Tick _resolution;
166 
168  float hostFactor;
171 };
172 
182 {
183  public:
190  PosixKvmTimer(int signo, clockid_t clockID,
191  float hostFactor, Tick hostFreq);
192  ~PosixKvmTimer();
193 
194  void arm(Tick ticks);
195  void disarm();
196 
197  protected:
199 
200  private:
201  clockid_t clockID;
202  timer_t timer;
203 };
204 
214 {
215  public:
231  int signo,
232  float hostFactor, Tick hostFreq);
233  ~PerfKvmTimer();
234 
235  void arm(Tick ticks);
236  void disarm();
237 
238  protected:
240 
241  private:
243 };
244 
245 #endif
PerfKvmCounter & hwOverflow
Definition: timer.hh:242
clockid_t clockID
Definition: timer.hh:201
virtual Tick calcResolution()=0
Calculate the timer resolution, used by resolution() which caches the result.
Tick hostFreq
Host frequency.
Definition: timer.hh:170
Tick resolution()
Determine the resolution of the timer in ticks.
Definition: timer.hh:104
double ns
nanosecond
Definition: core.cc:52
timer_t timer
Definition: timer.hh:202
uint64_t hostNs(Tick ticks)
Convert a time in simulator ticks to host nanoseconds.
Definition: timer.hh:146
float hostFactor
Performance scaling factor.
Definition: timer.hh:168
Bitfield< 0 > ns
Tick _resolution
Cached resolution.
Definition: timer.hh:165
uint64_t hostCycles(Tick ticks)
Convert a time in simulator ticks to host cycles.
Definition: timer.hh:156
uint64_t Tick
Tick count type.
Definition: types.hh:61
An instance of a performance counter.
Definition: perfevent.hh:168
Tick ticksFromHostCycles(uint64_t cycles)
Convert cycles executed on the host into Ticks executed in the simulator.
Definition: timer.hh:117
virtual void arm(Tick ticks)=0
Arm the timer so that it fires after a certain number of ticks.
Tick ticksFromHostNs(uint64_t ns)
Convert nanoseconds executed on the host into Ticks executed in the simulator.
Definition: timer.hh:128
virtual ~BaseKvmTimer()
Definition: timer.hh:74
Timer functions to interrupt VM execution after a number of simulation ticks.
Definition: timer.hh:60
virtual void disarm()=0
Disarm the timer.
BaseKvmTimer(int signo, float hostFactor, Tick hostFreq)
Setup basic timer functionality shared by all timer implementations.
Definition: timer.hh:71
Timer based on standard POSIX timers.
Definition: timer.hh:181
PerfEvent based timer using the host&#39;s CPU cycle counter.
Definition: timer.hh:213
int signo
Signal to deliver when the timer times out.
Definition: timer.hh:161

Generated on Thu May 28 2020 16:21:30 for gem5 by doxygen 1.8.13