gem5 v24.0.0.0
Loading...
Searching...
No Matches
time.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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
29#ifndef __BASE_TIME_HH__
30#define __BASE_TIME_HH__
31
32#include <sys/time.h>
33#include <inttypes.h>
34
35#include <cmath>
36#include <cstring>
37#include <ctime>
38#include <iosfwd>
39#include <iostream>
40#include <string>
41
42#include "base/types.hh"
43#include "sim/serialize.hh"
44
45namespace gem5
46{
47
48class Time
49{
50 protected:
51 timespec _time;
52
56 void _set(bool monotonic);
57
58 public:
59 static const long NSEC_PER_SEC = 1000 * 1000 * 1000;
60 static const long NSEC_PER_MSEC = 1000 * 1000;
61 static const long NSEC_PER_USEC = 1000;
62
63 public:
64 explicit Time() { clear(); }
65 explicit Time(double sec) { operator=(sec); }
66 Time(const Time &val) : _time(val._time) { }
67 Time(uint64_t sec, uint64_t nsec) { set(sec, nsec); }
68 Time(const timeval &tv) { operator=(tv); }
69 Time(const timespec &ts) { operator=(ts); }
70
74 time_t sec() const { return _time.tv_sec; }
75 long msec() const { return _time.tv_nsec / NSEC_PER_MSEC; }
76 long usec() const { return _time.tv_nsec / NSEC_PER_USEC; }
77 long nsec() const { return _time.tv_nsec; }
78
79 void sec(time_t sec) { _time.tv_sec = sec; }
80 void msec(long msec) { _time.tv_nsec = msec * NSEC_PER_MSEC; }
81 void usec(long usec) { _time.tv_nsec = usec * NSEC_PER_USEC; }
82 void nsec(long nsec) { _time.tv_nsec = nsec; }
83
87 void clear() { memset(&_time, 0, sizeof(_time)); }
88
93 void setTimer() { _set(true); }
94
98 void setWallclock() { _set(false); }
99
103 void set(time_t _sec, long _nsec) { sec(_sec); nsec(_nsec); }
104
109 void setTick(Tick ticks);
110
115 Tick getTick() const;
116
117 const Time &
118 operator=(const Time &other)
119 {
120 sec(other.sec());
121 nsec(other.nsec());
122 return *this;
123 }
124
125 const Time &
126 operator=(double new_time)
127 {
128 double seconds = floor(new_time);
129 sec((time_t)seconds);
130 nsec((long)((seconds - new_time) * 1e9));
131 return *this;
132 }
133
134 const Time &
135 operator=(const timeval &tv)
136 {
137 sec(tv.tv_sec);
138 nsec(tv.tv_usec * 1000);
139 return *this;
140 }
141
142 const Time &
143 operator=(const timespec &ts)
144 {
145 sec(ts.tv_sec);
146 nsec(ts.tv_nsec);
147 return *this;
148 }
149
153 operator double() const
154 {
155 return (double)sec() + ((double)nsec()) * 1e-9;
156 }
157
161 operator timespec() const { return _time; }
162 operator timeval() const
163 {
164 timeval tv;
165 tv.tv_sec = sec();
166 tv.tv_usec = usec();
167 return tv;
168 }
169
170 const Time &
171 operator+=(const Time &other)
172 {
173
174 _time.tv_sec += other.sec();
175 _time.tv_nsec += other.nsec();
176 if (_time.tv_nsec > NSEC_PER_SEC) {
177 _time.tv_sec++;
178 _time.tv_nsec -= NSEC_PER_SEC;
179 }
180
181 return *this;
182 }
183
184 const Time &
185 operator-=(const Time &other)
186 {
187 _time.tv_sec -= other.sec();
188 _time.tv_nsec -= other.nsec();
189 if (_time.tv_nsec < 0) {
190 _time.tv_sec--;
191 _time.tv_nsec += NSEC_PER_SEC;
192 }
193
194 return *this;
195 }
196
197 std::string date(const std::string &format = "") const;
198 std::string time() const;
199
200 void serialize(const std::string &base, CheckpointOut &cp) const;
201 void unserialize(const std::string &base, CheckpointIn &cp);
202};
203
204void sleep(const Time &time);
205
206inline bool
207operator==(const Time &l, const Time &r)
208{
209 return l.sec() == r.sec() && l.nsec() == r.nsec();
210}
211
212inline bool
213operator!=(const Time &l, const Time &r)
214{
215 return l.sec() != r.sec() || l.nsec() != r.nsec();
216}
217
218inline bool
219operator<(const Time &l, const Time &r)
220{
221 return (l.sec() < r.sec()) ||
222 (l.sec() == r.sec() && l.nsec() < r.nsec());
223}
224
225inline bool
226operator<=(const Time &l, const Time &r)
227{
228 return (l.sec() < r.sec()) ||
229 (l.sec() == r.sec() && l.nsec() <= r.nsec());
230}
231
232inline bool
233operator>(const Time &l, const Time &r)
234{
235 return (l.sec() > r.sec()) ||
236 (l.sec() == r.sec() && l.nsec() > r.nsec());
237}
238
239inline bool
240operator>=(const Time &l, const Time &r)
241{
242 return (l.sec() > r.sec()) ||
243 (l.sec() == r.sec() && l.nsec() >= r.nsec());
244}
245
246inline Time
247operator+(const Time &l, const Time &r)
248{
249 Time time(l);
250 time += r;
251 return time;
252}
253
254inline Time
255operator-(const Time &l, const Time &r)
256{
257 Time time(l);
258 time -= r;
259 return time;
260}
261
262inline std::ostream &
263operator<<(std::ostream &out, const Time &time)
264{
265 out << time.date();
266 return out;
267}
268
269time_t mkutctime(struct tm *time);
270
271} // namespace gem5
272
273#endif // __BASE_TIME_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
void set(time_t _sec, long _nsec)
Set the current time.
Definition time.hh:103
void sec(time_t sec)
Definition time.hh:79
static const long NSEC_PER_MSEC
Definition time.hh:60
const Time & operator=(double new_time)
Definition time.hh:126
Tick getTick() const
Get the current time from a value measured in Ticks.
Definition time.cc:66
void serialize(const std::string &base, CheckpointOut &cp) const
Definition time.cc:124
time_t sec() const
Accessors for getting and setting the current clock.
Definition time.hh:74
const Time & operator=(const timespec &ts)
Definition time.hh:143
void setTimer()
Use this to set time for the purposes of time measurement (use a monotonic clock if it is available.
Definition time.hh:93
void usec(long usec)
Definition time.hh:81
std::string date(const std::string &format="") const
Definition time.cc:73
Time(const timespec &ts)
Definition time.hh:69
timespec _time
Definition time.hh:51
static const long NSEC_PER_SEC
Definition time.hh:59
long usec() const
Definition time.hh:76
const Time & operator+=(const Time &other)
Definition time.hh:171
std::string time() const
Definition time.cc:94
Time(uint64_t sec, uint64_t nsec)
Definition time.hh:67
void msec(long msec)
Definition time.hh:80
long nsec() const
Definition time.hh:77
void unserialize(const std::string &base, CheckpointIn &cp)
Definition time.cc:131
void clear()
Clear the time.
Definition time.hh:87
void nsec(long nsec)
Definition time.hh:82
const Time & operator=(const timeval &tv)
Definition time.hh:135
void setWallclock()
Use this to set the time to the actual current time.
Definition time.hh:98
Time(const timeval &tv)
Definition time.hh:68
const Time & operator=(const Time &other)
Definition time.hh:118
void _set(bool monotonic)
Internal time set function.
Definition time.cc:45
static const long NSEC_PER_USEC
Definition time.hh:61
void setTick(Tick ticks)
Set the current time from a value measured in Ticks.
Definition time.cc:57
Time(double sec)
Definition time.hh:65
long msec() const
Definition time.hh:75
Time(const Time &val)
Definition time.hh:66
const Time & operator-=(const Time &other)
Definition time.hh:185
Bitfield< 9 > e
Definition misc_types.hh:65
Bitfield< 31, 29 > format
Bitfield< 12, 11 > set
Bitfield< 55, 52 > ts
Bitfield< 5 > l
Bitfield< 32 > tm
Definition misc.hh:112
Bitfield< 51, 12 > base
Definition pagetable.hh:141
Bitfield< 63 > val
Definition misc.hh:804
Temp operator+(Temp l, Temp r)
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
bool operator>(const Time &l, const Time &r)
Definition time.hh:233
static bool operator==(const PCStateBase &a, const PCStateBase &b)
Definition pcstate.hh:163
std::ostream CheckpointOut
Definition serialize.hh:66
time_t mkutctime(struct tm *time)
Definition time.cc:154
uint64_t Tick
Tick count type.
Definition types.hh:58
void sleep(const Time &time)
Definition time.cc:142
static std::ostream & operator<<(std::ostream &os, const DummyMatRegContainer &d)
Definition matrix.hh:564
static bool operator!=(const PCStateBase &a, const PCStateBase &b)
Definition pcstate.hh:169
bool operator>=(const Time &l, const Time &r)
Definition time.hh:240
bool operator<(const Time &l, const Time &r)
Definition time.hh:219
bool operator<=(const Time &l, const Time &r)
Definition time.hh:226
static AddrRangeList operator-(const AddrRange &range, const AddrRangeList &to_exclude)

Generated on Tue Jun 18 2024 16:24:06 for gem5 by doxygen 1.11.0